/* ===== STUDENT LIFE / LIFE @ BRD PAGE ===== */

/* --- Page Banner --- */
.page-banner {
	position: relative;
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	padding: 120px 0 60px;
	color: #fff;
	overflow: hidden;
}

.page-banner::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(244, 197, 66, 0.12) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}

.page-banner::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 350px;
	height: 350px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.06) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}

.banner-content {
	position: relative;
	z-index: 2;
}

.banner-content h1 {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	margin: 12px 0 16px;
	line-height: 1.15;
}

.banner-tagline {
	font-size: clamp(16px, 2.2vw, 22px);
	font-weight: 300;
	opacity: 0.9;
	max-width: 650px;
	line-height: 1.5;
}

/* --- Breadcrumb --- */
.breadcrumb-list {
	gap: 8px;
	flex-wrap: wrap;
	font-size: 14px;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumb-list li + li::before {
	content: "/";
	opacity: 0.5;
}

.breadcrumb-list li a {
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s;
}

.breadcrumb-list li a:hover {
	color: var(--color-cta-bg);
}

.breadcrumb-list li.active span {
	color: #fff;
	font-weight: 500;
}

/* --- Intro --- */
.sl-intro .sub-heading-content {
	max-width: 800px;
	margin: 0 auto;
}

/* --- Section Header --- */
.sl-section-header {
	max-width: 820px;
}

.sl-section-tag {
	display: inline-block;
	background: rgba(139, 46, 43, 0.1);
	color: var(--color-primary-bg);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 18px;
	border-radius: 50px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.sl-section-title {
	font-size: clamp(26px, 3.5vw, 38px);
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 16px;
	line-height: 1.2;
}

.sl-section-desc {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	max-width: 780px;
}

/* --- Card Grid (Culture / Technical) --- */
.sl-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.sl-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
	border: 1px solid #eee;
}

.sl-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(139, 46, 43, 0.12);
}

.sl-card-img {
	position: relative;
	overflow: hidden;
	height: 220px;
	background: #f0f0f0;
}

.sl-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.sl-card:hover .sl-card-img img {
	transform: scale(1.06);
}

.sl-card-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--color-primary-bg);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 50px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(139, 46, 43, 0.3);
}

.sl-card-body {
	padding: 24px;
}

.sl-card-body h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
	line-height: 1.3;
}

.sl-card-body p {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}

/* --- Activity Grid (Art of Unwinding) --- */
.sl-activity-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.sl-activity-card {
	background: #fff;
	border-radius: 14px;
	padding: 30px 24px;
	text-align: center;
	border: 1px solid #eee;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.sl-activity-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(139, 46, 43, 0.1);
}

.sl-activity-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(139, 46, 43, 0.08);
	color: var(--color-primary-bg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.sl-activity-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
}

.sl-activity-card p {
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

/* --- Split Block (Sports / Beyond) --- */
.sl-split-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.sl-split-reverse {
	direction: rtl;
}

.sl-split-reverse > * {
	direction: ltr;
}

.sl-split-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-top: 12px;
}

.sl-split-image {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(139, 46, 43, 0.12);
}

.sl-split-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 360px;
	transition: transform 0.5s ease;
}

.sl-split-image:hover img {
	transform: scale(1.03);
}

/* --- Student Spotlight (Champions & Creators) --- */
.sl-boxing-wrap {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 14px 45px rgba(93, 25, 23, 0.2);
	background: #fff;
	border: 1px solid #f0e6e5;
	margin-top: 25px;
}

.sl-boxing-row {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: stretch;
}

.sl-boxing-row + .sl-boxing-row {
	border-top: 1px solid #f0e6e5;
}

.sl-boxing-row--image-left .sl-boxing-image {
	order: 1;
}

.sl-boxing-row--image-left .sl-boxing-content {
	order: 2;
}

.sl-boxing-content {
	padding: clamp(28px, 4vw, 48px);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--color-primary-bg);
}

.sl-boxing-row--featured .sl-boxing-content {
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	color: #fff;
}

.sl-boxing-row:nth-child(3) .sl-boxing-content {
	background: var(--color-primary-bg);
}

.sl-section-tag--light {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.sl-boxing-content .sl-section-tag {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.sl-boxing-content h3 {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.25;
	margin-top: 8px;
	color: #fff;
}

.sl-boxing-row--featured .sl-boxing-content h3 {
	color: #fff;
}

.sl-boxing-content p {
	margin-top: 12px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}

.sl-boxing-row--featured .sl-boxing-content p {
	color: rgba(255, 255, 255, 0.9);
}

.sl-boxing-highlights {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sl-boxing-highlights span {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.sl-boxing-row--featured .sl-boxing-highlights span {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.sl-boxing-image {
	overflow: hidden;
}

.sl-boxing-image img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	display: block;
}

/* Feature list */
.sl-feature-list {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sl-feature-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 500;
	color: #333;
}

.sl-feature-icon {
	flex-shrink: 0;
	color: var(--color-primary-bg);
	display: inline-flex;
}

/* --- Clubs Grid --- */
.sl-clubs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.sl-club-card {
	background: #fff;
	border-radius: 14px;
	padding: 32px 24px;
	text-align: center;
	border: 1px solid #eee;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.sl-club-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--color-primary-bg),
		var(--color-cta-bg)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sl-club-card:hover::before {
	opacity: 1;
}

.sl-club-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(139, 46, 43, 0.1);
}

.sl-club-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(139, 46, 43, 0.08),
		rgba(244, 197, 66, 0.08)
	);
	color: var(--color-primary-bg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.sl-club-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
}

.sl-club-card p {
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

/* --- Campus Features Grid --- */
.sl-campus-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.sl-campus-feature {
	background: linear-gradient(135deg, var(--color-primary-bg), #5c1a18);
	border-radius: 14px;
	padding: 30px 24px;
	text-align: center;
	color: #fff;
	transition: transform 0.3s ease;
}

.sl-campus-feature:hover {
	transform: translateY(-4px);
}

.sl-campus-feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: var(--color-cta-bg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.sl-campus-feature h4 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
}

.sl-campus-feature p {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.85;
}

/* --- Beyond Highlights (Stats) --- */
.sl-beyond-highlights {
	display: flex;
	gap: 24px;
	margin-top: 30px;
}

.sl-beyond-stat {
	background: rgba(139, 46, 43, 0.06);
	border-radius: 12px;
	padding: 20px 24px;
	text-align: center;
	flex: 1;
	border: 1px solid rgba(139, 46, 43, 0.1);
}

.sl-beyond-stat strong {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: var(--color-primary-bg);
	line-height: 1.2;
}

.sl-beyond-stat span {
	font-size: 13px;
	color: #666;
	font-weight: 500;
	margin-top: 4px;
	display: block;
}

/* --- CTA Section --- */
.overview-cta {
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	padding: 60px 0;
}

.cta-content {
	gap: 30px;
}

.cta-text h2 {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
}

.cta-text p {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
	gap: 16px;
	flex-shrink: 0;
}

.overview-cta .cta-btn.apply {
	padding: 14px 36px;
	font-size: 16px;
	border-radius: 10px;
	display: inline-block;
}

.cta-btn-outline {
	display: inline-block;
	padding: 14px 36px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cta-btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
}

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

@media (max-width: 1024px) {
	.sl-clubs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sl-split-block {
		gap: 40px;
	}

	.sl-boxing-row {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 992px) {
	.sl-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sl-split-block {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.sl-split-reverse {
		direction: ltr;
	}

	.sl-campus-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.sl-beyond-highlights {
		flex-wrap: wrap;
	}

	.sl-beyond-stat {
		flex: 1 1 calc(50% - 12px);
	}

	.sl-boxing-row {
		grid-template-columns: 1fr;
	}

	.sl-boxing-row .sl-boxing-image {
		order: 1;
	}

	.sl-boxing-row .sl-boxing-content {
		order: 2;
	}

	.sl-boxing-image img {
		min-height: 320px;
	}
}

@media (max-width: 768px) {
	.page-banner {
		padding: 100px 0 40px;
	}

	.overview-cta .cta-content {
		flex-direction: column;
		text-align: center;
	}

	.overview-cta .cta-actions {
		justify-content: center;
	}

	.sl-card-grid {
		grid-template-columns: 1fr;
	}

	.sl-activity-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sl-clubs-grid {
		grid-template-columns: 1fr;
	}

	.sl-card-img {
		height: 200px;
	}

	.sl-split-image img {
		min-height: 260px;
	}

	.sl-boxing-content {
		padding: 28px 22px;
	}

	.sl-boxing-highlights span {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.page-banner {
		padding: 90px 0 32px;
	}

	.sl-activity-grid {
		grid-template-columns: 1fr;
	}

	.sl-campus-features {
		grid-template-columns: 1fr;
	}

	.sl-beyond-highlights {
		flex-direction: column;
	}

	.sl-beyond-stat {
		flex: 1 1 100%;
	}

	.sl-section-title {
		font-size: 24px;
	}

	.sl-section-desc {
		font-size: 15px;
	}
}
