/**
 * Legacy School of Sport Sciences Custom Styles
 * 
 * Brand Colors:
 * Maroon Primary: #670A10 (Pantone 188 C)
 * Maroon Secondary: #70001A (Pantone 185 C)
 * Primary Orange: #FF9F21 (Pantone 282 C)
 * Secondary Orange: #D05027 (Pantone 165 C)
 * Ash Blue: #4C4B60 (Pantone 535)
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
	--legacy-maroon-primary: #670A10;
	--legacy-maroon-secondary: #70001A;
	--legacy-orange-primary: #FF9F21;
	--legacy-orange-secondary: #D05027;
	--legacy-ash-blue: #4C4B60;
	--legacy-light-ash: #F5F5F7;
}

body {
	font-family: 'Archivo Black', sans-serif;
	color: var(--legacy-ash-blue);
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Archivo Black', sans-serif;
	font-weight: 900;
	color: var(--legacy-maroon-primary);
}

.hero-title,
.section-title-large {
	font-family: 'Versina', Georgia, 'Times New Roman', serif;
	font-weight: 700;
}

.btn-primary {
	background-color: var(--legacy-maroon-primary);
	border-color: var(--legacy-maroon-primary);
	color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--legacy-maroon-secondary);
	border-color: var(--legacy-maroon-secondary);
}

.btn-secondary {
	background-color: var(--legacy-ash-blue);
	border-color: var(--legacy-ash-blue);
	color: #ffffff;
}

.btn-secondary:hover,
.btn-secondary:focus {
	background-color: #3a3949;
	border-color: #3a3949;
}

.btn-outline-primary {
	--bs-btn-color: var(--legacy-maroon-primary);
	--bs-btn-border-color: var(--legacy-maroon-primary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--legacy-maroon-primary);
	--bs-btn-hover-border-color: var(--legacy-maroon-primary);
	--bs-btn-focus-shadow-rgb: 103, 10, 16;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--legacy-maroon-primary);
	--bs-btn-active-border-color: var(--legacy-maroon-primary);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--legacy-maroon-primary);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--legacy-maroon-primary);
	--bs-gradient: none;
}

.btn-cta,
.btn-orange {
	background: linear-gradient(135deg, var(--legacy-orange-primary) 0%, #ffa612 100%);
	border: none;
	color: #ffffff;
	font-family: 'Archivo Black', sans-serif;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.5px;
	padding: 12px 30px;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(255, 159, 33, 0.3);
}

.btn-cta::before,
.btn-orange::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before,
.btn-orange:hover::before {
	width: 300px;
	height: 300px;
}

.btn-cta:hover,
.btn-orange:hover {
	background: linear-gradient(135deg, #ffa612 0%, var(--legacy-orange-secondary) 100%);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(255, 159, 33, 0.5);
}

.bg-maroon-primary {
	background-color: var(--legacy-maroon-primary);
	color: #ffffff;
}

.bg-maroon-secondary {
	background-color: var(--legacy-maroon-secondary);
	color: #ffffff;
}

.bg-orange {
	background-color: var(--legacy-orange-primary);
	color: #ffffff;
}

.bg-ash-blue {
	background-color: var(--legacy-ash-blue);
	color: #ffffff;
}

.bg-light-ash {
	background-color: var(--legacy-light-ash);
}

.text-maroon {
	color: var(--legacy-maroon-primary) !important;
}

.text-orange {
	color: var(--legacy-orange-primary) !important;
}

#wrapper-navbar {
	transition: all 0.3s ease;
}

#wrapper-navbar.sticky-top {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.navbar {
	padding: 1rem 0;
}

.navbar-brand img {
	max-height: 60px;
	width: auto;
}

.navbar-nav .nav-link-wrapper {
	display: flex;
	align-items: center;
	gap: 0;
}

.navbar-nav .nav-link {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.5px;
	color: var(--legacy-ash-blue);
	padding: 0.5rem 0.75rem;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--legacy-maroon-primary);
}

.navbar-nav .nav-link.active {
	color: var(--legacy-maroon-primary);
}

.navbar-nav .dropdown-toggle-btn {
	background: none;
	border: none;
	color: var(--legacy-ash-blue);
	padding: 0.5rem 0.75rem 0.5rem 0;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 12px;
	display: flex;
	align-items: center;
}

.navbar-nav .dropdown-toggle-btn:hover {
	color: var(--legacy-maroon-primary);
}


.navbar-nav .dropdown-toggle-btn i {
	transition: transform 0.3s ease;
}

.navbar-nav .nav-item.show .dropdown-toggle-btn i {
	transform: rotate(180deg);
}

.dropdown-menu {
	border: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	padding: 0.5rem 0;
	display: none;
	margin-top: 0;
}

.dropdown-menu.show {
	display: block;
}

/* Desktop: ensure no gap between top-level item and dropdown so hover works */
@media (min-width: 768px) {
	.navbar-nav .nav-item.dropdown {
		position: relative;
	}
	.navbar-nav .nav-item.dropdown > .dropdown-menu {
		margin-top: 0;
	}
	/* Invisible bridge to prevent hover flicker between nav item and dropdown */
	.navbar-nav .nav-item.dropdown > .dropdown-menu::before {
		content: '';
		position: absolute;
		top: -8px;
		left: 0;
		right: 0;
		height: 8px;
		background: transparent;
	}
}

.dropdown-item {
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	padding: 0.5rem 1.5rem;
	color: var(--legacy-ash-blue);
	transition: all 0.2s ease;
}

.dropdown-item:hover {
	background-color: var(--legacy-light-ash);
	color: var(--legacy-maroon-primary);
	padding-left: 2rem;
}

.navbar .btn-cta {
	padding: 8px 20px;
	font-size: 13px;
	margin-left: 1rem;
}

.legacy-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Quick Links Bar */
.quick-links-bar {
	background: linear-gradient(135deg, #2a2a35 0%, #1f1f28 100%);
	padding: 0;
	border-bottom: 3px solid var(--legacy-maroon-primary);
	position: relative;
	overflow: hidden;
}

.quick-links-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(90deg, rgba(255, 159, 33, 0.03) 1px, transparent 1px),
		linear-gradient(rgba(255, 159, 33, 0.03) 1px, transparent 1px);
	background-size: 30px 30px;
	opacity: 0.3;
	pointer-events: none;
}

.quick-links-grid {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.quick-link-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	text-decoration: none;
	color: #ffffff;
	text-align: center;
	transition: all 0.3s ease;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	min-height: 100px;
	flex: 1 1 11.11%;
}

.quick-link-item:last-child {
	border-right: none;
}

.quick-link-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(135deg, var(--legacy-maroon-primary) 0%, var(--legacy-orange-primary) 100%);
	transition: height 0.3s ease;
	z-index: 0;
}

.quick-link-item:hover::before {
	height: 100%;
}

.quick-link-item i {
	font-size: 28px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.quick-link-item span {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.3;
	font-family: 'Roboto', sans-serif;
	position: relative;
	z-index: 1;
}

.quick-link-item:hover {
	background: transparent;
}

.quick-link-item:hover i {
	transform: translateY(-3px) scale(1.1);
	color: #ffffff;
}

.quick-link-item:hover span {
	color: #ffffff;
}

.value-pillars {
	padding: 100px 0;
	background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
	position: relative;
	overflow: hidden;
}

.value-pillars::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(103, 10, 16, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 159, 33, 0.04) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.value-pillars > .container {
	position: relative;
	z-index: 1;
}

.value-pillars-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 70px;
}

.value-pillars-header .section-title {
	font-size: 48px;
	font-weight: 900;
	color: var(--legacy-maroon-primary);
	margin-bottom: 15px;
	line-height: 1.2;
}

.value-pillars-header .section-subtitle {
	font-size: 18px;
	color: var(--legacy-ash-blue);
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
}

.value-pillars-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.value-pillar-card {
	background: #ffffff;
	border: 1px solid rgba(103, 10, 16, 0.12);
	border-radius: 12px;
	padding: 50px 35px 45px;
	text-align: center;
	position: relative;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(76, 75, 96, 0.08);
	backdrop-filter: blur(10px);
}

.value-pillar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(103, 10, 16, 0.02) 0%, transparent 100%);
	border-radius: 12px;
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 0;
}

.value-pillar-card:hover::before {
	opacity: 1;
}

.value-pillar-card.pillar-row-bottom {
	grid-column: span 1;
}

.value-pillars-grid .value-pillar-card:nth-child(4) {
	grid-column: 1 / 3;
	justify-self: center;
}

.value-pillars-grid .value-pillar-card:nth-child(5) {
	grid-column: 2 / 4;
	justify-self: center;
}

.value-pillar-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(103, 10, 16, 0.18);
	border-color: var(--legacy-maroon-primary);
}

.pillar-icon-container {
	width: 110px;
	height: 110px;
	background: linear-gradient(135deg, var(--legacy-maroon-primary) 0%, var(--legacy-maroon-secondary) 100%);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -75px auto 30px;
	font-size: 48px;
	box-shadow: 0 8px 20px rgba(103, 10, 16, 0.25), 0 0 0 8px rgba(103, 10, 16, 0.08);
	position: relative;
	transition: all 0.35s ease;
	z-index: 2;
}

.pillar-icon-container::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	background: linear-gradient(135deg, var(--legacy-orange-primary), var(--legacy-maroon-primary));
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: -1;
}

.value-pillar-card:hover .pillar-icon-container::before {
	opacity: 1;
	animation: pulse-ring 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.8;
	}
}

.value-pillar-card:hover .pillar-icon-container {
	background: var(--legacy-maroon-secondary);
	transform: scale(1.08);
	box-shadow: 0 12px 28px rgba(103, 10, 16, 0.35);
}

.pillar-content {
	position: relative;
}

.pillar-title {
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 18px;
	color: var(--legacy-maroon-primary);
	line-height: 1.3;
	letter-spacing: -0.3px;
}

.pillar-description {
	font-size: 15px;
	line-height: 1.75;
	color: var(--legacy-ash-blue);
	margin: 0;
	font-weight: 400;
}

.stats-section {
	background:#fff;
	color: #000;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}



.stats-section > .container {
	position: relative;
	z-index: 1;
}

.stat-item {
	text-align: center;
	position: relative;
	padding: 20px;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 159, 33, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stat-item:hover::before {
	opacity: 1;
}

.stat-number {
	font-size: 72px;
	font-weight: 900;
	color: var(--legacy-orange-primary);
	line-height: 1;
	margin-bottom: 10px;
	font-family: 'Archivo Black', sans-serif;
	position: relative;
	display: inline-block; 
}


@keyframes stat-glow {
	0%, 100% {
		text-shadow: 0 4px 12px rgba(255, 159, 33, 0.3);
	}
	50% {
		text-shadow: 0 4px 20px rgba(255, 159, 33, 0.6), 0 0 30px rgba(255, 159, 33, 0.4);
	}
}

.stat-label {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.career-paths-section {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--legacy-light-ash) 0%, #f0f0f2 100%);
	position: relative;
	overflow: hidden;
}

.career-paths-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(90deg, rgba(103, 10, 16, 0.02) 1px, transparent 1px),
		linear-gradient(rgba(103, 10, 16, 0.02) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.4;
	pointer-events: none;
}

.career-paths-section > .container {
	position: relative;
	z-index: 1;
}

.career-paths-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.career-paths-header .section-title {
	font-size: 48px;
	font-weight: 900;
	color: var(--legacy-maroon-primary);
	margin-bottom: 15px;
	line-height: 1.2;
}

.career-paths-header .section-subtitle {
	font-size: 18px;
	color: var(--legacy-ash-blue);
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
}

.section-title {
	font-size: 42px;
	font-weight: 900;
	color: var(--legacy-maroon-primary);
	margin-bottom: 50px;
	text-align: center;
	font-family: 'Archivo Black', sans-serif;
}

.career-paths-scroll-container {
	overflow-x: auto;
	padding: 20px 0 30px;
	margin: 0 -15px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--legacy-maroon-primary) var(--legacy-light-ash);
}

.career-paths-scroll-container::-webkit-scrollbar {
	height: 8px;
}

.career-paths-scroll-container::-webkit-scrollbar-track {
	background: rgba(103, 10, 16, 0.08);
	border-radius: 10px;
}

.career-paths-scroll-container::-webkit-scrollbar-thumb {
	background: var(--legacy-maroon-primary);
	border-radius: 10px;
}

.career-paths-grid {
	display: flex;
	gap: 25px;
	padding: 0 15px;
	min-width: max-content;
}

.career-path-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 45px 35px 40px;
	text-align: center;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(103, 10, 16, 0.1);
	box-shadow: 0 4px 16px rgba(76, 75, 96, 0.08);
	min-width: 220px;
	max-width: 220px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	overflow: hidden;
}

.career-path-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 159, 33, 0.1), transparent);
	transition: left 0.5s ease;
}

.career-path-card:hover::after {
	left: 100%;
}

.career-path-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 16px 40px rgba(103, 10, 16, 0.2);
	border-color: var(--legacy-maroon-primary);
}

.career-icon-container {
	width: 100px;
	height: 100px;
	background: var(--legacy-maroon-primary);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 44px;
	transition: all 0.35s ease;
	box-shadow: 0 6px 18px rgba(103, 10, 16, 0.25);
	position: relative;
}

.career-path-card:hover .career-icon-container {
	background: var(--legacy-orange-primary);
	transform: rotate(-5deg) scale(1.1);
	box-shadow: 0 10px 28px rgba(255, 159, 33, 0.35);
}

.career-icon-container i {
	transition: transform 0.35s ease;
}

.career-path-card:hover .career-icon-container i {
	transform: scale(1.05);
}

.career-title {
	font-size: 17px;
	font-weight: 900;
	color: var(--legacy-maroon-primary);
	margin: 0;
	line-height: 1.4;
	letter-spacing: -0.2px;
	transition: color 0.3s ease;
}

.career-path-card:hover .career-title {
	color: var(--legacy-maroon-secondary);
}

.campus-experience-section {
	position: relative;
	min-height: 600px;
	padding: 120px 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.campus-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(103, 10, 16, 0.45) 0%, rgba(76, 75, 96, 0.45) 100%);
	z-index: 1;
}

.campus-experience-section .container {
	position: relative;
	z-index: 2;
}

.campus-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	color: #ffffff;
}

.campus-content .section-title {
	font-size: 56px;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 30px;
	line-height: 1.2;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.campus-content .campus-description {
	font-size: 20px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 400;
	margin-bottom: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.campus-content .campus-description p {
	margin-bottom: 0;
}

.campus-content .btn-cta {
	box-shadow: 0 6px 20px rgba(255, 159, 33, 0.4);
	font-size: 16px;
	padding: 14px 40px;
}

@media (max-width: 768px) {
	.campus-experience-section {
		min-height: 500px;
		padding: 80px 0;
		background-attachment: scroll;
	}
	
	.campus-content .section-title {
		font-size: 36px;
		margin-bottom: 20px;
	}
	
	.campus-content .campus-description {
		font-size: 16px;
	}
}

.athletics-spotlight-section {
	padding: 80px 0 0;
	background: #ffffff;
	overflow: hidden;
}

.athletics-header-wrapper {
	padding-bottom: 60px;
}

.athletics-text-center {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.athletics-label {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 20px;
}

.athletics-heading {
	font-size: 52px;
	font-weight: 900;
	line-height: 1.1;
	color: #1a1a1a;
	margin-bottom: 20px;
	font-family: 'Archivo Black', sans-serif;
}

.athletics-subtitle {
	font-size: 18px;
	line-height: 1.6;
	color: var(--legacy-ash-blue);
	margin: 0;
}

.athletics-marquee-container {
	width: 100%;
	padding-bottom: 80px;
}

.athletics-marquee-row {
	overflow: hidden;
	margin-bottom: 20px;
}

.athletics-marquee-row:last-child {
	margin-bottom: 0;
}

.athletics-marquee-track {
	display: flex;
	gap: 20px;
	will-change: transform;
}

.athletics-marquee-track[data-direction="right"] {
	animation: marquee-right 40s linear infinite;
}

.athletics-marquee-track[data-direction="left"] {
	animation: marquee-left 40s linear infinite;
}

.athletics-marquee-track:hover {
	animation-play-state: paused;
}

@keyframes marquee-right {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes marquee-left {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

.athletics-marquee-item {
	flex-shrink: 0;
	width: 280px;
}

.athletics-marquee-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 16px;
	display: block;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.athletics-marquee-item img:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
	.athletics-heading {
		font-size: 42px;
	}
	
	.athletics-marquee-item {
		width: 240px;
	}
	
	.athletics-marquee-item img {
		height: 180px;
	}
}

@media (max-width: 768px) {
	.athletics-heading {
		font-size: 32px;
	}
	
	.athletics-marquee-item {
		width: 200px;
	}
	
	.athletics-marquee-item img {
		height: 150px;
	}
	
	.athletics-marquee-track[data-direction="right"],
	.athletics-marquee-track[data-direction="left"] {
		animation-duration: 30s;
	}
}

.testimonials-section {
	padding: 60px 0 80px;
	overflow: hidden;
	position: relative;
	background: #d4a5a5;
	border-radius: 150px 0px 0 0;
}

.testimonial-carousel {
	position: relative;
	width: 100%;
}

.testimonial-slide {
	display: none;
	position: relative;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
}

.testimonial-slide.active {
	display: block;
	opacity: 1;
}

.testimonial-image-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
	position: relative;
}

.testimonial-image-container::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 420px;
	height: 420px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	z-index: 0;
}

.testimonial-image {
	width: 350px;
	height: 350px;
	border-radius: 50%;
	object-fit: cover;
	border: 15px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	position: relative;
	z-index: 1;
}

.testimonial-content-container {
	display: flex;
	align-items: center;
	padding: 40px 20px;
	background: transparent;
}

.testimonial-content {
	max-width: 650px;
}

.testimonial-label {
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 18px;
	font-family: 'Roboto', sans-serif;
}

.testimonial-heading {
	font-size: 44px;
	font-weight: 900;
	line-height: 1.15;
	color: #2a2a2a;
	margin-bottom: 32px;
	font-family: 'Archivo Black', sans-serif;
}

.testimonial-quote-text {
	font-size: 15px;
	line-height: 1.75;
	color: #3a3a3a;
	margin-bottom: 38px;
	font-weight: 400;
}

.testimonial-divider {
	width: 100%;
	max-width: 500px;
	height: 1px;
	background: rgba(103, 10, 16, 0.25);
	margin-bottom: 25px;
}

.testimonial-author {
	font-size: 14px;
	color: #2a2a2a;
	font-weight: 400;
}

.testimonial-author strong {
	font-weight: 900;
	color: var(--legacy-maroon-primary);
}

.testimonial-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(103, 10, 16, 0.4);
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.testimonial-dot:hover {
	background: rgba(103, 10, 16, 0.6);
	transform: scale(1.2);
}

.testimonial-dot.active {
	background: var(--legacy-maroon-primary);
	border-color: var(--legacy-maroon-primary);
}

@media (max-width: 1400px) {
	.testimonial-image {
		width: 320px;
		height: 320px;
	}
	
	.testimonial-image-container::before {
		width: 390px;
		height: 390px;
	}
}

@media (max-width: 1200px) {
	.testimonials-section {
		border-radius: 120px 0 0 0;
		padding: 50px 0 70px;
	}
	
	.testimonial-image {
		width: 280px;
		height: 280px;
	}
	
	.testimonial-image-container::before {
		width: 350px;
		height: 350px;
	}
	
	.testimonial-heading {
		font-size: 38px;
	}
}

@media (max-width: 991px) {
	.testimonials-section {
		border-radius: 100px 0 0 0;
		padding: 40px 0 60px;
	}
	
	.testimonial-image-container {
		padding: 20px 0 30px;
	}
	
	.testimonial-image-container::before {
		width: 300px;
		height: 300px;
	}
	
	.testimonial-image {
		width: 240px;
		height: 240px;
		border-width: 12px;
	}
	
	.testimonial-content-container {
		padding: 20px 15px;
		text-align: center;
	}
	
	.testimonial-content {
		margin: 0 auto;
	}
	
	.testimonial-heading {
		font-size: 32px;
	}
	
	.testimonial-divider {
		margin-left: auto;
		margin-right: auto;
	}
	
	.testimonial-dots {
		bottom: 25px;
	}
}

@media (max-width: 768px) {
	.testimonials-section {
		margin-top: 60px;
	}
	
	.testimonial-slide {
		border-radius: 80px 80px 0 0;
		padding-top: 30px;
	}
	
	.testimonial-image-container {
		padding: 30px 20px 20px;
	}
	
	.testimonial-image {
		width: 220px;
		height: 220px;
		border-width: 10px;
	}
	
	.testimonial-image-container::before {
		width: 280px;
		height: 280px;
	}
	
	.testimonial-content-container {
		padding: 25px 30px 70px;
	}
	
	.testimonial-label {
		font-size: 11px;
	}
	
	.testimonial-heading {
		font-size: 26px;
		margin-bottom: 24px;
	}
	
	.testimonial-quote-text {
		font-size: 14px;
		margin-bottom: 30px;
	}
	
	.testimonial-author {
		font-size: 13px;
	}
	
	.testimonial-dots {
		bottom: 20px;
		gap: 10px;
	}
	
	.testimonial-dot {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 576px) {
	.testimonials-section {
		margin-top: 40px;
	}
	
	.testimonial-slide {
		border-radius: 60px 60px 0 0;
		padding-top: 20px;
	}
	
	.testimonial-image-container {
		padding: 20px 15px 15px;
	}
	
	.testimonial-image {
		width: 180px;
		height: 180px;
		border-width: 8px;
	}
	
	.testimonial-image-container::before {
		width: 230px;
		height: 230px;
	}
	
	.testimonial-content-container {
		padding: 20px 20px 60px;
	}
	
	.testimonial-label {
		font-size: 10px;
		margin-bottom: 12px;
	}
	
	.testimonial-heading {
		font-size: 22px;
		margin-bottom: 20px;
		line-height: 1.2;
	}
	
	.testimonial-quote-text {
		font-size: 13px;
		line-height: 1.6;
		margin-bottom: 24px;
	}
	
	.testimonial-divider {
		margin-bottom: 20px;
		max-width: 300px;
	}
	
	.testimonial-author {
		font-size: 12px;
	}
	
	.testimonial-dots {
		bottom: 15px;
		gap: 8px;
	}
	
	.testimonial-dot {
		width: 8px;
		height: 8px;
		border-width: 1.5px;
	}
}

@media (max-width: 400px) {
	.testimonial-slide {
		border-radius: 50px 50px 0 0;
	}
	
	.testimonial-image {
		width: 150px;
		height: 150px;
		border-width: 6px;
	}
	
	.testimonial-image-container::before {
		width: 200px;
		height: 200px;
	}
	
	.testimonial-content-container {
		padding: 15px 15px 55px;
	}
	
	.testimonial-heading {
		font-size: 20px;
	}
	
	.testimonial-quote-text {
		font-size: 12px;
	}
}

.events-section {
	padding: 80px 0;
	background: var(--legacy-light-ash);
}

.event-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	position: relative;
	border: 1px solid transparent;
}

.event-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--legacy-maroon-primary), var(--legacy-orange-primary));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	z-index: 10;
}

.event-card:hover::before {
	transform: scaleX(1);
}

.event-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(103, 10, 16, 0.2);
	border-color: rgba(103, 10, 16, 0.1);
}

.event-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.event-card:hover img {
	transform: scale(1.08);
}

.event-card-body {
	padding: 25px;
}

.event-date {
	font-size: 13px;
	color: var(--legacy-orange-primary);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.event-card h3 {
	font-size: 18px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 10px;
}

.event-card p {
	font-size: 14px;
	color: var(--legacy-ash-blue);
	line-height: 1.6;
}

.primary-cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--legacy-maroon-primary) 0%, var(--legacy-maroon-secondary) 100%);
	color: #ffffff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.primary-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(45deg, transparent 30%, rgba(255, 159, 33, 0.1) 50%, transparent 70%);
	background-size: 200% 200%;
	animation: shimmer 8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes shimmer {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.primary-cta-section > .container {
	position: relative;
	z-index: 1;
}

.primary-cta-section h2 {
	font-size: 48px;
	color: #ffffff;
	margin-bottom: 20px;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

.primary-cta-section p {
	font-size: 20px;
	margin-bottom: 30px;
	opacity: 0.95;
}

.site-footer {
	background-color: #1a1a1a;
	color: #ffffff;
	padding: 60px 0 30px;
}

.footer-column h4 {
	font-size: 16px;
	color: var(--legacy-orange-primary);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 900;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #cccccc;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color: var(--legacy-orange-primary);
	padding-left: 5px;
}

.footer-social {
	margin-top: 25px;
}

.footer-social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: var(--legacy-ash-blue);
	color: #ffffff;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease;
	font-size: 18px;
}

.footer-social a:hover {
	background: var(--legacy-orange-primary);
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid #333;
	margin-top: 40px;
	padding-top: 20px;
	text-align: center;
	font-size: 13px;
	color: #999;
}

@media (max-width: 991px) {
	.navbar-nav .nav-link {
		padding: 0.75rem 1rem;
	}

	.navbar .btn-cta {
		margin-left: 0;
		margin-top: 1rem;
		display: block;
		text-align: center;
	}

	.section-title {
		font-size: 32px;
	}

	.stat-number {
		font-size: 56px;
	}

	.campus-content {
		flex-direction: column;
	}

	.footer-column {
		margin-bottom: 30px;
	}

	.value-pillars {
		padding: 60px 0;
	}

	.value-pillars-header .section-title {
		font-size: 36px;
	}

	.value-pillars-header .section-subtitle {
		font-size: 16px;
	}

	.value-pillars-grid {
		grid-template-columns: 1fr;
		gap: 60px 0;
		padding: 0 15px;
	}

	.value-pillars-grid .value-pillar-card:nth-child(4),
	.value-pillars-grid .value-pillar-card:nth-child(5) {
		margin-left: 0;
		margin-right: 0;
		grid-column: auto;
	}

	.pillar-icon-container {
		width: 100px;
		height: 100px;
		font-size: 42px;
		margin: -65px auto 25px;
	}

	.pillar-title {
		font-size: 22px;
	}

	.pillar-description {
		font-size: 14px;
	}

	.career-paths-section {
		padding: 60px 0;
	}

	.career-paths-header .section-title {
		font-size: 36px;
	}

	.career-paths-header .section-subtitle {
		font-size: 16px;
	}

	.career-paths-grid {
		flex-direction: column;
		padding: 0;
	}

	.career-path-card {
		min-width: 100%;
		max-width: 100%;
		padding: 40px 30px 35px;
	}

	.career-icon-container {
		width: 90px;
		height: 90px;
		font-size: 38px;
	}

	.career-title {
		font-size: 16px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.value-pillars-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 25px;
	}

	.value-pillars-grid .value-pillar-card:nth-child(4) {
		grid-column: 1 / 2;
		margin-left: 0;
	}

	.value-pillars-grid .value-pillar-card:nth-child(5) {
		grid-column: 2 / 3;
		margin-right: 0;
	}

	.career-paths-grid {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.career-path-card {
		min-width: 200px;
		max-width: 200px;
	}
}

#main-nav {
	background-color: #ffffff;
	border-bottom: 3px solid var(--legacy-maroon-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 0.5rem 0;
}

#main-nav .navbar-brand img {
	max-height: 60px;
	transition: all 0.3s ease;
}

#main-nav.sticky-header {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.navbar-nav .nav-link {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--legacy-ash-blue);
	padding: 0.75rem 1rem;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
	color: var(--legacy-maroon-primary);
}

.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-item.current-menu-item > .nav-link {
	color: var(--legacy-maroon-primary);
	position: relative;
}

.navbar-nav .nav-item.active > .nav-link::after,
.navbar-nav .nav-item.current-menu-item > .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 1rem;
	right: 1rem;
	height: 3px;
	background-color: var(--legacy-orange-primary);
}

.offcanvas-fullwidth {
	width: 100% !important;
	max-width: 100%;
}

.offcanvas-header {
	padding: 1.5rem 1.5rem;
	border-bottom: 2px solid var(--legacy-maroon-primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
}

.offcanvas-logo img {
	max-height: 50px;
	width: auto;
}

.offcanvas-logo .site-name {
	font-family: 'Archivo Black', sans-serif;
	font-size: 18px;
	font-weight: 900;
	color: var(--legacy-maroon-primary);
	letter-spacing: 0.5px;
}

.mobile-menu-accordion {
	padding: 0;
	background-color: #ffffff;
}

.mobile-nav-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav-menu .nav-item {
	border-bottom: 2px solid var(--legacy-light-ash);
}

.mobile-nav-menu .nav-item:last-child {
	border-bottom: none;
}

.mobile-nav-menu .nav-link-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	cursor: pointer;
	position: relative;
	min-height: 60px;
	transition: background-color 0.2s ease;
}

.mobile-nav-menu .nav-link-wrapper:active {
	background-color: var(--legacy-light-ash);
}

.mobile-nav-menu .nav-link {
	flex: 1;
	padding: 1.25rem 1.5rem;
	color: var(--legacy-ash-blue);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.mobile-nav-menu .nav-item:hover > .nav-link-wrapper > .nav-link,
.mobile-nav-menu .nav-item.submenu-open > .nav-link-wrapper > .nav-link {
	color: var(--legacy-maroon-primary);
}

.mobile-nav-menu .nav-item.current-menu-item > .nav-link-wrapper > .nav-link {
	color: var(--legacy-maroon-primary);
	font-weight: 900;
}

.mobile-nav-menu .submenu-toggle {
	background: none;
	border: none;
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 60px;
	position: relative;
}

.mobile-nav-menu .submenu-toggle .toggle-icon {
	width: 24px;
	height: 24px;
	position: relative;
	display: block;
}

.mobile-nav-menu .submenu-toggle .toggle-icon::before,
.mobile-nav-menu .submenu-toggle .toggle-icon::after {
	content: '';
	position: absolute;
	background-color: var(--legacy-ash-blue);
	transition: all 0.3s ease;
	border-radius: 2px;
}

.mobile-nav-menu .submenu-toggle .toggle-icon::before {
	width: 24px;
	height: 3px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.mobile-nav-menu .submenu-toggle .toggle-icon::after {
	width: 3px;
	height: 24px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.mobile-nav-menu .nav-item.submenu-open > .nav-link-wrapper .submenu-toggle .toggle-icon::before {
	background-color: var(--legacy-maroon-primary);
}

.mobile-nav-menu .nav-item.submenu-open > .nav-link-wrapper .submenu-toggle .toggle-icon::after {
	opacity: 0;
	transform: translateX(-50%) rotate(90deg);
}

.mobile-nav-menu .submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: var(--legacy-light-ash);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	border-left: 4px solid var(--legacy-maroon-primary);
}

.mobile-nav-menu .submenu.show {
	max-height: 2000px;
	padding: 0.5rem 0;
}

.mobile-nav-menu .submenu .nav-item {
	border-bottom: 1px solid rgba(76, 75, 96, 0.1);
}

.mobile-nav-menu .submenu .nav-item:last-child {
	border-bottom: none;
}

.mobile-nav-menu .submenu .nav-link {
	padding: 1rem 1.5rem 1rem 2.5rem;
	font-size: 14px;
	font-weight: 700;
	pointer-events: auto;
	text-transform: none;
	min-height: 50px;
	display: flex;
	align-items: center;
}

.mobile-nav-menu .submenu .nav-link:hover {
	background-color: rgba(103, 10, 16, 0.05);
	color: var(--legacy-maroon-primary);
}

.mobile-nav-menu .submenu .submenu {
	background-color: rgba(245, 245, 247, 0.5);
	border-left-color: var(--legacy-ash-blue);
}

.mobile-nav-menu .submenu .submenu .nav-link {
	padding-left: 3.5rem;
	font-size: 13px;
	font-weight: 600;
}

.offcanvas-footer {
	border-top: 3px solid var(--legacy-maroon-primary);
	padding: 2rem 1.5rem;
	margin-top: auto;
	background-color: var(--legacy-light-ash);
}

.offcanvas-footer-content {
	width: 100%;
}

.offcanvas-footer .btn-cta {
	padding: 1rem 2rem;
	font-size: 16px;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 8px rgba(255, 159, 33, 0.2);
}

.offcanvas-contact {
	text-align: center;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 2px solid rgba(103, 10, 16, 0.1);
}

.offcanvas-contact .contact-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--legacy-ash-blue);
	margin-bottom: 0.5rem;
	font-weight: 900;
}

.offcanvas-contact .contact-phone {
	font-size: 22px;
	font-family: 'Archivo Black', sans-serif;
	color: var(--legacy-maroon-primary);
	text-decoration: none;
	font-weight: 900;
	display: block;
	transition: color 0.3s ease;
}

.offcanvas-contact .contact-phone:hover {
	color: var(--legacy-maroon-secondary);
}
.navbar-toggler {
    color: transparent !important;
    background-color: transparent !important;
    border: none !important;
}
.navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(103,10,16,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.dropdown-toggle::after {
    font-size: 18px;
}

/* Quick Links Bar Responsive */
@media (max-width: 1200px) {
	.quick-links-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.quick-link-item:nth-child(5) {
		border-right: none;
	}
	
	.quick-link-item:nth-child(n+6) {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}
}

@media (max-width: 768px) {
	.quick-links-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.quick-link-item {
		padding: 20px 12px;
		min-height: 90px;
	}
	
	.quick-link-item:nth-child(3),
	.quick-link-item:nth-child(6),
	.quick-link-item:nth-child(9) {
		border-right: none;
	}
	
	.quick-link-item:nth-child(n+4) {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}
	
	.quick-link-item i {
		font-size: 24px;
		margin-bottom: 8px;
	}
	
	.quick-link-item span {
		font-size: 10px;
	}
}

@media (max-width: 480px) {
	.quick-links-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.quick-link-item:nth-child(even) {
		border-right: none;
	}
	
	.quick-link-item:nth-child(n+3) {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}
}

/* ================================
   Titan Chronicles Blog Section
   ================================ */
.titan-chronicles-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.titan-chronicles-section .section-title {
	text-align: center;
	font-size: 48px;
	margin-bottom: 60px;
	color: var(--legacy-maroon-primary);
}

.blog-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
	display: block;
	overflow: hidden;
	height: 240px;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.05);
}

.blog-card-body {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 14px;
}

.blog-date {
	color: var(--legacy-ash-blue);
}

.blog-category {
	background-color: var(--legacy-orange-primary);
	color: #ffffff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.blog-title {
	font-size: 22px;
	margin-bottom: 15px;
	line-height: 1.4;
}

.blog-title a {
	color: var(--legacy-maroon-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-title a:hover {
	color: var(--legacy-orange-primary);
}

.blog-excerpt {
	color: var(--legacy-ash-blue);
	margin-bottom: 20px;
	flex: 1;
	font-size: 15px;
	line-height: 1.6;
}

.titan-chronicles-section .btn {
	margin-top: auto;
}

/* ================================
   Events Calendar Page
   ================================ */
.calendar-page {
	background-color: #ffffff;
	min-height: 100vh;
}

.calendar-page .page-header {
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 3px solid var(--legacy-orange-primary);
}

.calendar-page .page-title {
	font-size: 48px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 10px;
}

.calendar-page .page-description {
	font-size: 18px;
	color: var(--legacy-ash-blue);
}

/* Upcoming Events Section - 4 Column Cards */
.upcoming-events-section .section-title {
	font-size: 36px;
	color: var(--legacy-maroon-primary);
	text-align: center;
}

.upcoming-event-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.upcoming-event-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.event-card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.event-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.upcoming-event-card:hover .event-card-image img {
	transform: scale(1.1);
}

.event-card-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.event-card-title {
	font-size: 18px;
	margin-bottom: 12px;
	line-height: 1.3;
}

.event-card-title a {
	color: var(--legacy-maroon-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.event-card-title a:hover {
	color: var(--legacy-orange-primary);
}

.calendar-wrapper {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 30px;
	margin-bottom: 40px;
}

/* Events List Inside Calendar */
.calendar-events-list {
	border-top: 2px solid var(--legacy-light-ash);
	padding-top: 30px;
	margin-top: 30px;
}

.calendar-events-title {
	font-size: 24px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 20px;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.calendar-events-title:hover {
	background: #e9ecef;
}

.calendar-events-title i {
	transition: transform 0.3s ease;
}

.calendar-events-title.active i {
	transform: rotate(180deg);
}

.events-list.collapsed {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.events-list.expanded {
	max-height: 5000px;
	overflow: visible;
	transition: max-height 0.5s ease;
}

.event-list-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 15px;
	margin-bottom: 12px;
	border-radius: 8px;
	background: #f8f9fa;
	transition: all 0.3s ease;
	border-left: 4px solid var(--legacy-orange-primary);
}

.event-list-item:hover {
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transform: translateX(5px);
}

.event-list-date {
	background-color: var(--legacy-maroon-primary);
	color: #ffffff;
	padding: 8px 12px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 13px;
	min-width: 110px;
	text-align: center;
	flex-shrink: 0;
}

.event-list-content {
	flex: 1;
}

.event-list-title {
	font-size: 18px;
	margin-bottom: 8px;
	font-weight: 600;
}

.event-list-title a {
	color: var(--legacy-maroon-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.event-list-title a:hover {
	color: var(--legacy-orange-primary);
}

.event-list-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	color: var(--legacy-ash-blue);
	font-size: 14px;
}

.event-list-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.event-list-meta i {
	color: var(--legacy-orange-primary);
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.calendar-month-year {
	font-size: 32px;
	color: var(--legacy-maroon-primary);
	margin: 0;
}

.calendar-nav-btn {
	background-color: var(--legacy-maroon-primary);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	font-size: 18px;
}

.calendar-nav-btn:hover {
	background-color: var(--legacy-orange-primary);
	transform: scale(1.1);
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
}

.calendar-weekday {
	text-align: center;
	font-weight: 700;
	color: var(--legacy-maroon-primary);
	padding: 15px 0;
	font-size: 14px;
	text-transform: uppercase;
	border-bottom: 2px solid var(--legacy-light-ash);
}

.calendar-day {
	min-height: 120px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 8px;
	border-radius: 8px;
	transition: all 0.3s ease;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	position: relative;
	overflow: hidden;
}

.calendar-day:hover {
	background-color: var(--legacy-light-ash);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-day.other-month {
	color: #cccccc;
	background-color: #fafafa;
}

.calendar-day.today {
	background-color: var(--legacy-orange-primary);
	color: #ffffff;
	font-weight: 700;
	border-color: var(--legacy-orange-primary);
}

.calendar-day.has-event {
	background-color: #fff8f5;
	border-left: 4px solid var(--legacy-maroon-primary);
}

.calendar-day-number {
	font-size: 16px;
	font-weight: 700;
	color: var(--legacy-maroon-primary);
	margin-bottom: 6px;
	width: 100%;
}

.calendar-day-events {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 4px;
	overflow-y: auto;
	max-height: 90px;
}

.calendar-day-event {
	display: block;
	background-color: var(--legacy-maroon-primary);
	color: #ffffff;
	padding: 4px 6px;
	border-radius: 4px;
	font-size: 11px;
	line-height: 1.3;
	text-decoration: none;
	white-space: normal;
	word-wrap: break-word;
	transition: all 0.2s ease;
}

.calendar-day-event:hover {
	background-color: var(--legacy-orange-primary);
	color: #ffffff;
	transform: translateX(2px);
}

/* Category Color Coding */
.calendar-day-event.category-academic {
	background-color: #2563eb;
}

.calendar-day-event.category-academic:hover {
	background-color: #1d4ed8;
}

.calendar-day-event.category-early-dismissal {
	background-color: #f59e0b;
}

.calendar-day-event.category-early-dismissal:hover {
	background-color: #d97706;
}

.calendar-day-event.category-holiday {
	background-color: #dc2626;
}

.calendar-day-event.category-holiday:hover {
	background-color: #b91c1c;
}

.calendar-day-event.category-report-card {
	background-color: #7c3aed;
}

.calendar-day-event.category-report-card:hover {
	background-color: #6d28d9;
}

.calendar-day-event.category-titan-chronicles {
	background-color: #059669;
}

.calendar-day-event.category-titan-chronicles:hover {
	background-color: #047857;
}

/* Calendar Legend/Key */
.calendar-legend {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 25px 30px;
	margin-top: 30px;
	border: 2px solid #e0e0e0;
}

.legend-title {
	font-size: 20px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 15px;
	font-weight: 700;
	text-align: center;
}

.legend-items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.legend-color {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	display: inline-block;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.legend-color.category-academic {
	background-color: #2563eb;
}

.legend-color.category-early-dismissal {
	background-color: #f59e0b;
}

.legend-color.category-holiday {
	background-color: #dc2626;
}

.legend-color.category-report-card {
	background-color: #7c3aed;
}

.legend-color.category-titan-chronicles {
	background-color: #059669;
}

.legend-label {
	font-size: 14px;
	color: var(--legacy-ash-blue);
	font-weight: 600;
}

/* Bell Schedule Section */
.bell-schedule-section {
	border-top: 2px solid var(--legacy-light-ash);
	padding-top: 30px;
	margin-top: 30px;
}

.bell-schedule-title {
	font-size: 24px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 20px;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.bell-schedule-title:hover {
	background: #e9ecef;
}

.bell-schedule-title i {
	transition: transform 0.3s ease;
}

.bell-schedule-title.active i {
	transform: rotate(180deg);
}

.bell-schedule-content.collapsed {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.bell-schedule-content.expanded {
	max-height: 5000px;
	overflow: visible;
	transition: max-height 0.5s ease;
}

.schedule-block {
	margin-bottom: 30px;
}

.schedule-subtitle {
	font-size: 20px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 15px;
	font-weight: 700;
}

.bell-schedule-table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	overflow: hidden;
}

.bell-schedule-table thead {
	background-color: #d1d5db;
}

.bell-schedule-table th {
	padding: 15px;
	text-align: left;
	font-weight: 700;
	color: #1f2937;
	font-size: 16px;
	border-bottom: 2px solid #9ca3af;
}

.bell-schedule-table tbody tr {
	border-bottom: 1px solid #e5e7eb;
}

.bell-schedule-table tbody tr:last-child {
	border-bottom: none;
}

.bell-schedule-table td {
	padding: 12px 15px;
	color: #374151;
	font-size: 15px;
}

.bell-schedule-table tbody tr:hover {
	background-color: #f9fafb;
}

.bell-schedule-table tr.dismissal-regular {
	background-color: #ef4444;
	color: #ffffff;
}

.bell-schedule-table tr.dismissal-regular td {
	color: #000;
	font-weight: 600;
}

.bell-schedule-table tr.dismissal-activities {
	background-color: #f59e0b;
	color: #1f2937;
}

.bell-schedule-table tr.dismissal-activities td {
	color: #1f2937;
	font-weight: 600;
}

.bell-schedule-legend {
	margin-top: 20px;
	padding: 15px;
	background: #f9fafb;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bell-schedule-legend .legend-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #374151;
}

.bell-schedule-legend .legend-box {
	width: 30px;
	height: 20px;
	border-radius: 4px;
	flex-shrink: 0;
}

.bell-schedule-legend .legend-box.dismissal-regular {
	background-color: #ef4444;
}

.bell-schedule-legend .legend-box.dismissal-activities {
	background-color: #f59e0b;
}

.events-list-section {
	background: #ffffff;
}

.events-list-section .section-title {
	font-size: 36px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 3px solid var(--legacy-orange-primary);
}

.event-item {
	background: #ffffff;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.event-thumbnail {
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 20px;
}

.event-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.event-date-badge {
	background-color: var(--legacy-orange-primary);
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 15px;
}

.event-title {
	font-size: 26px;
	margin-bottom: 15px;
	color: var(--legacy-maroon-primary);
}

.event-title a {
	color: var(--legacy-maroon-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.event-title a:hover {
	color: var(--legacy-orange-primary);
}

.event-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: var(--legacy-ash-blue);
	font-size: 15px;
}

.event-meta i {
	color: var(--legacy-orange-primary);
}

.event-excerpt {
	color: var(--legacy-ash-blue);
	margin: 20px 0;
	line-height: 1.6;
}

.no-events {
	text-align: center;
	padding: 60px 20px;
	color: var(--legacy-ash-blue);
	font-size: 18px;
}

@media (max-width: 768px) {
	.calendar-month-year {
		font-size: 24px;
	}
	
	.calendar-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
	
	.calendar-weekday {
		font-size: 12px;
		padding: 10px 0;
	}
	
	.calendar-day {
		padding: 5px;
	}
	
	.calendar-day-number {
		font-size: 14px;
	}
	
	.titan-chronicles-section .section-title,
	.calendar-page .page-title {
		font-size: 36px;
	}
	
	.event-title {
		font-size: 22px;
	}
	
	.event-list-item {
		flex-direction: column;
		gap: 12px;
	}
	
	.event-list-date {
		min-width: auto;
		width: 100%;
	}
	
	.upcoming-events-section .section-title {
		font-size: 28px;
	}
	
	.event-card-title {
		font-size: 16px;
	}
}

/* Single Post Detail Page Styles */
#single-wrapper {
	background: #f8f9fa;
	padding: 80px 0;
}

#single-wrapper article {
	background: #ffffff;
	margin-bottom: 40px;
	border-radius: 16px;
	box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

/* Entry Header */
.entry-header {
	margin-bottom: 0;
	padding: 50px 55px 40px;
	border-bottom: none;
	position: relative;
}


.entry-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 60px;
	right: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--legacy-orange-primary) 0%, var(--legacy-maroon-primary) 100%);
	border-radius: 4px;
}

.entry-title {
	font-size: 48px;
	font-weight: 900;
	color: var(--legacy-maroon-primary);
	line-height: 1.15;
	margin-bottom: 24px;
	font-family: 'Archivo Black', sans-serif;
	letter-spacing: -0.5px;
}

.entry-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: #6b7280;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}

.entry-meta::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--legacy-orange-primary);
	border-radius: 50%;
	margin-right: 4px;
}

.entry-meta a {
	color: var(--legacy-orange-primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.entry-meta a:hover {
	color: var(--legacy-maroon-primary);
}

.posted-on,
.byline {
	display: inline-block;
}

/* Featured Image */
.entry-header + img,
article > img:first-of-type {
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: cover;
	border-radius: 0;
	margin-bottom: 0;
	box-shadow: none;
	display: block;
}

/* Entry Content */
.entry-content {
	font-family: 'Roboto', sans-serif;
	font-size: 19px;
	line-height: 1.75;
	color: #1f2937;
	padding: 50px 60px 60px;
	max-width: 100%;
}

.entry-content p {
	margin-bottom: 28px;
	font-weight: 400;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: 'Archivo Black', sans-serif;
	color: var(--legacy-maroon-primary);
	margin-top: 48px;
	margin-bottom: 24px;
	font-weight: 900;
	letter-spacing: -0.3px;
}

.entry-content h2 {
	font-size: 36px;
	line-height: 1.25;
}

.entry-content h3 {
	font-size: 28px;
	line-height: 1.3;
}

.entry-content h4 {
	font-size: 24px;
	line-height: 1.35;
}

.entry-content a {
	color: var(--legacy-orange-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.entry-content a:hover {
	color: #fff;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 24px;
	padding-left: 30px;
}

.entry-content li {
	margin-bottom: 10px;
}

.entry-content blockquote {
	border-left: 4px solid var(--legacy-orange-primary);
	padding-left: 24px;
	margin: 30px 0;
	font-style: italic;
	color: var(--legacy-ash-blue);
	background: var(--legacy-light-ash);
	padding: 20px 24px;
	border-radius: 8px;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 24px 0;
}

/* Entry Footer */
.entry-footer {
	margin-top: 40px;
	padding-top: 25px;
	border-top: 2px solid var(--legacy-light-ash);
	font-size: 14px;
	color: var(--legacy-ash-blue);
}

.entry-footer .cat-links,
.entry-footer .tags-links {
	display: block;
	margin-bottom: 10px;
}

.entry-footer a {
	color: var(--legacy-orange-primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.entry-footer a:hover {
	color: var(--legacy-maroon-primary);
}

.entry-footer .edit-link {
	margin-top: 15px;
	display: inline-block;
}

.entry-footer .edit-link a {
	background: var(--legacy-light-ash);
	padding: 8px 16px;
	border-radius: 6px;
	display: inline-block;
}

/* Post Navigation */
.post-navigation {
	margin: 50px 0 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.nav-links {
	display: flex;
	justify-content: space-between;
	gap: 0;
	border-top: 1px solid #e5e7eb;
}

.nav-previous,
.nav-next {
	flex: 1;
}

.nav-previous {
	border-right: 1px solid #e5e7eb;
}

.nav-previous a,
.nav-next a {
	display: block;
	padding: 32px 40px;
	background: #ffffff;
	border-radius: 0;
	text-decoration: none;
	color: var(--legacy-maroon-primary);
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
	border: none;
	position: relative;
}

.nav-previous a::before {
	content: '← Previous';
	display: block;
	font-size: 13px;
	color: #9ca3af;
	margin-bottom: 8px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nav-next a::before {
	content: 'Next →';
	display: block;
	font-size: 13px;
	color: #9ca3af;
	margin-bottom: 8px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nav-previous a:hover,
.nav-next a:hover {
	background: #fafafa;
	transform: none;
	box-shadow: none;
}

.nav-next {
	text-align: left;
}

/* Comments Section */
#comments {
	margin-top: 60px;
	padding: 40px;
	background: var(--legacy-light-ash);
	border-radius: 12px;
}

.comments-title {
	font-size: 28px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 30px;
	font-weight: 900;
}

.comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.comment {
	background: #ffffff;
	padding: 25px;
	margin-bottom: 20px;
	border-radius: 8px;
	border-left: 4px solid var(--legacy-orange-primary);
}

.comment-author {
	font-weight: 700;
	color: var(--legacy-maroon-primary);
	margin-bottom: 8px;
}

.comment-metadata {
	font-size: 13px;
	color: var(--legacy-ash-blue);
	margin-bottom: 15px;
}

.comment-metadata a {
	color: var(--legacy-ash-blue);
	text-decoration: none;
}

.comment-content {
	font-size: 15px;
	line-height: 1.6;
	color: #333333;
}

.reply {
	margin-top: 10px;
}

.comment-reply-link {
	color: var(--legacy-orange-primary);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.comment-reply-link:hover {
	color: var(--legacy-maroon-primary);
}

/* Comment Form */
.comment-respond {
	background: #ffffff;
	padding: 30px;
	border-radius: 8px;
	margin-top: 30px;
}

.comment-reply-title {
	font-size: 24px;
	color: var(--legacy-maroon-primary);
	margin-bottom: 20px;
	font-weight: 900;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	transition: border-color 0.3s ease;
	margin-bottom: 15px;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
	border-color: var(--legacy-orange-primary);
	outline: none;
}

.comment-form textarea {
	min-height: 150px;
	resize: vertical;
}

.form-submit .submit {
	background: var(--legacy-maroon-primary);
	color: #ffffff;
	border: none;
	padding: 12px 32px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-submit .submit:hover {
	background: var(--legacy-maroon-secondary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(112, 0, 26, 0.3);
}

/* Responsive Styles for Single Post */
@media (max-width: 768px) {
	#single-wrapper {
		padding: 40px 0;
	}
	
	#single-wrapper article {
		border-radius: 0;
	}
	
	.entry-header {
		padding: 30px 24px 24px;
	}
	
	.entry-header::after {
		left: 24px;
		right: 24px;
	}
	
	.entry-title {
		font-size: 32px;
	}
	
	.entry-content {
		font-size: 17px;
		padding: 30px 24px 40px;
	}
	
	.entry-content h2 {
		font-size: 28px;
		margin-top: 36px;
	}
	
	.entry-content h3 {
		font-size: 24px;
	}
	
	.entry-content h4 {
		font-size: 20px;
	}
	
	.entry-footer {
		padding: 24px;
	}
	
	.nav-links {
		flex-direction: column;
		border-top: none;
	}
	
	.nav-previous {
		border-right: none;
		border-bottom: 1px solid #e5e7eb;
	}
	
	.nav-previous a,
	.nav-next a {
		padding: 24px;
	}
	
	.nav-next {
		text-align: left;
	}
	
	#comments {
		padding: 20px;
	}
	
	.comment-respond {
		padding: 20px;
	}
}

/* Blog Archive/Listing Page Styles */
#archive-wrapper,
#index-wrapper {
	background: #f8f9fa;
	padding: 60px 0;
}

#archive-wrapper .page-header,
#index-wrapper .page-header {
	background: #ffffff;
	padding: 50px 60px;
	border-radius: 16px;
	margin-bottom: 50px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

#archive-wrapper .page-title,
#index-wrapper .page-title {
	font-size: 48px;
	font-weight: 900;
	color: var(--legacy-maroon-primary);
	margin-bottom: 16px;
	font-family: 'Archivo Black', sans-serif;
	letter-spacing: -0.5px;
}

#archive-wrapper .taxonomy-description,
#index-wrapper .taxonomy-description {
	font-size: 18px;
	color: #6b7280;
	line-height: 1.7;
	margin-top: 16px;
}

/* Grid Layout for Posts */
#archive-wrapper .site-main,
#index-wrapper .site-main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

#archive-wrapper .page-header,
#index-wrapper .page-header {
	grid-column: 1 / -1;
}

/* Post Card Styling */
#archive-wrapper article,
#index-wrapper article {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 40px;
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

#archive-wrapper article:hover,
#index-wrapper article:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

#archive-wrapper article .entry-header,
#index-wrapper article .entry-header {
	padding: 40px 50px 30px;
	margin-bottom: 0;
}

#archive-wrapper article .entry-title,
#index-wrapper article .entry-title {
	font-size: 32px;
	font-weight: 900;
	margin-bottom: 16px;
	font-family: 'Archivo Black', sans-serif;
	letter-spacing: -0.3px;
	line-height: 1.25;
}

#archive-wrapper article .entry-title a,
#index-wrapper article .entry-title a {
	color: var(--legacy-maroon-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

#archive-wrapper article .entry-title a:hover,
#index-wrapper article .entry-title a:hover {
	color: var(--legacy-orange-primary);
}

#archive-wrapper article .entry-meta,
#index-wrapper article .entry-meta {
	font-size: 14px;
	color: #6b7280;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
}

#archive-wrapper article .entry-meta::before,
#index-wrapper article .entry-meta::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background: var(--legacy-orange-primary);
	border-radius: 50%;
	margin-right: 4px;
}

#archive-wrapper article .entry-meta a,
#index-wrapper article .entry-meta a {
	color: var(--legacy-orange-primary);
	text-decoration: none;
	font-weight: 600;
}

#archive-wrapper article img,
#index-wrapper article img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
	margin: 0;
}

#archive-wrapper article .entry-content,
#index-wrapper article .entry-content {
	padding: 30px 50px 40px;
	font-size: 17px;
	line-height: 1.7;
	color: #4b5563;
}

#archive-wrapper article .entry-content p,
#index-wrapper article .entry-content p {
	margin-bottom: 20px;
}

#archive-wrapper article .entry-footer,
#index-wrapper article .entry-footer {
	padding: 20px 50px 30px;
	border-top: 1px solid #e5e7eb;
	margin-top: 0;
	background: #fafafa;
}

#archive-wrapper article .entry-footer .cat-links,
#index-wrapper article .entry-footer .cat-links {
	font-size: 14px;
	color: #6b7280;
}

#archive-wrapper article .entry-footer a,
#index-wrapper article .entry-footer a {
	color: var(--legacy-orange-primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

#archive-wrapper article .entry-footer a:hover,
#index-wrapper article .entry-footer a:hover {
	color: var(--legacy-maroon-primary);
}

/* Pagination Styling */
.pagination {
	margin: 50px 0 0;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.pagination .page-numbers {
	padding: 12px 20px;
	background: #ffffff;
	color: var(--legacy-maroon-primary);
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
	background: var(--legacy-orange-primary);
	color: #ffffff;
	border-color: var(--legacy-orange-primary);
}

.pagination .page-numbers.current {
	background: var(--legacy-maroon-primary);
	color: #ffffff;
	border-color: var(--legacy-maroon-primary);
}

/* Responsive Blog Archive */
@media (max-width: 768px) {
	#archive-wrapper,
	#index-wrapper {
		padding: 40px 0;
	}
	
	#archive-wrapper .site-main,
	#index-wrapper .site-main {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	#archive-wrapper .page-header,
	#index-wrapper .page-header {
		padding: 30px 24px;
		margin-bottom: 30px;
		border-radius: 0;
	}
	
	#archive-wrapper .page-title,
	#index-wrapper .page-title {
		font-size: 32px;
	}
	
	#archive-wrapper article,
	#index-wrapper article {
		border-radius: 12px;
		margin-bottom: 30px;
	}
	
	#archive-wrapper article .entry-header,
	#index-wrapper article .entry-header {
		padding: 24px;
	}
	
	#archive-wrapper article .entry-title,
	#index-wrapper article .entry-title {
		font-size: 24px;
	}
	
	#archive-wrapper article img,
	#index-wrapper article img {
		height: 250px;
	}
	
	#archive-wrapper article .entry-content,
	#index-wrapper article .entry-content {
		padding: 20px 24px 24px;
		font-size: 16px;
	}
	
	#archive-wrapper article .entry-footer,
	#index-wrapper article .entry-footer {
		padding: 16px 24px 20px;
	}
	
	.pagination .page-numbers {
		padding: 10px 16px;
		font-size: 14px;
	}
}