/* =============================================
   Press Carousel
   Palette: black bg · white text · yellow (#e5b829) accents
   ============================================= */

.press-carousel {
	position: relative;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	padding: 40px 0 32px;
	overflow: hidden;
}

/* Track */
.press-carousel-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide */
.press-carousel-slide {
	min-width: 100%;
	padding: 0 48px;
	box-sizing: border-box;
}

/* Quote */
.press-carousel-quote {
	margin: 0;
	text-align: center;
}

.press-carousel-quote p {
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	line-height: 1.7;
	color: #fff;
	font-style: italic;
	margin: 0 0 18px;
}

/* Attribution */
.press-carousel-attr {
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #e5b829;
}

.press-carousel-attr a {
	color: #e5b829;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}

.press-carousel-attr a:hover {
	border-color: #e5b829;
}

/* Controls row */
.press-carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 28px;
}

/* Prev / Next buttons */
.press-carousel-btn {
	background: none;
	border: 1px solid #e5b829;
	color: #e5b829;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
	padding: 0;
	flex-shrink: 0;
}

.press-carousel-btn:hover,
.press-carousel-btn:focus-visible {
	background: #e5b829;
	color: #000;
	outline: none;
}

/* Dot indicators */
.press-carousel-dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.press-carousel-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #444;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.25s ease, transform 0.25s ease;
}

.press-carousel-dot.is-active {
	background: #e5b829;
	transform: scale(1.4);
}

.press-carousel-dot:focus-visible {
	outline: 2px solid #e5b829;
	outline-offset: 2px;
}

/* Pause auto-advance when user is interacting */
.press-carousel:hover .press-carousel-track,
.press-carousel:focus-within .press-carousel-track {
	/* JS handles pause; this is just a visual hint hook */
}

@media (max-width: 600px) {
	.press-carousel-slide {
		padding: 0 24px;
	}
}
