:root {
	--crs-surface: #f3e3c1;
	--crs-card: #f8eed8;
	--crs-text: #1f1f1f;
	--crs-accent: #b77a3a;
	--crs-name: #b06a2c;
}

.crs-slider {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.36), transparent 42%),
		linear-gradient(180deg, #f7ead0 0%, #efddbe 100%);
	color: var(--crs-text);
	padding-left: 18px;
	padding-right: 18px;
}

.crs-slider-inner {
	position: relative;
	margin: 0 auto;
	width: 100%;
}

.crs-heading-wrap {
	text-align: center;
	margin-bottom: 26px;
}

.crs-heading {
	margin: 0;
	font-family: 'Trebuchet MS', 'Gill Sans', 'Segoe UI', sans-serif;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.05;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: #121212;
}

.crs-subheading {
	margin: 10px auto 0;
	max-width: 780px;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.78;
}

.crs-track {
	position: relative;
	min-height: 220px;
}

.crs-slide {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.crs-slide.active {
	position: relative;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.crs-card {
	position: relative;
	width: min(100%, 980px);
	padding: clamp(26px, 4vw, 46px) clamp(20px, 4vw, 58px);
	border-radius: 18px;
	background: rgba(255, 251, 242, 0.66);
	border: 1px solid rgba(136, 96, 41, 0.12);
	box-shadow: 0 20px 55px rgba(102, 72, 32, 0.1);
	text-align: center;
	backdrop-filter: blur(4px);
}

.crs-card::before {
	content: '';
	position: absolute;
	inset: 12px;
	border-radius: 14px;
	border: 1px solid rgba(183, 122, 58, 0.14);
	pointer-events: none;
}

.crs-quote-mark {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(46px, 7vw, 76px);
	line-height: 0.75;
	margin-bottom: 8px;
}

.crs-quote-text {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.62;
	max-width: 860px;
	margin: 0 auto;
}

.crs-quote-text p {
	margin: 0;
}

.crs-quote-text p + p {
	margin-top: 10px;
}

.crs-author {
	margin-top: 22px;
}

.crs-name {
	font-family: 'Trebuchet MS', 'Gill Sans', 'Segoe UI', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.crs-meta {
	font-family: 'Trebuchet MS', 'Gill Sans', 'Segoe UI', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	opacity: 0.95;
}

.crs-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 248, 236, 0.92);
	color: #392719;
	font-size: 28px;
	line-height: 1;
	box-shadow: 0 12px 24px rgba(77, 54, 24, 0.14);
	cursor: pointer;
	z-index: 3;
	transition: transform 0.2s ease, background 0.2s ease;
}

.crs-nav:hover {
	background: #ffffff;
	transform: translateY(-50%) scale(1.04);
}

.crs-prev {
	left: 0;
}

.crs-next {
	right: 0;
}

.crs-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 22px;
}

.crs-dot {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(124, 88, 41, 0.28);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.crs-dot.active,
.crs-dot:hover {
	background: var(--crs-accent);
	transform: scale(1.15);
}

@media (max-width: 768px) {
	.crs-slider {
		padding-left: 14px;
		padding-right: 14px;
	}

	.crs-heading-wrap {
		margin-bottom: 18px;
	}

	.crs-card {
		padding: 24px 18px 30px;
		border-radius: 16px;
	}

	.crs-nav {
		width: 38px;
		height: 38px;
		font-size: 24px;
	}

	.crs-meta {
		font-size: 14px;
	}
}

@media (max-width: 520px) {
	.crs-heading {
		font-size: 28px;
	}

	.crs-quote-text {
		font-size: 15px;
		line-height: 1.58;
	}

	.crs-name {
		font-size: 12px;
	}

	.crs-nav {
		display: none;
	}
}
