:root {
    --orange-start: #FF7300;
    --orange-end: #CC2E00;
    --dark-bg: #1a1a1a;
    --text-main: #111;
    --text-light: #666;
    --border-color: #e0e0e0;
    --font-headline: 'Anton', sans-serif;
    --font-subhead: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: #f0f2f5;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--text-main);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: var(--orange-end);
}

a:hover {
    color: var(--orange-end);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--orange-start) !important;
    box-shadow: 0 0 0 3px rgba(204, 46, 0, 0.2);
}

/* Sticky Header */
/* Old Sticky Header Removed */

/* ESPN-Style Header */
.site-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: none;
    position: relative;
    margin-bottom: 40px;
}

/* Top League Bar */
.league-bar {
    background: #000;
    color: #ccc;
    font-size: 0.75rem;
    font-family: var(--font-body);
    border-bottom: 1px solid #222;
}

.league-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 36px;
}

.league-nav {
    display: flex;
    gap: 20px;
}

.league-nav a {
    color: #ccc;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.league-nav a:hover {
    color: #FFD700;
    /* Yellowish Gold */
}

.user-tools {
    display: flex;
    gap: 15px;
    align-items: center;
}

.subscribe-btn {
    background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.subscribe-btn:hover {
    color: white;
    opacity: 0.9;
}

/* Main Navigation Bar */
.main-nav-bar {
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    height: 60px;
}

/* Logo Button Styles */
.nav-logo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 30px;
    background: linear-gradient(to right, var(--orange-start), var(--orange-end));
    transform: skewX(-20deg);
    border-radius: 4px;
    text-decoration: none;
    margin-right: 20px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    border: none;
}

.nav-logo-btn:hover {
    transform: skewX(-20deg) scale(1.03);
    filter: brightness(1.1);
}

.nav-logo-text {
    transform: skewX(20deg);
    /* Counter skew */
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-logo-text .wrestling {
    color: var(--logo-text-color);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.15);
    margin-right: 2px;
}

.nav-logo-text .wall {
    color: white;
}

/* Sticky State for Logo Button */
.main-nav-bar.scrolled .nav-logo-btn {
    background: white;
    border: 1px solid #eee;
}

.main-nav-bar.scrolled .nav-logo-text .wrestling {
    color: var(--orange-end);
    text-shadow: none;
}

.main-nav-bar.scrolled .nav-logo-text .wall {
    color: black;
}

.primary-nav {
    display: flex;
    gap: 10px;
    /* Reduced gap for a tighter button group */
    flex: 1;
    align-items: center;
}

.primary-nav a {
    font-family: var(--font-subhead);
    font-weight: 700;
    font-size: 1rem;
    color: #444;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
    transform: skewX(-20deg);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
    background: #f4f4f4;
    /* Subtle background for inactive state */
    border: 1px solid #e0e0e0;
    /* Subtle border definition */
}

.primary-nav a span {
    display: inline-block;
    transform: skewX(20deg);
}

.primary-nav a:hover,
.primary-nav a.active {
    color: white;
    background: var(--orange-end);
    border-color: var(--orange-end);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
    margin-top: 5px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-family: var(--font-subhead);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transform: none !important;
    /* Override skew */
    background: white;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--orange-end);
    color: white;
}

.nav-search form {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e0e0e0;
    transform: skewX(-20deg);
    padding: 6px 12px;
    width: 220px;
    transition: all 0.3s ease;
}

.nav-search form:focus-within {
    border-color: var(--orange-end);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.nav-search input {
    border: none;
    background: transparent;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    transform: skewX(20deg);
    font-family: var(--font-subhead);
    font-weight: bold;
    color: #333;
}

.nav-search input::placeholder {
    color: #999;
    font-weight: normal;
}

.nav-search button {
    background: var(--orange-end);
    border: none;
    cursor: pointer;
    color: white;
    padding: 6px 12px;
    margin-left: 8px;
    border-radius: 2px;
    transform: none;
    /* Inherit parent skew (-20deg) */
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-search button svg {
    transform: skewX(20deg);
    /* Counter-skew icon */
    fill: currentColor;
}

.nav-search button:hover {
    background: black;
    color: white;
}

/* Ticker Enhancements */
.breaking-ticker {
    background: var(--orange-end);
    color: white;
    padding: 0;
    /* Remove padding to let label fill height */
    font-family: var(--font-subhead);
    font-weight: bold;
    display: flex;
    align-items: stretch;
    /* Stretch items to fill height */
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    height: 40px;
    overflow: hidden;
}

.ticker-label {
    background: #000;
    /* Solid black background */
    color: var(--orange-end);
    margin-right: 0;
    padding: 0 20px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
}

.ticker-label::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 100%;
    background: #000;
    transform: skewX(-20deg);
    z-index: -1;
}

.ticker-content {
    display: flex;
    align-items: center;
    padding-left: 20px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

/* Live Dot Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

/* Global Headline Prefix */
.headline-prefix {
    font-weight: 900;
    color: var(--orange-end);
    margin-right: 4px;
    text-transform: uppercase;
}

/* HERO GRID */
/* HERO GRID (Standard 2-Col for Search/Archives) */
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    height: 550px;
    margin: 0 20px 40px;
}

/* HERO GRID HOME (3-Col with Event Box) */
.hero-grid-home {
    display: grid;
    grid-template-columns: 300px 1fr 350px;
    gap: 15px;
    height: 550px;
    margin: 0 20px 40px;
}

@media (max-width: 1200px) {
    .hero-grid-home {
        grid-template-columns: 1fr 1fr;
        height: auto;
        grid-template-areas:
            "main main"
            "event stack";
    }

    .hero-grid-home .hero-main {
        grid-area: main;
        height: 400px;
    }

    .hero-grid-home .hero-event-box {
        grid-area: event;
        height: 400px;
    }

    .hero-grid-home .hero-stack {
        grid-area: stack;
        height: 400px;
    }

    /* Standard Grid Responsive */
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-grid .hero-main,
    .hero-grid .hero-stack {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-grid-home {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "event"
            "stack";
    }

    .hero-grid-home .hero-main,
    .hero-grid-home .hero-event-box,
    .hero-grid-home .hero-stack {
        height: auto;
        min-height: 300px;
    }

    .hero-grid .hero-main,
    .hero-grid .hero-stack {
        height: auto;
        min-height: 300px;
    }
}



.hero-main,
.hero-sub {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

/* Zoom effect on hover */
.hero-main:hover,
.hero-sub:hover {
    /* We can't scale the container because it has overflow hidden, 
       so we need to scale the background or use a pseudo element. 
       Since background-image is on the element, let's use a simple brightness filter instead 
       or just accept that scaling the whole block might clip. 
       Actually, let's just add a subtle brightness boost. */
    filter: brightness(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    z-index: 1;
}

.tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange-end);
    color: white;
    padding: 5px 15px;
    font-family: var(--font-subhead);
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    z-index: 10;
    letter-spacing: 1px;
    transform: skewX(-20deg);
    /* Match site style */
}

.hero-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.hero-headline {
    font-family: var(--font-headline);
    font-size: 4rem;
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
    /* Strong drop shadow for readability */
    text-shadow: 2px 2px 0 #000, 4px 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-headline a {
    text-decoration: none;
    color: inherit;
}

.hero-headline .headline-prefix {
    background: var(--orange-end);
    color: white;
    padding: 2px 10px;
    margin-right: 10px;
    display: inline-block;
    transform: skewX(-10deg);
    /* Reset text shadow for inside the box */
    text-shadow: none;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.hero-sub-content h3 .headline-prefix {
    background: var(--orange-end);
    color: white;
    padding: 1px 8px;
    margin-right: 6px;
    display: inline-block;
    transform: skewX(-10deg);
    text-shadow: none;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.hero-headline .headline-suffix {
    color: #fff;
}

.hero-headline a:hover .headline-prefix {
    background: white;
    color: var(--orange-end);
}

.hero-headline a:hover .headline-suffix {
    color: var(--orange-start);
}

/* Hero Stack (Right Side) */
.hero-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 5px;
    margin-right: 15px;
}

/* Mobile Navigation Drawer */
.mobile-nav {
    display: none;
    background: #111;
    color: white;
    padding: 20px;
    border-top: 1px solid #333;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    color: #ccc;
    font-family: var(--font-subhead);
    font-size: 1.2rem;
    border-bottom: 1px solid #222;
    text-transform: uppercase;
}

.mobile-nav a:hover {
    color: var(--orange-end);
    padding-left: 10px;
}

.mobile-league-links {
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid #333;
    background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
    border-radius: 4px;
}

.mobile-league-links span {
    display: block;
    color: white;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.mobile-league-links a {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.mobile-league-links a:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.2);
    padding-left: 10px;
}

/* Sticky Header State (.scrolled) */
.main-nav-bar {
    transition: background 0.3s, box-shadow 0.3s;
}

.main-nav-bar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.main-nav-bar.scrolled .nav-logo {
    color: #CC2E00 !important;
    /* Force burnt orange */
}

.main-nav-bar.scrolled .nav-logo .logo-prefix,
.main-nav-bar.scrolled .nav-logo span:first-child:not(.wall-text) {
    color: #CC2E00 !important;
    -webkit-text-fill-color: #CC2E00 !important;
    text-shadow: none !important;
    background: none !important;
}

.main-nav-bar.scrolled .nav-logo .wall-text {
    color: #000 !important;
    background: none !important;
    -webkit-text-fill-color: #000 !important;
}

.main-nav-bar.scrolled .primary-nav a {
    color: rgba(255, 255, 255, 0.9);
}

.main-nav-bar.scrolled .primary-nav a:hover,
.main-nav-bar.scrolled .primary-nav a.active {
    color: white;
    border-bottom-color: white;
}



.main-nav-bar.scrolled .mobile-menu-btn {
    color: white;
}

/* Responsive Header */
@media (max-width: 1024px) {
    .league-bar {
        display: none;
    }

    .primary-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-logo {
        margin-right: 0;
        font-size: 1.5rem;
    }

    .nav-search {
        width: auto;
    }

    .nav-search form {
        width: auto;
        padding: 5px;
        background: transparent;
    }

    .nav-search input {
        display: none;
    }

    .nav-search button {
        font-size: 1.2rem;
    }
}

.hero-sub {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

.hero-sub-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.hero-sub h3 {
    font-family: var(--font-subhead);
    font-size: 1.8rem;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-sub h3 a:hover {
    color: var(--orange-end);
}

/* NEWSLETTER BANNER */
.newsletter-banner {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    padding: 50px 20px;
    margin: 0 20px 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.newsletter-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    font-family: var(--font-headline);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 0 #000;
}

.newsletter-content p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-family: var(--font-subhead);
}

.newsletter-content form {
    display: flex;
    gap: 0;
    /* Gap handled by skew */
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transform: skewX(-20deg);
    margin-right: -10px;
    /* Overlap for seamless look */
    padding-left: 30px;
    /* Compensate for skew */
}

.newsletter-content button {
    background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 900;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-family: var(--font-subhead);
    font-size: 1.1rem;
    text-transform: uppercase;
    transform: skewX(-20deg);
    transition: all 0.2s;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    /* Shadow over input */
}

.newsletter-content button:hover {
    filter: brightness(1.1);
    transform: skewX(-20deg) scale(1.05);
}

/* CONTENT WALL */
.content-wall {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    padding: 0 20px;
    margin-bottom: 60px;
}

/* Column 1: The Wire */
.col-wire {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--orange-end);
}

.section-title {
    font-family: var(--font-headline);
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.news-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f4f4f4;
    transition: transform 0.2s;
}

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

.news-item:hover {
    transform: translateX(5px);
}

.news-thumb {
    width: 80px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
    transform: skewX(-10deg);
    /* Slight skew */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.news-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-family: var(--font-headline);
    font-size: 1.8rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transform: skewX(-10deg);
}

.news-meta {
    display: block;
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-subhead);
}

.news-meta span {
    color: var(--orange-end);
}

.news-link {
    font-family: var(--font-subhead);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    color: #111;
    display: block;
    text-decoration: none;
}

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

/* Column 2: Headlines */
.col-headlines {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #000;
    /* Black top for contrast */
}

.headline-card {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.headline-card:last-child {
    border-bottom: none;
}

.headline-img {
    width: 220px;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    border-radius: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.headline-card:hover .headline-img {
    transform: scale(1.02);
}

.headline-info {
    flex: 1;
}

.headline-cat {
    display: inline-block;
    background: var(--orange-end);
    color: white;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 8px;
    transform: skewX(-15deg);
}

.headline-cat span {
    display: block;
    transform: skewX(15deg);
    /* Counter skew */
}

.headline-card h4 {
    font-family: var(--font-subhead);
    font-size: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 10px;
}

.headline-card h4 a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.headline-card h4 a:hover {
    color: var(--orange-end);
}

/* Column 3: Rumor Mill */
.col-dirt {
    font-family: var(--font-subhead);
    /* Cleaner font */
    background: #fff;
    /* Clean white background */
    padding: 25px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    border-radius: 4px;
    border-top: 4px solid #000;
}

.col-dirt::before {
    content: 'CONFIDENTIAL';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #d00;
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 900;
    transform: rotate(2deg) skewX(-10deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-family: var(--font-headline);
    letter-spacing: 1px;
}

.section-header {
    font-family: var(--font-headline);
    font-size: 2rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    display: block;
    padding-bottom: 10px;
}

.drudge-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drudge-link {
    font-family: var(--font-subhead);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 12px;
    display: block;
    color: #222;
    /* Dark by default */
    text-decoration: none;
    transition: all 0.2s;
}

.drudge-link:hover {
    background: transparent;
    color: var(--orange-end);
    padding-left: 5px;
    border-bottom-color: var(--orange-end);
}

.ad-block {
    background: #f4f4f4;
    height: 200px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.quick-links li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-end);
    font-weight: 900;
    font-size: 1.2rem;
}

.quick-links a {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    font-family: var(--font-subhead);
    text-decoration: none;
}

.quick-links a:hover {
    color: var(--orange-end);
}

/* Footer */
.site-footer {
    background: #111;
    color: #666;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 4px solid;
    border-image: linear-gradient(to right, var(--orange-start), var(--orange-end)) 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-main {
        height: 500px;
    }

    .hero-stack {
        flex-direction: row;
    }

    .hero-sub {
        height: 250px;
    }

    .content-wall {
        grid-template-columns: 1fr 1fr;
    }

    .col-dirt {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-sub h3 {
        font-size: 1.3rem;
    }

    .content-wall {
        grid-template-columns: 1fr;
    }

    .col-dirt {
        grid-column: span 1;
    }

    .headline-card {
        flex-direction: column;
    }

    .headline-img {
        width: 100%;
        height: 200px;
    }

    .newsletter-content h3 {
        font-size: 2rem;
    }

    .newsletter-content form {
        flex-direction: column;
    }
}

/* Hero Event Box */
.hero-event-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.hero-event-header {
    background: var(--orange-end);
    color: white;
    padding: 15px;
    text-align: center;
    font-family: var(--font-headline);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.hero-event-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
}

.hero-event-logo {
    width: 100px;
    height: 100px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 15px;
    border-radius: 50%;
    background-color: #f4f4f4;
}

.hero-event-info h3 {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    margin: 0 0 5px 0;
    line-height: 1;
}

.hero-event-info h3 a {
    color: #111;
    text-decoration: none;
}

.hero-event-info h3 a:hover {
    color: var(--orange-end);
}

.hero-event-date {
    font-family: var(--font-subhead);
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-event-card-preview {
    width: 100%;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 0.9rem;
    flex: 1;
    overflow-y: auto;
}

.hero-event-card-preview div {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

.hero-event-card-preview div:last-child {
    border-bottom: none;
}

.hero-event-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #111;
    color: white;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-subhead);
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s;
}

.hero-event-btn:hover {
    background: var(--orange-end);
    color: white;
}