/* ========================================
           CSS Variables & Reset
           ======================================== */
        :root {
            --color-bg: #fafafa;
            --color-header: #ffffff;
            --color-footer: #1a1a1a;
            --color-text: #1a1a1a;
            --color-text-secondary: #6b7280;
            --color-accent: #bc5104;
            --color-accent-hover: #9a4203;
            --color-muted: #e5e7eb;
            --color-card: #ffffff;
            --color-surface: #f3f4f6;
            --color-success: #059669;
            --color-danger: #dc2626;
            --color-border: #e5e7eb;
            
            --font-heading: 'Archivo', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            --font-logo: 'Archivo Black', sans-serif;
            
            --content-width: 940px;
            --section-gap: 4rem;
            --transition-base: 0.25s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
        }

        /* ========================================
           Typography
           ======================================== */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            text-align: left;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3rem);
        }

        h2 {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            margin-top: var(--section-gap);
            margin-bottom: 1.5rem;
            scroll-margin-top: 2rem;
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            margin-top: 2rem;
            margin-bottom: 1rem;
            scroll-margin-top: 2rem;
        }

        p {
            text-align: left;
            margin-bottom: 1.25rem;
        }

        a {
            color: var(--color-accent);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color var(--transition-base);
        }

        a:hover {
            color: var(--color-accent-hover);
        }

        a:focus {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }

        strong {
            font-weight: 600;
        }

        ul, ol {
            text-align: left;
            margin-bottom: 1.25rem;
            padding-left: 1.5rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        blockquote {
            text-align: left;
            border-left: 3px solid var(--color-accent);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: var(--color-text-secondary);
        }

        /* ========================================
           Figure & Images
           ======================================== */
        figure {
            margin: 1.5em auto;
            max-width: 100%;
        }

        figure img {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 0 auto;
        }

        figcaption {
            text-align: center;
            font-size: 0.875rem;
            color: var(--color-text-secondary);
            margin-top: 0.75rem;
        }

        /* ========================================
           Layout - Header
           ======================================== */
        .site-header {
            background-color: var(--color-header);
            border-bottom: 1px solid var(--color-muted);
            padding: 1rem 1.5rem;
            position: relative;
            z-index: 100;
        }

        .header-inner {
            max-width: var(--content-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
        }


        .header-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .date-badge {
            font-size: 0.75rem;
            color: var(--color-text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .trust-marker {
            font-size: 0.7rem;
            color: var(--color-text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ========================================
           Layout - Main & Article
           ======================================== */
        main {
            width: 100%;
        }

        article {
            width: 100%;
        }

        /* ========================================
           Layout - Sections
           ======================================== */
        [data-content] {
            max-width: var(--content-width);
            margin-left: auto;
            margin-right: auto;
            padding: 0 1.5rem;
            margin-bottom: var(--section-gap);
        }

        /* Hero breaks out of content width */
        [data-content="hero"] {
            max-width: none;
            padding: 0;
            margin-bottom: 0;
        }

        /* ========================================
           Hero Section
           ======================================== */
        .hero {
            width: 100%;
            padding: 4rem 1.5rem 3rem;
            text-align: center;
            background-color: var(--color-bg);
            background-image: 
                linear-gradient(90deg, var(--color-muted) 1px, transparent 1px),
                linear-gradient(0deg, var(--color-muted) 1px, transparent 1px);
            background-size: 60px 60px;
            background-position: center;
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 70%);
            pointer-events: none;
        }

        .hero > * {
            position: relative;
            z-index: 1;
        }

        .hero-inner {
            max-width: var(--content-width);
            width: 100%;
            margin: 0 auto;
            text-align: center;
        }

        .hero-rubric {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .hero h1 {
            text-align: center;
            margin-bottom: 1.25rem;
        }

        .hero-byline {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            margin-bottom: 2rem;
            text-align: center;
        }

        .hero figure {
            margin: 2rem auto 1.5rem;
            max-width: 100%;
            text-align: center;
        }

        .hero figure img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
        }

        .hero-cta {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.875rem 2rem;
            background-color: var(--color-accent);
            color: #ffffff;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            border-radius: 6px;
            transition: background-color var(--transition-base), transform var(--transition-base);
            text-align: center;
        }

        .hero-cta:hover {
            background-color: var(--color-accent-hover);
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* ========================================
           TL;DR Component
           ======================================== */
        .tldr {
            background-color: var(--color-surface);
            border-left: 4px solid var(--color-accent);
            padding: 1.5rem 2rem;
            border-radius: 0 8px 8px 0;
            margin-top: 0;
            margin-bottom: var(--section-gap);
        }

        .tldr h2 {
            font-size: clamp(1.125rem, 2.5vw, 1.25rem);
            margin-top: 0;
            margin-bottom: 1rem;
            text-align: left;
        }

        .tldr ul {
            margin-bottom: 0;
        }

        .tldr li {
            margin-bottom: 0.75rem;
        }

        .tldr li:last-child {
            margin-bottom: 0;
        }

        /* ========================================
           Table of Contents
           ======================================== */
        .toc-wrapper {
            background-color: var(--color-card);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 1.5rem 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .toc-wrapper h2 {
            font-size: 1.125rem;
            margin-top: 0;
            margin-bottom: 1.25rem;
            text-align: left;
        }

        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
            column-count: 2;
            column-gap: 2rem;
        }

        .toc-item {
            break-inside: avoid;
            margin-bottom: 1rem;
        }

        .toc-link {
            display: block;
            color: var(--color-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color var(--transition-base);
        }

        .toc-link:hover {
            color: var(--color-accent);
        }

        .toc-sublist {
            list-style: none;
            padding-left: 1rem;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }

        .toc-sublist li {
            margin-bottom: 0.4rem;
        }

        .toc-sublist a {
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--color-text-secondary);
        }

        .toc-sublist a:hover {
            color: var(--color-accent);
        }

        /* ========================================
           Info Box Component
           ======================================== */
        .info-box {
            background-color: var(--color-card);
            border-left: 4px solid var(--color-accent);
            padding: 1.25rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 6px 6px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .info-box p {
            text-align: left;
            margin-bottom: 0.75rem;
        }

        .info-box p:last-child {
            margin-bottom: 0;
        }

        /* ========================================
           Callout Component
           ======================================== */
        .callout {
            background-color: var(--color-surface);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 8px;
            border: 1px solid var(--color-border);
        }

        .callout p {
            text-align: left;
            margin-bottom: 0;
        }

        /* ========================================
           Key Takeaway Component
           ======================================== */
        .key-takeaway {
            border-top: 2px solid var(--color-accent);
            padding-top: 1.25rem;
            margin: 2rem 0;
        }

        .key-takeaway p {
            font-family: var(--font-heading);
            font-size: clamp(1.125rem, 2.5vw, 1.25rem);
            font-weight: 600;
            text-align: left;
            margin-bottom: 1rem;
        }

        .key-takeaway ul {
            margin-bottom: 0;
        }

        /* ========================================
           Fun Fact Component
           ======================================== */
        .fun-fact {
            position: relative;
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: var(--color-text-secondary);
        }

        .fun-fact::before {
            content: '\2014';
            position: absolute;
            left: 0;
            color: var(--color-accent);
            font-style: normal;
        }

        .fun-fact p {
            text-align: left;
            margin-bottom: 0;
            color: var(--color-text-secondary);
            font-style: italic;
        }

        /* ========================================
           Glossary Term Component
           ======================================== */
        .glossary-term {
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
            margin: 1.25rem 0;
        }

        .glossary-term strong {
            font-family: var(--font-mono);
            color: var(--color-accent);
            text-decoration: underline;
            text-underline-offset: 4px;
            white-space: nowrap;
        }

        .glossary-term p {
            text-align: left;
            margin-bottom: 0;
            color: var(--color-text-secondary);
        }

        /* ========================================
           Odds Example Component
           ======================================== */
        .odds-example {
            background-color: var(--color-card);
            border: 1px solid var(--color-border);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .odds-example p:first-child {
            font-family: var(--font-heading);
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.75rem;
        }

        .odds-example p {
            text-align: center;
            font-family: var(--font-mono);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* ========================================
           Card Grid Component
           ======================================== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin: 1.5rem 0;
        }

        .card-grid > div {
            background-color: var(--color-card);
            border: 1px solid var(--color-border);
            padding: 1.25rem;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        }

        .card-grid p {
            text-align: left;
            margin-bottom: 0.5rem;
        }

        .card-grid p:last-child {
            margin-bottom: 0;
        }

        /* ========================================
           Comparison Component
           ======================================== */
        .comparison {
            margin: 1.5rem 0;
            overflow-x: auto;
        }

        .comparison p:first-child {
            font-family: var(--font-heading);
            font-weight: 700;
            text-align: left;
            margin-bottom: 1rem;
        }

        .comparison table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .comparison th,
        .comparison td {
            text-align: left;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid var(--color-border);
        }

        .comparison th {
            background-color: var(--color-surface);
            font-weight: 600;
        }

        .comparison tr:hover td {
            background-color: var(--color-surface);
        }

        /* ========================================
           At A Glance Component
           ======================================== */
        .at-a-glance {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 0;
            margin: 1.5rem 0;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            overflow: hidden;
        }

        .at-a-glance > div {
            padding: 1.5rem;
            border-right: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            background-color: var(--color-card);
        }

        .at-a-glance > div:last-child {
            border-right: none;
        }

        .at-a-glance > div:nth-last-child(-n+2) {
            border-bottom: none;
        }

        .at-a-glance p:first-child {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            text-align: left;
            margin-bottom: 0.75rem;
            color: var(--color-text);
        }

        .at-a-glance p {
            text-align: left;
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* ========================================
           Pre-Bet Checklist Component
           ======================================== */
        .pre-bet-checklist {
            margin: 1.5rem 0;
        }

        .pre-bet-checklist > p:first-child {
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--color-accent);
            margin-bottom: 1rem;
        }

        .pre-bet-checklist ul {
            list-style: none;
            padding-left: 1.5rem;
            border-left: 2px solid var(--color-border);
            margin: 0;
        }

        .pre-bet-checklist li {
            position: relative;
            padding-left: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .pre-bet-checklist li::before {
            content: '\2610';
            position: absolute;
            left: -1.25rem;
            color: var(--color-accent);
            background-color: var(--color-bg);
            padding: 0 2px;
        }

        /* ========================================
           Worked Example Component
           ======================================== */
        .worked-example {
            background-color: var(--color-surface);
            padding: 1.75rem;
            margin: 1.5rem 0;
            border-radius: 8px;
        }

        .worked-example p:first-child {
            font-family: var(--font-heading);
            font-weight: 700;
            text-align: left;
            margin-bottom: 1rem;
        }

        .worked-example p {
            text-align: left;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .worked-example p:last-child {
            margin-bottom: 0;
            font-weight: 600;
            color: var(--color-accent);
        }

        /* ========================================
           Dos and Donts Component
           ======================================== */
        .dos-donts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .dos-donts > div {
            padding: 1.25rem;
            border-radius: 8px;
        }

        .dos-donts > div:first-child {
            background-color: rgba(5, 150, 105, 0.08);
            border: 1px solid rgba(5, 150, 105, 0.2);
        }

        .dos-donts > div:last-child {
            background-color: rgba(220, 38, 38, 0.08);
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        .dos-donts h4 {
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .dos-donts > div:first-child h4 {
            color: var(--color-success);
        }

        .dos-donts > div:last-child h4 {
            color: var(--color-danger);
        }

        .dos-donts ul {
            margin: 0;
            padding-left: 1.25rem;
        }

        .dos-donts li {
            font-size: 0.9rem;
        }

        /* ========================================
           Section Bridge Component
           ======================================== */
        .section-bridge {
            text-align: center;
            font-style: italic;
            color: var(--color-accent);
            margin: 2rem 0;
            position: relative;
            padding: 0 2rem;
        }

        .section-bridge::before,
        .section-bridge::after {
            content: '\2022 \2022 \2022';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.5rem;
            color: var(--color-muted);
            letter-spacing: 0.25em;
        }

        .section-bridge::before {
            left: 0;
        }

        .section-bridge::after {
            right: 0;
        }

        /* ========================================
           Author Bio Component
           ======================================== */
        .author-bio {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border-top: 1px solid var(--color-border);
            padding-top: 1rem;
            margin-top: 2rem;
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            font-style: italic;
        }

        /* ========================================
           FAQ Accordion
           ======================================== */
        [data-content="faq"] details {
            border-bottom: 1px solid var(--color-border);
        }

        [data-content="faq"] details:first-of-type {
            border-top: 1px solid var(--color-border);
        }

        [data-content="faq"] summary {
            padding: 1.25rem 2.5rem 1.25rem 0;
            cursor: pointer;
            font-weight: 600;
            list-style: none;
            position: relative;
            transition: color var(--transition-base);
        }

        [data-content="faq"] summary::-webkit-details-marker {
            display: none;
        }

        [data-content="faq"] summary::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--color-accent);
            transition: transform var(--transition-base);
        }

        [data-content="faq"] details[open] summary::after {
            content: '\2212';
        }

        [data-content="faq"] summary:hover {
            color: var(--color-accent);
        }

        [data-content="faq"] details > div {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 0.35s ease, opacity 0.3s ease;
        }

        [data-content="faq"] details[open] > div {
            max-height: 500px;
            opacity: 1;
            padding-bottom: 1.25rem;
        }

        [data-content="faq"] details > div p {
            color: var(--color-text-secondary);
            font-size: 0.95rem;
        }

        /* ========================================
           Footer
           ======================================== */
        .site-footer {
            background-color: var(--color-footer);
            color: rgba(255, 255, 255, 0.7);
            padding: 3rem 1.5rem 1.5rem;
            margin-top: var(--section-gap);
        }

        .footer-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .footer-col p {
            text-align: left;
            font-size: 0.8rem;
            line-height: 1.6;
            margin-bottom: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col li {
            margin-bottom: 0.5rem;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color var(--transition-base);
        }

        .footer-col a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            max-width: 1000px;
            margin: 2rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom p {
            text-align: center;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ========================================
           Responsive - Tablet
           ======================================== */
        @media (max-width: 900px) {
            .at-a-glance > div {
                border-right: none;
            }

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

        /* ========================================
           Responsive - Mobile
           ======================================== */
        @media (max-width: 768px) {
            [data-content] {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .hero {
                padding: 3rem 1rem 2rem;
            }

            .toc-list {
                column-count: 1;
            }

            .card-grid {
                grid-template-columns: 1fr;
            }

            .at-a-glance {
                grid-template-columns: 1fr;
            }

            .at-a-glance > div {
                border-right: none;
                border-bottom: 1px solid var(--color-border);
            }

            .at-a-glance > div:last-child {
                border-bottom: none;
            }

            .dos-donts {
                grid-template-columns: 1fr;
            }

            .glossary-term {
                flex-direction: column;
                gap: 0.25rem;
            }

            .comparison {
                overflow-x: auto;
            }

            .comparison table {
                min-width: 500px;
            }

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

            .header-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .tldr {
                padding: 1.25rem;
            }

            .toc-wrapper {
                padding: 1.25rem;
            }
        }

/* =========================================
   UNIVERSAL DESKTOP & MOBILE MENU + LOGO
   ========================================= */

/* Header Base */
.site-header {
    background-color: var(--color-bg, #121212);
    border-bottom: 1px solid var(--color-border, #333333);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Mobile defaults for navigation bar */
.top-navigation-bar {
    width: 100%;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Fixes */
.site-logo img {
    max-height: 55px;
    max-width: 100%;
    width: auto !important;
    height: auto !important; 
    object-fit: contain; 
    display: block;
    transition: transform 0.2s ease;
}

.site-logo img:hover {
    transform: scale(1.02);
}

/* Desktop Menu */
.site-nav--desktop {
    display: none; 
}

/* Desktop Grid Layout: Logo left, Menu center */
@media (min-width: 1024px) {
    .top-navigation-bar {
        max-width: 100%;
        padding: 15px 40px; 
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    .site-logo {
        grid-column: 1;
        justify-self: start; 
        margin: 0;
    }

    .site-nav--desktop {
        display: block;
        grid-column: 2;
        justify-self: center; 
    }

    .mobile-controls {
        display: none; 
    }
    
    .menu-desktop {
        display: flex;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .menu-desktop a {
        text-decoration: none;
        color: var(--color-text, #ffffff);
        font-family: var(--font-body, sans-serif);
        font-weight: 500;
        font-size: 16px;
        transition: color 0.2s ease;
    }
    
    .menu-desktop a:hover {
        color: var(--color-accent, #eab308);
    }
}

/* Mobile Burger Button */
.burger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1000;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-text, #ffffff);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

/* Burger Animation to X */
.burger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
    opacity: 0;
}
.burger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Slider */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-bg, #121212);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    padding: 60px 30px;
}

.mobile-menu.is-open {
    right: 0; 
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 36px;
    line-height: 1;
    color: var(--color-text, #ffffff);
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-menu__close:hover {
    color: var(--color-accent, #eab308);
}

.menu-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-mobile a {
    text-decoration: none;
    color: var(--color-text, #ffffff);
    font-size: 20px;
    font-family: var(--font-display, sans-serif);
    font-weight: 600;
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.menu-mobile a:hover {
    color: var(--color-accent, #eab308);
    padding-left: 10px; 
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px); 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 998;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}




.sitemap-main{
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

.sitemap-title{
  margin: 0 0 8px;
  text-align: center;
}

.sitemap-subtitle{
  margin: 0 0 24px;
  text-align: center;
  opacity: 0.75;
}

.sitemap-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sitemap-link{
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-decoration: none;
}

.sitemap-link:hover{
  border-color: rgba(255,255,255,0.2);
}

/* ===== Universal hub (NO body_class needed) ===== */

main.hub-children-main{
  padding-bottom: 48px;
}

/* Article wrapper */
main.hub-children-main .hub-children-article{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Header */
main.hub-children-main .hub-children-header{
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

main.hub-children-main .hub-children-title{
  margin: 0 0 10px;
}

main.hub-children-main .hub-children-intro{
  max-width: 900px;
  margin: 0 auto;
  opacity: .9;
}

/* Grid */
main.hub-children-main .hub-children-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 12px;
}

/* Card */
main.hub-children-main .hub-children-card{
  display: block;
  text-decoration: none;
}

main.hub-children-main .hub-children-card__media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  transition: transform .22s ease, box-shadow .22s ease;
}

main.hub-children-main .hub-children-card:hover .hub-children-card__media{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

/* Image */
main.hub-children-main .hub-children-card__img{
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

/* Overlay */
main.hub-children-main .hub-children-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.42) 55%,
    rgba(0,0,0,0.70) 100%
  );
}

/* Text */
main.hub-children-main .hub-children-card__content{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
}

main.hub-children-main .hub-children-card__title{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.55);
}

/* Responsive */
@media (max-width: 1024px){
  main.hub-children-main .hub-children-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 640px){
  main.hub-children-main .hub-children-grid{
    grid-template-columns: 1fr;
  }
}

.home main > *:not([data-content="hero"]):not(.cl-header):not(header):not(.cl-hero),
.home main article > *:not([data-content="hero"]):not(.cl-header):not(header):not(.cl-hero) {
    max-width: var(--content-max-width, 940px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box !important;
}

.home main iframe,
.home main article iframe {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
    width: 100% !important;
}

#crumbs {
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    text-align: center; 
}

#crumbs a {
    text-decoration: none;
    color: #0073aa; 
}

#crumbs a:hover {
    text-decoration: underline;
}

#crumbs .current {
    font-weight: bold;
    color: rgb(0, 0, 0);
}

/* Move the logo to the left using negative margin */
.site-logo {
    margin-left: -30px !important; 
}