/* CAROUSEL */
.carousel {
	position: relative;
	width: 100%;
	height: 350px;
	overflow: hidden;
	background: #cbd5e1;
}

.carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.6s ease;
}

.carousel-track img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	flex-shrink: 0;
}

/* Navigation buttons */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	color: white;
	border: none;
	font-size: 2rem;
	padding: 0.25rem 0.75rem;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.carousel-btn:hover {
	background: rgba(0, 0, 0, 0.65);
}

.carousel-btn.prev {
	left: 1rem;
}

.carousel-btn.next {
	right: 1rem;
}

/* TEXT SLIDE */
.carousel-slide {
	width: 100%;
	height: 100%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
}

.text-slide {
	background: #f1f5f9; /* light gray */
	color: #000;
}

.text-slide h2 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
}

.text-slide p {
	font-size: 1.25rem;
	max-width: 800px;
}