@charset "utf-8";

.catalog-category-head {
	font-size: 14px;
	line-height: 24px;
}

.catalog-category-head-image {
	position: relative;
	overflow: hidden;
	margin-bottom: max(24px, 1.5rem);
	height: 200px;
}

@media only screen and (min-width: 1024px) {
	.catalog-category-head-image {
		height: 288px;
	}
}

.catalog-category-head-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.catalog-category-head .link-more {
	margin-top: 12px;
}

@media only screen and (min-width: 1024px) {
	.catalog-category {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}


	.catalog-category.head-to-left .catalog-category-head {
		grid-column: 1/3;
	}

	.catalog-category.head-to-right .catalog-category-head {
		grid-area: 1/3/2/5;
	}

	.catalog-category .slider-catalog {
		display: contents;
		margin-top: 0 !important;
	}

	.catalog-category .slider-catalog .swiper-wrapper {
		display: contents;
	}

	.catalog-category.head-to-right .slider-catalog .swiper-wrapper>*:nth-child(1) {
		grid-area: 1/1/2/2;
	}

	.catalog-category.head-to-right .slider-catalog .swiper-wrapper>*:nth-child(2) {
		grid-area: 1/2/2/3;
	}

}