root{
	--gray: #1e1e1e;
	--orange: #df4e19;
	--light-orange: #fff4ee;
	--lighter-orange: #ffe3d8;
}

.intramurals-hero {
	position: relative;
	width: 100%;
	min-height: 430px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 12px;
	margin-top: 8px;
}

.intramurals-hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(120deg, rgba(15, 15, 15, 0.82), rgba(26, 26, 26, 0.58)),
		url('../../src/pics/intrams-hero.jpg');
	background-size: cover;
	background-position: center;
}

.intramurals-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 760px;
	padding: 48px 20px;
}

.hero-eyebrow {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 14px;
	display: block;
}

.hero-title {
	font-size: clamp(1.5rem, 3.4vw, 2rem);
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	line-height: 1.05;
	margin-bottom: 14px;
}

.hero-subtitle {
	font-size: 0.86rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.84);
	max-width: 620px;
	margin: 0 auto 26px;
}

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 800;
	border-radius: 4px;
	padding: 12px 22px;
	transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}

.btn-primary {
	color: #ffffff;
	background: var(--orange);
	border: 1px solid var(--orange);
}

.btn-primary:hover {
	filter: brightness(0.9);
	transform: translateY(-1px);
}

.btn-secondary {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-1px);
}

.intramurals-overview {
	margin-top: 52px;
	margin-bottom: 20px;
}

.section-header {
	text-align: center;
	margin-bottom: 34px;
}

.section-eyebrow {
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--orange);
	display: block;
	margin-bottom: 8px;
}

.section-title {
	font-size: clamp(1.5rem, 3.4vw, 2rem);
	font-weight: 900;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--gray);
}

.preview-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.preview-card {
	background: #ffffff;
	border: 1px solid #e9e9e9;
	border-radius: 10px;
	padding: 22px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	min-height: 325px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.preview-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 9px 24px rgba(0, 0, 0, 0.09);
}

.preview-card-head {
	margin-bottom: 14px;
}

.preview-tag {
	display: inline-flex;
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 6px;
}

.preview-title {
	font-size: 1.08rem;
	font-weight: 800;
	color: var(--gray);
	margin-bottom: 6px;
}

.preview-description {
	color: #666666;
	font-size: 0.8rem;
	line-height: 1.55;
}

.preview-body {
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	padding: 12px 0;
	margin-bottom: 16px;
	min-height: 136px;
}

.preview-loading,
.preview-empty,
.preview-error {
	font-size: 0.78rem;
	color: #787878;
	line-height: 1.6;
}

.preview-error {
	color: #b33a1b;
}

.preview-list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px dashed #ededed;
}

.preview-list-item:last-child {
	border-bottom: none;
}

.preview-main-text {
	font-size: 0.8rem;
	color: #262626;
	font-weight: 600;
	line-height: 1.4;
}

.preview-sub-text {
	font-size: 0.72rem;
	color: #7b7b7b;
	line-height: 1.4;
}

.preview-metric {
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--orange);
	background: var(--light-orange);
	border: 1px solid var(--lighter-orange);
	border-radius: 999px;
	padding: 4px 9px;
	white-space: nowrap;
}

.preview-pill-list {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 8px;
}

.preview-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: 999px;
	border: 1px solid #e5e5e5;
	background: #fafafa;
	padding: 6px 11px;
	font-size: 0.72rem;
	font-weight: 700;
	color: #3f3f3f;
}

.preview-pill::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
}

.feature-link {
	margin-top: auto;
	width: fit-content;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gray);
	border-bottom: 2px solid var(--orange);
	padding-bottom: 2px;
}

.feature-link:hover {
	color: var(--orange);
}

.feature-link::after {
	content: " ->";
}

@media (max-width: 1080px) {
	.preview-grid {
		grid-template-columns: 1fr;
	}

	.preview-card {
		min-height: 280px;
	}
}

@media (max-width: 680px) {
	.intramurals-hero {
		min-height: 360px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		max-width: 280px;
	}

	.preview-card {
		padding: 18px;
	}
}
