body {

	background-color: #F0EEE9;
}
.news-carousel.swiper .swiper-slide {
    padding-bottom: var(--news-gap);
	padding-top: var(--news-gap);
    margin-right: 5px;
}
.scrolling-collage__text-wrapper{
    padding-left: 5px;
	padding-right: 5px;
}
.category-top-layout__center .layout-top-element {
    text-align: left;
}
.information-list__card-body{
	padding: 5px;
	
}

.vertical-orientation.product_badges {
	align-items: flex-start;
	left: 0;
}



@media (min-width: 992px) {
    .category-description {
        max-width: 1140px;
    }
}


/* ===================================================
   RÓLUNK OLDAL
=================================================== */

#about-page {
    width: 100%;
}

/* Általános */

#about-page .content-section {
    width: 100%;
    /*padding: 60px 20px;*/
	padding: 0;
    box-sizing: border-box;
}

#about-page .content-wrapper {
    max-width: 1200px;
    margin: 50px auto;
	vertical-align:top;
}

#about-page img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

#about-page .text {
    /*padding: 20px;*/
	padding: 0;
    box-sizing: border-box;
}

#about-page .text h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

#about-page .text p {
    margin: 0;
    line-height: 1.7;
}


/* ===================================================
   TELJES SZÉLESSÉG
=================================================== */

#about-page .full-width .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* ===================================================
   KÉT HASÁB (6-6)
=================================================== */

#about-page .two-column .content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}


/* Kép jobb */

#about-page .image-right .text {
    order: 1;
}

#about-page .image-right .image {
    order: 2;
}


/* Kép bal */

#about-page .image-left .image {
    order: 1;
}

#about-page .image-left .text {
    order: 2;
}


/* ===================================================
   MOBIL
=================================================== */

@media (max-width: 991px) {

    #about-page .two-column .content-wrapper {
        display: flex;
        flex-direction: column;
		gap: 10px;
    }

    /* Minden esetben a kép legyen felül */

    #about-page .two-column .image {
        order: 1;
        width: 100%;
    }

    #about-page .two-column .text {
        order: 2;
        width: 100%;
        padding: 10px 0 35px 0;
    }

}