/* =========================
   SHOWCASE SECTION
========================= */

.showcase {
	padding: 48px 0 24px;
}

.showcase-header {
	margin-bottom: 24px;
	max-width: 720px;
}

.showcase-header h2 {
	margin: 6px 0 8px;
	font-size: 28px;
}

.showcase-header .lede {
	margin: 0;
	color: var(--muted);
}


/* =========================
   SLIDESHOW CONTAINER
========================= */

.slideshow {
	position: relative;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(8, 18, 7, 0.92);
	backdrop-filter: blur(8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
	overflow: hidden;
}


/* =========================
   SLIDES WRAPPER
========================= */

.slides {
	position: relative;
	width: 100%;
	height: 420px;
}


/* =========================
   SINGLE SLIDE
========================= */

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.45s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide.active {
	opacity: 1;
	z-index: 1;
}


/* =========================
   IMAGE STYLING
========================= */

.slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.25);
}


/* =========================
   NAVIGATION BUTTONS
========================= */

.slide-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid var(--line);
	background: rgba(11, 20, 10, 0.86);
	color: var(--text);
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s ease;
	z-index: 2;
}

.slide-btn:hover {
	background: rgba(17, 32, 14, 0.94);
}

.slide-btn.prev {
	left: 10px;
}

.slide-btn.next {
	right: 10px;
}


/* =========================
   DOT INDICATORS
========================= */

.slide-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 14px 0 16px;
}

.slide-dots .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: 0.2s ease;
}

.slide-dots .dot.active {
	background: var(--accent);
	box-shadow: 0 0 8px rgba(217, 239, 82, 0.6);
}


/* =========================
   EMPTY STATE
========================= */

.slide-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 320px;
	color: var(--muted);
	font-size: 18px;
	text-align: center;
	padding: 20px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
	.slides {
		height: 320px;
	}
}

@media (max-width: 640px) {
	.slides {
		height: 260px;
	}

	.slide-btn {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
}
