

/* Start:/local/templates/iko4v_v2/components/bitrix/catalog.section.list/cards/style.css?17541660901478*/
.gallery-sections {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* grid-template-columns: repeat(auto-fit, minmax(40%, 603px)); */
	gap: 30px;
}

.section-card {
	display: flex;
	flex-direction: column;
	background: white;
	height: 100%;
	border-radius: var(--r1);
	border: 1px solid var(--gray-20);
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
	position: relative;
}

.section-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.section-image {
	display: flex;
	height: 280px;
	width: 100%;
}

.section-image img {
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.photo-count {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(44, 62, 80, 0.85);
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.section-content {
	padding: 20px;
}

.section-title {
	margin-bottom: 10px;
}

.section-title h2 {
	font-size: 20px;
}

.section-description {
	color: #7f8c8d;
	line-height: 1.6;
	font-size: 16px;
}

.divider {
	height: 3px;
	width: 60px;
	background: var(--green);
	margin: 15px 0;
	border-radius: 2px;
}

@media (max-width: 1024px) {
	.section-image {
		height: 230px;
	}
}

@media (max-width: 768px) {
	.gallery-sections {
		grid-template-columns: 1fr;
	}

	.section-image {
		height: auto;
	}
}

@media (max-width: 480px) {
	.section-image {
		height: 180px;
	}
}
/* End */
/* /local/templates/iko4v_v2/components/bitrix/catalog.section.list/cards/style.css?17541660901478 */
