.curated-section {
	padding: 0 3.2rem;
	width: 100%;
	background: transparent;
}

.curated-cards-area {
	position: relative;
	max-width: 100%;
}

.curated-cards-wrapper { position: relative; }
.curated-cards-track { overflow: hidden; }
.curated-cards-slides {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.curated-cards-page {
	min-width: 100%;
	display: grid;
	grid-template-columns: repeat(var(--lt-curated-cols, 3), 1fr);
	gap: 3rem;
}
.curated-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.curated-card-img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
	transform-origin: center center;
}
.curated-card:hover .curated-card-img {
	transform: scale(1.08);
}
.curated-card-body { padding: 16px 0 0; }
.curated-card-title {
	font-size: 24px;
	font-weight: 300;
	color: #333333;
	line-height: 1.3;
	margin-bottom: 0px !important;
}
.curated-card-location { font-size: 14px; color: #1a6fc4; font-weight: 300; }

/* ── Nav arrows ── */
.curated-section .curated-nav {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	background: none !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	cursor: pointer;
	padding: 8px;
	color: #bbbbbb;
	transition: color 0.2s;
	line-height: 1;
	z-index: 2;
}
.curated-section .curated-nav:hover,
.curated-section .curated-nav:focus,
.curated-section .curated-nav:active {
	background: none !important;
	background-color: transparent !important;
	color: #333333;
}
.curated-section .curated-nav svg {
	width: 28px;
	height: 28px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.curated-section .curated-nav.prev { left: -48px; }
.curated-section .curated-nav.next { right: -48px; }

.curated-progress {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 4px;
	margin-top: 28px;
}
.curated-progress-bar {
	width: calc((100% - 64px) / 4);
	min-width: 80px;
	height: 3px;
	background: #cccccc;
	cursor: pointer;
	transition: background 0.2s;
}
.curated-progress-bar.active { background: #004AAC; }

@media (max-width: 1200px) {
	.curated-cards-page { gap: 1.5rem}
	.curated-card-title { font-size: 20px; }
	.curated-progress-bar {
		width: calc((100% - 24px) / 4);
	}
}

@media (max-width: 900px) {
	.curated-cards-page { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
	.curated-cards-page { grid-template-columns: 1fr; }
}
