/**
 * Nashville Predators Homepage - v9.0.0
 * Complete restructure to match official NHL site layout
 * - Horizontal schedule bar
 * - Large hero image section
 * - Proper sidebar layout
 * - Image-based news cards
 */

/* ============================================
   MOBILE RESPONSIVE DESIGN - RESTORED
   Proper mobile-first responsive layout
   ============================================ */

/* ============================================
   CRITICAL IMAGE CONSTRAINTS - MUST LOAD FIRST
   ============================================ */

/* Image fills card with proper aspect ratio */
.featured-story-large img,
.featured-story-large .story-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    z-index: 1;
}

.small-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ============================================
   FOUNDATION
   ============================================ */

/* Scope homepage styles to .page-home to avoid affecting nav/header */
body.page-home,
body.home {
    background: #EDEEF0;
    color: #48494A;
}

/* Apply Inter font only to page content, not nav/header */
.page-home .page-content,
.page-home main,
.page-home .site-content {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Remove margin-top from site-content on homepage */
.page-home .site-content {
    margin-top: 0 !important;
}

/* Remove top padding from page-content on homepage to make schedule flush with nav */
.page-content.page-home {
    padding-top: 0 !important;
}

.page-home {
    margin: 0;
    padding: 0;
}

/* ============================================
   SCHEDULE BAR - Horizontal scrolling games
   ============================================ */

.schedule-bar {
    position: relative;
    background: var(--neutral-100);
    border-bottom: var(--border-width-1) solid var(--neutral-200);
    padding: var(--space-2);
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    height: 110px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
}

/* Visual scroll indicator for schedule bar */
/* Scroll indicator removed - was creating persistent white bar */
/* .schedule-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to left, rgba(248, 249, 250, 0.95), transparent);
    pointer-events: none;
    z-index: 2;
} */

.schedule-scroll {
    display: flex !important;
    gap: var(--space-1) !important;
    padding: 0 var(--space-2) !important;
    margin: 0 !important;
    overflow: visible !important;
    height: 100%;
    align-items: center;
    min-width: max-content;
}

.schedule-scroll::-webkit-scrollbar {
    height: 4px;
}

.schedule-scroll::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: var(--radius-sm);
}

.schedule-game-card {
    flex: 0 0 200px;
    background: var(--neutral-white);
    border: var(--border-width-1) solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    text-align: center;
    transition: var(--transition-base);
    height: 90px;
    max-height: 90px;
    overflow: hidden;
    box-sizing: border-box;
}

.schedule-game-card.next-game {
    border: var(--border-width-2) solid var(--brand-gold-900);
    background: linear-gradient(135deg, var(--brand-gold-50) 0%, var(--neutral-white) 100%);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.schedule-game-card:hover {
    border-color: var(--brand-gold-900);
    box-shadow: var(--shadow-gold);
}

.schedule-game-time {
    font-size: var(--font-size-xs);
    color: var(--neutral-600);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.schedule-game-matchup {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--space-3);
}

.schedule-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.schedule-team-logo {
    width: 52px;
    height: 52px;
}

.schedule-team-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--neutral-900);
}

.schedule-score {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-black);
    color: var(--brand-navy-900);
}

/* ============================================
   TOP STORIES - Large hero + side stories (NHL.com style)
   ============================================ */

.top-stories-section {
    padding: var(--space-4) var(--space-8);
    max-width: var(--container-2xl);
    margin: 0 auto;
    background: var(--neutral-white);
}

.top-stories-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #041E42;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--brand-gold-900);
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-stories-title .gold-dot {
    color: var(--brand-gold-900);
    font-size: 0.75rem;
}

.top-stories-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-6);
    align-items: start;
}

/* Left Column with Large + Small Heroes */
.left-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* Large Featured Story */
.featured-story-large {
    position: relative;
    background: #FFFFFF;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
    z-index: 1;
}

.featured-story-large:hover {
    z-index: 10;
}

/* Small Hero Stories (3 cards) */
.small-hero-stories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
}

.small-hero-card {
    position: relative;
    background: var(--neutral-950);
    height: 160px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
    border-radius: var(--radius-xl);
    box-shadow:
        0 10px 30px -10px rgba(4, 30, 66, 0.3),
        0 5px 15px -5px rgba(255, 184, 28, 0.2);
    border: 2px solid transparent;
    z-index: 1;
}

.small-hero-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-gold-to-light);
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.small-hero-card:hover {
    transform: translateY(-10px) scale(1.05) rotateZ(1deg);
    box-shadow:
        0 25px 60px -15px rgba(4, 30, 66, 0.5),
        0 15px 40px -10px rgba(255, 184, 28, 0.4);
    border-color: var(--brand-gold-600);
    z-index: 10;
}

.small-hero-card:hover::before {
    opacity: 0.3;
}

.small-hero-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4) var(--space-3);
    background: var(--gradient-hero-overlay);
    z-index: var(--z-raised);
}

.small-hero-card .overlay h4 {
    color: var(--neutral-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin: 0;
    line-height: var(--line-height-snug);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-story-large > a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.featured-story-large:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 30px 80px -20px rgba(4, 30, 66, 0.6),
        0 20px 50px -15px rgba(255, 184, 28, 0.5),
        inset 0 0 0 3px rgba(255, 184, 28, 0.4);
    border-color: var(--brand-gold-600);
    z-index: 10;
}

.featured-story-large .story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8) var(--space-6);
    background: var(--gradient-hero-overlay);
    z-index: var(--z-raised);
}

.featured-story-large .story-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xs);
    margin: 0 0 var(--space-2);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.featured-story-large .story-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-black);
    color: var(--neutral-white);
    margin: 0;
    line-height: var(--line-height-snug);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-story-large .story-title a {
    color: var(--neutral-white);
    text-decoration: none;
}

/* Side Stories Column (Right) - Story List */
.side-stories-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--neutral-white);
}

.side-stories-column h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #041E42;
    margin: 0 0 var(--space-3) 0;
    padding: 0 var(--space-4) var(--space-3) var(--space-4);
    border-bottom: 3px solid var(--brand-gold-900);
    display: flex;
    align-items: center;
    gap: 12px;
}

.side-story {
    position: relative;
    padding: var(--space-3) var(--space-4);
    padding-left: calc(var(--space-4) + 16px);
    border-bottom: var(--border-width-1) solid var(--neutral-200);
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.side-story::before {
    content: '';
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--brand-gold-900);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.side-story:hover {
    border-left-color: var(--brand-gold-900);
    background: linear-gradient(90deg, rgba(255, 184, 28, 0.05) 0%, transparent 100%);
}

.side-story:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.side-story:last-child {
    border-bottom: none;
}

.side-story .story-text h3 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-950);
    margin: 0;
    line-height: var(--line-height-snug);
}

.side-story .story-text p {
    font-size: var(--font-size-xs);
    color: var(--neutral-600);
    margin: var(--space-1) 0 0 0;
    line-height: var(--line-height-normal);
}

/* ============================================
   QUICK STATS BAR - CLEAN HORIZONTAL
   ============================================ */

.quick-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    background: linear-gradient(135deg, #041E42 0%, #0a2a52 100%);
    text-decoration: none;
}

a.quick-stats-bar:hover {
    text-decoration: none;
}

.quick-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.quick-stat:last-child {
    border-right: none;
}

.quick-stat:hover {
    background: rgba(255, 184, 28, 0.1);
}

.quick-stat .value,
#quick-record,
#quick-points,
#quick-division,
#quick-conference,
#quick-league {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFB81C !important;
    line-height: 1.2;
}

.quick-stat .label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================
   CONTENT WRAPPER - Main + Sidebar
   ============================================ */

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-6);
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: var(--space-5) var(--space-6);
}

/* DISABLED FOR DESKTOP-ONLY SCALING LAYOUT */
/*
@media (max-width: 1100px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}
*/

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.main-content {
    min-width: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: var(--border-width-2) solid var(--neutral-200);
}

.section-header h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-black);
    color: var(--neutral-900);
    margin: 0;
    letter-spacing: var(--letter-spacing-tight);
}

.view-all {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--brand-navy-900);
    text-decoration: none;
    transition: var(--transition-colors);
}

.view-all:hover {
    color: var(--brand-gold-900);
}

/* ============================================
   NEWS GRID - Image-based cards (NHL.com style)
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-7);
    margin-bottom: var(--space-12);
}

.news-card {
    position: relative;
    background: var(--neutral-950);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    border: 3px solid var(--brand-gold-900);
    box-shadow:
        0 15px 40px -10px rgba(4, 30, 66, 0.4),
        0 8px 20px -5px rgba(255, 184, 28, 0.3);
}

.news-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-xl);
    background: var(--gradient-gold-shine);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 184, 28, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-15px) scale(1.05) rotateZ(-1deg);
    box-shadow:
        0 35px 80px -20px rgba(4, 30, 66, 0.6),
        0 20px 50px -15px rgba(255, 184, 28, 0.6),
        inset 0 0 0 1px rgba(255, 184, 28, 0.5);
    border-color: var(--brand-gold-600);
}

.news-card:hover::after {
    opacity: 0.5;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.news-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-5);
    background: var(--gradient-hero-overlay);
}

.news-card-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--neutral-white);
    margin: 0;
    line-height: var(--line-height-snug);
    text-shadow: var(--shadow-md);
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-colors);
}

.news-card-title a:hover {
    color: var(--brand-gold-900);
}

.news-card-meta {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.news-card-excerpt {
    display: none; /* Hide excerpt on cards to match NHL.com style */
}

/* ============================================
   VIDEO CAROUSEL
   ============================================ */

.video-carousel {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    padding-bottom: var(--space-4);
    scrollbar-width: thin;
    margin-bottom: var(--space-12);
}

.video-carousel::-webkit-scrollbar {
    height: 8px;
}

.video-carousel::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: var(--radius-sm);
}

.video-card {
    flex: 0 0 320px;
    background: var(--neutral-white);
    border: var(--border-width-1) solid var(--neutral-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 184, 28, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    color: var(--brand-navy-900);
}

.video-card-content {
    padding: var(--space-4);
}

.video-card-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--neutral-900);
    margin: 0 0 var(--space-2) 0;
    line-height: var(--line-height-normal);
}

.video-duration {
    font-size: var(--font-size-xs);
    color: var(--neutral-600);
}

/* ============================================
   GAMES LIST
   ============================================ */

.games-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.game-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    background: var(--neutral-white);
    border: var(--border-width-1) solid var(--neutral-200);
    border-radius: var(--radius-base);
    transition: var(--transition-base);
    height: 80px;
    box-sizing: border-box;
}

.game-card:hover {
    box-shadow: var(--shadow-md);
}

.game-card.win {
    border-left: var(--border-width-4) solid var(--success-600);
}

.game-card.loss {
    border-left: var(--border-width-4) solid var(--error-600);
}

.game-card-team {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex: 1;
}

.game-card-logo {
    width: 48px;
    height: 48px;
}

.game-card-info {
    display: flex;
    flex-direction: column;
}

.game-card-opponent {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--neutral-900);
}

.game-card-date {
    font-size: var(--font-size-sm);
    color: var(--neutral-600);
}

.game-card-score {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-black);
    color: var(--brand-navy-900);
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.sidebar-card {
    background: var(--gradient-card-subtle);
    border: var(--border-width-2) solid var(--neutral-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-base);
    transition: var(--transition-slow);
    position: relative;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold-to-light);
}

.sidebar-card:hover {
    border-color: var(--brand-gold-900);
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-2px);
}

.sidebar-card h3 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-extrabold);
    color: var(--neutral-900);
    margin: 0;
    padding: var(--space-4) var(--space-5);
    background: var(--neutral-100);
    border-bottom: var(--border-width-1) solid var(--neutral-200);
}

.sidebar-card > div:not([style]) {
    padding: var(--space-4);
}

.sidebar-link-btn {
    display: block;
    padding: var(--space-3) var(--space-5);
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--brand-navy-900);
    text-decoration: none;
    background: var(--neutral-100);
    border-top: var(--border-width-1) solid var(--neutral-200);
    transition: var(--transition-base);
}

.sidebar-link-btn:hover {
    background: var(--brand-gold-900);
    color: var(--neutral-white);
}

/* Live Game Card */
.live-game-card {
    border: var(--border-width-2) solid var(--error-600);
}

.live-game-card h3 {
    background: var(--error-50);
    color: var(--error-600);
}

/* Sidebar Widgets Content */
.sidebar-game-item,
.sidebar-standing-item,
.sidebar-performer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-2);
    background: var(--neutral-100);
    border-radius: var(--radius-base);
    font-size: var(--font-size-sm);
}

.sidebar-game-item:last-child,
.sidebar-standing-item:last-child,
.sidebar-performer-item:last-child {
    margin-bottom: 0;
}

.sidebar-team-name,
.sidebar-player-name {
    font-weight: var(--font-weight-bold);
    color: var(--neutral-900);
}

.sidebar-game-date,
.sidebar-stat-label {
    color: var(--neutral-600);
    font-size: var(--font-size-xs);
}

.sidebar-standing-item.predators {
    background: rgba(255, 184, 28, 0.15);
    border: var(--border-width-1) solid var(--brand-gold-900);
    font-weight: var(--font-weight-bold);
}

/* ============================================
   LOADING STATES
   ============================================ */

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-6);
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--neutral-200);
    border-top-color: var(--brand-gold-900);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

.loading-spinner p {
    margin-top: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--neutral-600);
}

.loading-spinner-sm {
    display: flex;
    justify-content: center;
    padding: var(--space-6);
}

.spinner-sm {
    width: 32px;
    height: 32px;
    border: 3px solid var(--neutral-200);
    border-top-color: var(--brand-gold-900);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================
   PREDS TV - Video Carousel
   ============================================ */

.preds-tv-section {
    position: relative;
    padding: var(--space-8) var(--space-6);
    max-width: var(--container-2xl);
    margin: 0 auto;
    background: var(--neutral-white);
}

/* Visual scroll indicator for video carousel */
.preds-tv-section::after {
    content: '';
    position: absolute;
    top: 32px;
    right: 24px;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
    pointer-events: none;
    z-index: 2;
}

.section-header-tv {
    margin-bottom: var(--space-5);
}

.section-header-tv h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--neutral-950);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.section-header-tv .arrow {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-light);
}

.video-carousel {
    display: flex;
    gap: var(--space-4);
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: var(--space-4);
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold-900) var(--neutral-200);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
}

.video-carousel::-webkit-scrollbar {
    height: 8px;
}

.video-carousel::-webkit-scrollbar-track {
    background: var(--neutral-200);
    border-radius: var(--radius-sm);
}

.video-carousel::-webkit-scrollbar-thumb {
    background: var(--brand-gold-900);
    border-radius: var(--radius-sm);
}

.video-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--brand-gold-800);
}

.video-card {
    flex: 0 0 320px;
    background: var(--neutral-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-xs);
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.video-card .video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--neutral-950);
    overflow: hidden;
}

.video-card .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Thumbnail Container (replaces embedded iframe) */
.video-card .video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--neutral-950);
    overflow: hidden;
}

.video-card .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-transform);
    z-index: var(--z-raised);
}

.video-card:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card .video-duration-badge {
    position: absolute;
    bottom: var(--space-2);
    right: var(--space-2);
    background: rgba(0, 0, 0, 0.8);
    color: var(--neutral-white);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    z-index: var(--z-dropdown);
}

/* Legacy support - keep for old code references */
.video-card .video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--neutral-950);
    overflow: hidden;
}

.video-card .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.2s ease;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-card .play-button {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: var(--neutral-white);
}

.video-card .play-icon {
    width: 0;
    height: 0;
    border-left: 16px solid var(--brand-navy-900);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: var(--space-1);
}

.video-card .video-duration {
    position: absolute;
    bottom: var(--space-2);
    right: var(--space-2);
    background: rgba(0, 0, 0, 0.8);
    color: var(--neutral-white);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.video-card .video-info {
    padding: var(--space-3);
}

.video-card .video-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-950);
    margin: 0 0 var(--space-2) 0;
    line-height: var(--line-height-normal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card .video-description {
    font-size: var(--font-size-xs);
    color: var(--neutral-600);
    margin: 0 0 var(--space-2) 0;
    line-height: var(--line-height-normal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card .video-date {
    font-size: var(--font-size-xs);
    color: var(--neutral-500);
}

/* ============================================
   RESPONSIVE DESIGN - DISABLED FOR DESKTOP-ONLY SCALING
   ============================================ */

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .quick-stats-bar {
        flex-wrap: wrap;
    }

    .quick-stat {
        padding: 12px 16px;
    }

    .top-stories-container {
        grid-template-columns: 1fr;
    }

    .side-stories-column {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .schedule-bar {
        padding: var(--space-3) 0;
        padding-top: 82px;
    }

    .schedule-scroll {
        padding: 0 var(--space-4);
        gap: var(--space-3);
    }

    .schedule-game-card {
        flex: 0 0 200px;
        min-height: 100px;
    }

    .hero-image {
        height: 280px;
    }

    .hero-overlay {
        padding: var(--space-10) var(--space-5) var(--space-7);
    }

    .quick-stats-bar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .quick-stat {
        padding: 12px 16px;
        flex: 0 0 auto;
    }

    .quick-stat .value,
    #quick-record,
    #quick-points,
    #quick-division,
    #quick-conference,
    #quick-league {
        font-size: 1.1rem;
    }

    .quick-stat .label {
        font-size: 0.6rem;
    }

    .top-stories-title {
        font-size: 1.25rem;
        margin: 0 0 16px 0;
        padding-bottom: 10px;
    }

    .top-stories-section {
        padding: var(--space-4);
    }

    .content-wrapper {
        padding: var(--space-6) var(--space-4);
        gap: var(--space-6);
    }

    .section-header h2 {
        font-size: var(--font-size-lg);
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    /* Mobile Layout Reordering for Top Stories Section */
    .top-stories-container {
        display: flex;
        flex-direction: column;
        gap: var(--space-5);
    }

    .left-column {
        display: flex;
        flex-direction: column;
        gap: var(--space-5);
        order: 1; /* Left column content first (large hero + small heroes) */
    }

    .featured-story-large {
        height: 300px;
        min-height: 300px;
        width: 100%;
    }

    .small-hero-stories {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: var(--space-4);
    }

    .side-stories-column {
        order: 2; /* Top stories list after left column */
    }

    .small-hero-card {
        height: 180px; /* Slightly taller for mobile stacking */
    }

    .video-carousel {
        gap: var(--space-3);
        padding-bottom: var(--space-3);
    }

    .video-card {
        flex: 0 0 260px;
    }

    .video-card .video-info {
        padding: var(--space-3);
    }

    .video-card .video-title {
        font-size: var(--font-size-sm);
    }

    .video-card .video-description {
        font-size: var(--font-size-xs);
    }

    .preds-tv-section {
        padding: var(--space-6) var(--space-4);
    }

    .section-header-tv h2 {
        font-size: var(--font-size-xl);
    }

    .game-card {
        padding: var(--space-4);
    }

    .game-card-logo {
        width: 40px;
        height: 40px;
    }

    /* Slightly smaller schedule cards for mobile */
    .schedule-game-card {
        flex: 0 0 180px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .video-card {
        flex: 0 0 240px;
    }

    .schedule-game-card {
        flex: 0 0 160px;
        height: 108px;
        min-height: 108px;
    }

    .schedule-team-logo {
        width: 24px !important;
        height: 24px !important;
    }

    .hero-overlay h1 {
        font-size: var(--font-size-lg) !important;
    }

    .hero-overlay p {
        font-size: var(--font-size-xs) !important;
    }

    .quick-stats-bar {
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .quick-stat {
        padding: 10px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex: 1 1 33%;
        justify-content: center;
    }

    .quick-stat:nth-child(3),
    .quick-stat:last-child {
        border-right: none;
    }

    .quick-stat .value,
    #quick-record,
    #quick-points,
    #quick-division,
    #quick-conference,
    #quick-league {
        font-size: 1rem;
    }

    .quick-stat .label {
        font-size: 0.55rem;
    }

    .section-header h2,
    .section-header-tv h2 {
        font-size: var(--font-size-lg);
    }
}

/* ============================================
   FULL-WIDTH SINGLE-COLUMN LAYOUT
   ============================================ */

.content-wrapper-full {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: var(--space-8) var(--space-5);
}

.main-content-full {
    width: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: var(--border-width-2) solid var(--brand-gold-900);
}

.section-header h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-navy-900);
    margin: 0;
}

.section-header .view-all {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--brand-navy-900);
    text-decoration: none;
    transition: var(--transition-colors);
}

.section-header .view-all:hover {
    color: var(--brand-gold-900);
}

.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.news-card-modern {
    background: var(--neutral-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    cursor: pointer;
    border: var(--border-width-2) solid transparent;
}

.news-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-gold-900);
}

.news-card-modern .news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gradient-navy-to-dark);
}

.news-card-modern .news-content {
    padding: var(--space-5);
}

.news-card-modern .news-source {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--brand-gold-900);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-2);
}

.news-card-modern .news-title {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    color: var(--brand-navy-900);
    margin: 0 0 var(--space-3) 0;
    line-height: var(--line-height-normal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-modern .news-description {
    font-size: var(--font-size-sm);
    color: var(--neutral-600);
    line-height: var(--line-height-relaxed);
    margin: 0 0 var(--space-3) 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-modern .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-xs);
    color: var(--neutral-500);
    padding-top: var(--space-3);
    border-top: var(--border-width-1) solid var(--neutral-200);
}

@media (max-width: 768px) {
    .content-wrapper-full {
        padding: var(--space-5) var(--space-4);
    }

    .news-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .section-header h2 {
        font-size: var(--font-size-xl);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gold {
    color: var(--brand-gold-900) !important;
}

.text-navy {
    color: var(--brand-navy-900) !important;
}

.bg-gold {
    background-color: var(--brand-gold-900) !important;
}

.bg-navy {
    background-color: var(--brand-navy-900) !important;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--brand-navy-900);
    color: var(--neutral-white);
    margin-top: var(--space-16);
}

.footer-main {
    padding: var(--space-12) var(--space-6);
    max-width: var(--container-2xl);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-10);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
    align-items: center;
}

.footer-heading {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    color: var(--brand-gold-900);
    margin: 0 0 var(--space-3) 0;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid rgba(255, 184, 28, 0.2);
    text-align: center;
}

.footer-description,
.footer-text {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-2);
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--neutral-white);
    transition: var(--transition-slow);
}

.social-link:hover {
    background: var(--brand-gold-900);
    color: var(--brand-navy-900);
    transform: translateY(-2px);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-1);
    align-items: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-colors);
    padding-left: 0;
    text-align: center;
}

.footer-nav a:hover {
    color: var(--brand-gold-900);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: var(--border-width-1) solid rgba(255, 184, 28, 0.3);
    padding: var(--space-6);
}

.footer-bottom-content {
    max-width: var(--container-2xl);
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-xs);
    line-height: var(--line-height-relaxed);
}

.footer-bottom-content p {
    margin: 0 0 var(--space-2) 0;
}

.footer-bottom-content p:last-child {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-main {
        padding: var(--space-8) var(--space-4);
    }

    .footer-bottom {
        padding: var(--space-5) var(--space-4);
    }
}


/* ============================================
   LIVE GAME BANNER - Full Width During Live Games
   ============================================ */

.live-game-banner {
    background: linear-gradient(135deg, #041E42 0%, #1a3a5c 100%);
    border-bottom: 3px solid #FFB81C;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 100;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.live-banner-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 12px 20px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.live-indicator {
    background: #dc3545;
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.live-indicator.critical {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    animation: pulse-critical 1s infinite;
}

.live-indicator.final {
    background: #6c757d;
    animation: none;
    box-shadow: none;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
    }
    50% {
        opacity: 0.85;
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.8);
    }
}

@keyframes pulse-critical {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(220, 53, 69, 1);
    }
}

.live-teams {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.live-team-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.live-team .team-abbrev {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.live-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-score span:not(.score-separator) {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFB81C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.score-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    font-weight: 300;
}

.live-period {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.live-period .period-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-period .period-time {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

.game-thread-btn {
    background: #FFB81C;
    color: #041E42;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.game-thread-btn:hover {
    background: #fff;
    color: #041E42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Live Event Banner (Goal notifications) */
.live-event {
    background: rgba(255, 184, 28, 0.15);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid rgba(255, 184, 28, 0.3);
    animation: slideInEvent 0.3s ease;
}

@keyframes slideInEvent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-event .event-icon {
    font-size: 18px;
    animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.live-event .event-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   PRE-GAME COUNTDOWN WIDGET - Sidebar Mode
   ============================================ */

.pregame-widget {
    background: linear-gradient(135deg, #041E42 0%, #0a2d4d 100%);
    border: 2px solid #FFB81C;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(4, 30, 66, 0.3);
}

.pregame-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pregame-icon {
    font-size: 20px;
}

.pregame-title {
    color: #FFB81C;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pregame-matchup {
    margin-bottom: 16px;
}

#pregame-matchup-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.pregame-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-time {
    font-size: 2rem;
    font-weight: 900;
    color: #FFB81C;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 8px rgba(255, 184, 28, 0.3);
}

.pregame-thread-btn {
    display: inline-block;
    background: #FFB81C;
    color: #041E42;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.pregame-thread-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for Live Game Banner */
@media (max-width: 768px) {
    .live-game-banner {
        width: 100%;
        max-width: 100vw;
    }

    .live-banner-main {
        flex-direction: column;
        gap: 10px;
        padding: 12px 12px;
        width: 100%;
        max-width: 100%;
    }

    .live-indicator {
        order: -1;
    }

    .live-teams {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .live-team-logo {
        width: 36px;
        height: 36px;
    }

    .live-team .team-abbrev {
        font-size: 12px;
    }

    .live-score {
        gap: 6px;
    }

    .live-score span:not(.score-separator) {
        font-size: 1.75rem;
    }

    .live-period {
        flex-direction: row;
        gap: 8px;
        padding: 6px 10px;
    }

    .live-period .period-label {
        font-size: 11px;
    }

    .live-period .period-time {
        font-size: 16px;
    }

    .game-thread-btn {
        width: calc(100% - 24px);
        max-width: 280px;
        text-align: center;
        padding: 8px 16px;
        font-size: 13px;
    }

    .live-event {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 8px 12px;
    }

    .live-event .event-text {
        font-size: 13px;
    }

    .pregame-widget {
        margin: 0 16px 20px 16px;
    }
}

/* ============================================
   FAN ENGAGEMENT GRID - Twitter + Player Stats
   ============================================ */

.fan-engagement-section {
    padding: var(--space-8) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 3px solid var(--brand-gold-900);
}

.engagement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.engagement-column {
    background: white;
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow: 0 4px 12px rgba(4, 30, 66, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.engagement-column:hover {
    box-shadow: 0 8px 24px rgba(4, 30, 66, 0.12);
    transform: translateY(-2px);
}

.section-header-engagement {
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--brand-gold-900);
}

.section-header-engagement h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #041E42;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-engagement h2 .arrow {
    color: var(--brand-gold-900);
    font-weight: 400;
}

.engagement-content {
    min-height: 400px;
}

/* Mobile: Stack vertically */
@media (max-width: 1024px) {
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

