/* Base CSS Theme Overlay */
:root {
    --primary-blue: #3b5bdb;
    --accent-blue: #2563EB;
    --header-bg: #0A1118;
    --body-bg: #F1F5F9;
    --card-bg: #FFFFFF;
    --text-dark: #1E293B;
    --text-light: #FFFFFF;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --transition-smooth: 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    overflow-x: clip;
    width: 100%;
}
body {
    background-color: var(--body-bg);
    color: var(--text-dark);
    line-height: 1.5;
}

/* ==== TOP TICKER ==== */
.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-ticker {
    background-color: var(--accent-blue);
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    border-bottom: 3px solid #cbd5e1; /* Metallic fallback */
    border-image: linear-gradient(90deg, #94a3b8, #f1f5f9, #94a3b8, #e2e8f0, #cbd5e1, #94a3b8) 1;
}

.ticker-content {
    display: flex;
    animation: ticker 25s linear infinite;
}

.ticker-content span {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.diamond {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 1rem;
    font-size: 0.6rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* ==== NAVBAR ==== */
.navbar {
    background-color: var(--header-bg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--accent-blue);
    border-image: linear-gradient(90deg, #0f172a, var(--accent-blue), #60a5fa, var(--accent-blue), #0f172a) 1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-light);
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.25em;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.5rem 0;
    transition: color var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link:hover {
    color: var(--text-light);
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--header-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 3px solid var(--accent-blue); /* Distinctive top border indicating active */
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all var(--transition-smooth);
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    padding-left: 1.8rem;
}

.lock-icon a {
    font-size: 1rem;
    color: #64748B;
    margin-left: 1rem;
}
.lock-icon a:hover {
    color: var(--text-light);
}

/* ==== MAIN CONTENT ==== */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

/* UNIFIED SECTION HEADER */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

.section-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    color: var(--header-bg);
    text-transform: uppercase;
    margin: 0;
}

.title-accent {
    width: 5px;
    height: 1.25em;
    background-color: var(--accent-blue);
    display: inline-block;
    border-radius: 2px;
    margin-right: 1rem;
}

.scores-carousel-nav {
    display: flex;
    gap: 0.6rem;
}

.scores-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--accent-blue);
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.scores-btn:hover {
    background: var(--accent-blue);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .scores-btn {
        display: none !important;
    }
}

/* SCORES SCROLLER */
.scores-scroller-wrapper {
    position: relative;
    overflow: hidden;
}

.scores-scroller {
    display: flex;
    gap: 1.25rem; /* Spacing between cards */
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    padding: 0.5rem 0.2rem; /* Give shadow room to breathe */
}

.recent-scores-container {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.recent-scores-container.loaded {
    opacity: 1;
}

.score-card {
    flex: 0 0 calc((100% - (1.25rem * 3)) / 4); /* Display 4 cards factoring gap calculation */
    min-width: 260px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
}

.score-header {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.75rem;
    font-weight: 800;
}

.team-level {
    color: var(--accent-blue);
    letter-spacing: 0.08em;
}

.game-date {
    color: var(--text-dark);
}

.score-table {
    width: 100%;
    border-collapse: collapse;
}

.score-table th {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.5rem 0.5rem 0.2rem;
    text-align: center;
}

.score-table th:first-child {
    text-align: left;
    padding-left: 1.2rem;
}

.score-table td {
    font-size: 0.9rem;
    padding: 0.6rem 0.5rem;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid #f8fafc;
}

.score-table td:first-child {
    text-align: left;
    padding-left: 1.2rem;
    font-weight: 700;
}

.team-bold {
    color: var(--text-dark) !important;
    font-weight: 800 !important;
}

.runs {
    background-color: #f1f5f9; /* highlight column background slightly */
    font-weight: 600;
}

/* ==== FEATURED STORY ==== */
.featured-story-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.featured-news-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.featured-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.featured-image-panel {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--border-color);
    background-size: cover;
    background-position: center top; /* Show upper portion of sports images */
    background-repeat: no-repeat;
    border-bottom: 4px solid var(--accent-blue);
}

.featured-content {
    padding: 2.5rem;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
}

.featured-meta-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.featured-type-badge {
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.featured-date-badge, .featured-author-badge {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-story-title {
    color: var(--text-dark);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.featured-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: gap var(--transition-smooth), color var(--transition-smooth);
    width: fit-content;
}

.featured-read-btn:hover {
    gap: 0.8rem;
    color: #1d4ed8;
}

/* ==== LATEST NEWS GRID ==== */
.latest-news-container {
    margin-top: 1rem;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.news-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #cbd5e1;
    border-bottom: 4px solid var(--accent-blue);
}

.thumb-1 { background: linear-gradient(135deg, #3b82f6, #1e40af); }
.thumb-2 { background: linear-gradient(135deg, #10b981, #047857); }
.thumb-3 { background: linear-gradient(135deg, #f59e0b, #b45309); }
.thumb-4 { background: linear-gradient(135deg, #ef4444, #b91c1c); }

.news-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    gap: 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.news-category {
    color: var(--accent-blue);
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ==== UPCOMING EVENTS BAND ==== */
.upcoming-events-band {
    background-color: var(--header-bg); /* Dark theme #0A1118 */
    width: 100%;
    border-top: 4px solid var(--accent-blue);
    margin-top: 3rem;
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.dark-mode-title {
    color: var(--text-light) !important;
}

.events-scroller {
    display: flex;
    gap: 1.5rem; /* 24px */
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1.5rem 0.2rem;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.events-scroller::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.events-card {
    flex: 0 0 calc((100% - (1.5rem * 2)) / 3); /* Exactly 3 cards visible */
    min-width: 320px; /* Minimum width for smaller desktops */
    background: #111827; 
    border-radius: 8px;
    display: flex;
    transition: transform var(--transition-smooth), background 0.2s;
    cursor: default;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.events-card:hover {
    background: #1F2937;
    transform: translateY(-4px);
}

/* Matchup Card */
.matchup-card {
    /* flex width inherited from .events-card */
    flex-direction: row;
    align-items: stretch;
}

.matchup-team {
    padding: 1.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100px;
    flex-shrink: 0;
}

.team-name {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-align: center;
    line-height: 1.2;
}

.matchup-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    background: rgba(0,0,0,0.2);
    border-left: 1px solid rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.03);
}

.evt-date-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}
.evt-month {
    font-weight: 800;
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.evt-week {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.evt-vs {
    font-weight: 900;
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
}
.evt-time {
    font-weight: 800;
    color: var(--accent-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.evt-meta {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
}

/* Standard Event Card */
.standard-event-card {
    /* flex width inherited from .events-card */
    flex-direction: row;
    align-items: stretch;
}

.event-clean-date {
    background: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    min-width: 85px;
    border-right: 1px solid rgba(255,255,255,0.03);
}
.ec-month { font-size: 0.75rem; font-weight: 800; color: #94a3b8; letter-spacing: 0.05em; margin-bottom: 0.1rem;}
.ec-day { font-size: 1.8rem; font-weight: 900; color: var(--text-light); line-height: 1;}
.ec-week { font-size: 0.65rem; font-weight: 700; color: #64748b; text-transform: uppercase; margin-top: 0.25rem; letter-spacing: 0.05em;}

.event-clean-details {
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.align-center-nav {
    align-items: center;
}

.view-all-events-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-right: 1.5rem;
    transition: color var(--transition-smooth);
}

.view-all-events-link:hover {
    color: #4f83f0;
    text-decoration: underline;
}

/* ==== LATEST PHOTOS ==== */
.view-all-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: color var(--transition-smooth);
}

.view-all-link:hover {
    color: #4f83f0;
    text-decoration: underline;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.photo-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.photo-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

/* Gradients acting as placeholder photo textures */
.photo-1 { background: linear-gradient(135deg, #0f172a, #334155); }
.photo-2 { background: linear-gradient(135deg, #1e293b, #475569); }
.photo-3 { background: linear-gradient(135deg, #020617, #1e293b); }
.photo-4 { background: linear-gradient(135deg, #0f172a, #1e293b); }

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    opacity: 0.85;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
    transition: opacity 0.3s ease;
}

.photo-card:hover .photo-thumbnail {
    transform: scale(1.05); /* Hover zoom */
}

.photo-card:hover .photo-overlay {
    opacity: 1; /* Darken border on hover */
}

.photo-overlay i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
}

.photo-caption {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* ==== CHAMPIONSHIPS BANNERS ==== */
.championships-container {
    margin-top: 1rem;
    padding-bottom: 4rem;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.banner-item {
    position: relative;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.15)); /* Fixed static shadow */
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Achievement row divider — gradient royal blue line */
.banners-row-divider {
    height: 2px;
    margin: 4rem 10% 4rem;
    background: linear-gradient(
        to right,
        transparent,
        rgba(37, 99, 235, 0.4) 20%,
        rgba(59, 130, 246, 0.9) 50%,
        rgba(37, 99, 235, 0.4) 80%,
        transparent
    );
    border-radius: 2px;
}

/* Achievement banners — padded so images sit smaller, matching top row scale */
.banners-grid--achievements .banner-item {
    padding: 0 0.75rem;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.banners-grid--achievements .banner-item:hover {
    transform: translateY(-6px) scale(1.03);
    filter: drop-shadow(0 14px 20px rgba(0,0,0,0.35));
}


/* ==== SPONSORSHIPS ==== */
.sponsorships-section {
    padding-top: 0;
    padding-bottom: 1.5rem;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08); /* Light translucent white */
    margin: 2rem 0 4rem 0;
}

.sponsorship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sponsor-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sponsor-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.05); /* hide blurred edges */
}

.bg-1, .bg-2, .bg-3, .bg-4 { background: linear-gradient(135deg, #1e3a8a, #0f172a); }

.sponsor-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(to top, rgba(2,6,23,0.95) 0%, rgba(2,6,23,0.4) 100%);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sponsor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: auto;
}

.sponsor-label {
    color: var(--accent-blue);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.sponsor-icon {
    color: var(--accent-blue);
    font-size: 1rem;
}

.sponsor-title {
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.sponsor-subtext {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==== PREMIUM FOOTER ==== */
.premium-footer {
    background-color: #020617; /* Very dark navy / black */
    color: #94A3B8;
    border-top: 4px solid var(--accent-blue);
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

/* Branding Col */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.brand-sub {
    color: var(--accent-blue);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.brand-main {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.contact-item i {
    color: var(--accent-blue);
    margin-top: 0.2rem;
}

/* Links Col */
.footer-header {
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: color var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--accent-blue);
}

/* Booster Col */
.booster-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
}

.booster-title {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.booster-subtext {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.btn-booster {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 800;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color var(--transition-smooth);
}

.btn-booster:hover {
    background-color: #1d4ed8;
}

/* Copyright Strip */
.footer-bottom-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.copyright-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #64748b;
}

.dac-logo-box {
    display: flex;
    align-items: center;
}

.dac-footer-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* ==== MOBILE MENU OVERRIDES ==== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.mobile-menu-btn.active .bar:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.mobile-menu-btn.active .bar:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .bar:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

@media screen and (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    /* FORCED Mobile Overrides: Make Featured Card identical to News Cards on ALL mobile/tablet views */
    .featured-news-card {
        border-radius: 4px !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.03) !important;
    }
    
    .featured-content {
        padding: 1.25rem !important;
    }
    
    .featured-story-title {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
        line-height: 1.4 !important;
        font-weight: 800 !important;
    }

    .featured-meta-row {
        gap: 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }

    .featured-type-badge, .featured-date-badge, .featured-author-badge {
        font-size: 0.75rem !important;
    }

    .featured-read-btn {
        display: none !important;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: row;
        justify-content: flex-end;
        align-items: stretch;
        padding: 0;
        overflow: hidden;
        transition: right 0s 0.4s, opacity 0.4s ease;
        opacity: 0;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
        transition: right 0s 0s, opacity 0.4s ease;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        width: 85%;
        max-width: 380px;
        height: 100%;
        background: var(--header-bg);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: -15px 0 40px rgba(0,0,0,0.6);
        padding: 6rem 2.5rem 4rem;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        margin: 0;
    }

    .nav-links.active .nav-list {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        padding: 0.5rem 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        min-width: 100%;
        border-top: none;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
        padding-left: 1.25rem;
        transition: max-height 0.4s ease, margin-top 0.4s ease;
    }

    .nav-item.dropdown.open .dropdown-menu {
        max-height: 380px;
        margin-top: 0.75rem;
        border-left-color: var(--accent-blue);
    }

    .nav-item.dropdown.open .nav-link {
        color: var(--accent-blue);
    }

    .nav-item.dropdown.open .nav-link i {
        transform: rotate(180deg);
    }

    .nav-item.dropdown .nav-link i {
        transition: transform 0.3s ease;
    }

    .dropdown-link {
        padding: 0.75rem 0;
        font-size: 1.05rem;
        color: var(--text-muted);
    }
    
    .hero-title {
        font-size: 2rem;
    }

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

    .news-grid .news-card:nth-child(n+5) {
        display: none;
    }
    
    .banners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .sponsorship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .score-card {
        flex: 0 0 calc((100% - 1.25rem) / 2); /* 2 columns on tablet */
    }
    
    .events-card {
        flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 columns on tablet */
        min-width: 0;
    }
}

@media screen and (max-width: 600px) {
    .news-grid, .photos-grid {
        grid-template-columns: 1fr;
    }
    
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sponsorship-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-strip {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .score-card {
        flex: 0 0 100%; /* Match identical width of stories without gap peeking */
    }
    
    .events-card {
        flex: 0 0 100%; /* Match identical width of stories without gap peeking */
        min-width: 0;
    }

    .content-wrapper, .events-container, .footer-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .nav-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
/* ==== STORY PAGE ==== */
.story-page-wrapper {
    max-width: 1400px;
    padding-top: 2rem;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* Left Column */
/* =========================================
   INTEGRATED CONTEXTUAL BREADCRUMBS
   ========================================= */
.hero-breadcrumb-wrap {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: flex-start;
}
.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.hero-breadcrumb i { font-size: 0.7rem; transition: transform 0.2s ease; }
.hero-breadcrumb:hover { 
    color: #fff; 
    background: rgba(255,255,255,0.1); 
    border-color: rgba(255,255,255,0.2); 
}
.hero-breadcrumb:hover i { transform: translateX(-4px); }

.page-breadcrumb-wrap {
    margin-bottom: 1.25rem;
    display: flex;
}
.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s ease;
}
.page-breadcrumb i { font-size: 0.7rem; transition: transform 0.2s ease; }
.page-breadcrumb:hover { 
    color: #0f172a;
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.1);
}
.page-breadcrumb:hover i { transform: translateX(-4px); }



.story-hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #cbd5e1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.story-meta-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.story-category {
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    border: 1px solid var(--accent-blue);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}
.story-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.story-boxscore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-left: 0.25rem;
}

.story-boxscore-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}


.story-title {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* Rich Text Styling (.tiptap-content) */
.story-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    padding-bottom: 4rem;
}

.story-body p {
    margin-bottom: 1.5rem;
}
.story-body h1, .story-body h2, .story-body h3, .story-body h4 {
    color: var(--text-dark);
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.story-body h2 { font-size: 1.8rem; border-bottom: 2px solid #e2e8f0; padding-bottom: 0.5rem; }
.story-body h3 { font-size: 1.5rem; }
.story-body ul, .story-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.story-body li {
    margin-bottom: 0.5rem;
}
.story-body blockquote {
    border-left: 4px solid var(--accent-blue);
    background: #f8fafc;
    padding: 1.5rem;
    font-style: italic;
    font-size: 1.15rem;
    color: #475569;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}
.story-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}
.story-body a {
    color: var(--accent-blue);
    text-decoration: underline;
}
.story-body hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 3rem 0;
}

/* Right Column */
.story-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    margin-bottom: 1.5rem;
}

.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sidebar-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: transform var(--transition-smooth);
}
.sidebar-card:hover {
    transform: translateX(4px);
}

.sidebar-thumb {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    flex-shrink: 0;
    background-color: #e2e8f0;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
}

.sidebar-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.3rem;
}
.sidebar-cat {
    color: var(--accent-blue);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.sidebar-date {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
}
.sidebar-title-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
    .story-layout {
        grid-template-columns: 1fr;
    }
    .story-sidebar {
        position: static;
        margin-top: 2rem;
    }
}
/* Social Share */
.story-social-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.share-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-right: 0.5rem;
}
.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: white;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}
.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.share-fb { background-color: #1877F2; }
.share-x { background-color: #1DA1F2; }
.share-email { background-color: #64748B; }
.share-copy {
    width: auto;
    border-radius: 20px;
    padding: 0 1rem;
    gap: 0.5rem;
    background-color: var(--card-bg);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 0.8rem;
}
.share-copy:hover {
    background-color: #f8fafc;
    color: var(--accent-blue);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CANCELLED GAMES MODAL
   ───────────────────────────────────────────────────────────────────────────── */
.cancel-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 1rem;
}

.cancel-modal-content {
  position: relative;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(239, 68, 68, 0.4);
  box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.25);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  transform: translateY(20px);
  animation: slideUpModal 0.4s ease forwards;
}

@keyframes slideUpModal {
  to { transform: translateY(0); }
}

.cancel-modal-header {
  background: rgba(239, 68, 68, 0.1);
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
  padding: 1.5rem;
  text-align: center;
}

.cancel-modal-icon {
  font-size: 2.5rem;
  color: #ef4444;
  margin-bottom: 0.5rem;
  animation: pulseWarning 2s infinite;
}

@keyframes pulseWarning {
  0%   { filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0)); }
  50%  { filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.6)); }
  100% { filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0)); }
}

.cancel-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #f1f5f9;
  text-transform: uppercase;
  margin: 0;
}

.cancel-modal-body {
  padding: 1.5rem;
}

.cancel-modal-subtext {
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.cancel-modal-subtext strong {
  color: #ef4444;
}

.cancel-modal-list {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  max-height: 250px;
  overflow-y: auto;
}

.cancel-modal-date {
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.25rem;
}

.cancel-modal-game {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cancel-modal-game:last-child {
  margin-bottom: 0;
}

.cancel-modal-team {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.cancel-modal-vs {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.95rem;
}

.cancel-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cancel-modal-close:hover {
  color: #f1f5f9;
  transform: scale(1.1);
}

/* ==== NEWS ARCHIVE PORTAL ==== */
.news-archive-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.archive-item {
    display: flex;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    min-height: 180px;
}

.archive-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--accent-blue);
}

.archive-thumb {
    width: 32%;
    background-color: var(--border-color);
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    border-right: 4px solid var(--accent-blue);
    flex-shrink: 0;
}

.archive-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.archive-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.archive-category {
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.archive-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.archive-title {
    color: var(--text-dark);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.archive-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.load-more-container {
    text-align: center;
    margin-top: 2.5rem;
}

.load-more-btn {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 0.8rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .archive-item {
        flex-direction: column;
    }
    .archive-thumb {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-right: none;
        border-bottom: 4px solid var(--accent-blue);
    }
    .archive-content {
        padding: 1.5rem;
    }
}

/* ==== MULTI-VIEW ARCHIVE TOOLBAR ==== */
.archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-left-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.toolbar-select {
    appearance: none;
    background: var(--body-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    min-width: 140px;
}

.toolbar-select:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.select-caret {
    position: absolute;
    right: 1rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    pointer-events: none;
}

.toolbar-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.toolbar-search {
    background: var(--body-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    font-size: 0.9rem;
    min-width: 200px;
    color: var(--text-dark);
}

.toolbar-search:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.toolbar-view-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-type-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1.2;
    margin-right: 0.5rem;
    text-align: right;
}

.view-btn {
    background: var(--body-bg);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
}

.view-btn:hover {
    background: #e2e8f0;
}

.view-btn.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* ==== GRID VIEW ==== */
.news-archive-container.view-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Base reset for list/grid items if switching classes dynamically */
.news-archive-container.view-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.read-more-link {
    color: var(--accent-blue);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

/* ==== TABLE VIEW ==== */
.view-table {
    display: block;
    width: 100%;
    margin-top: 1rem;
}

.archive-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.archive-table thead {
    background: var(--accent-blue);
    color: white;
}

.archive-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.archive-table tr:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.archive-table td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.table-date {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    width: 15%;
}

.table-headline {
    font-weight: 800;
    color: var(--accent-blue);
    font-size: 1.05rem;
    text-decoration: none;
}
.table-headline:hover {
    text-decoration: underline;
}

.table-sport {
    width: 15%;
    text-align: right;
}

/* Badge styling for all views */
.sport-badge {
    background: #e2e8f0;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    display: inline-block;
}
