 :root {
            --color-bg: #0a0e1a;
            --color-bg-alt: #111827;
            --color-surface: #1a2235;
            --color-surface-hover: #232d42;
            --color-text: #e8eaf0;
            --color-text-muted: #9ca3af;
            --color-text-heading: #ffffff;
            --color-primary: #1e40af;
            --color-primary-light: #3b82f6;
            --color-accent: #fbbf24;
            --color-accent-glow: rgba(251, 191, 36, 0.3);
            --color-success: #10b981;
            --color-border: #2d3a52;
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Segoe UI', system-ui, sans-serif;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 40px var(--color-accent-glow);
            --radius-sm: 0.375rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --transition-fast: 150ms ease;
            --transition-base: 250ms ease;
            --transition-slow: 400ms ease;
            --content-width: min(72rem, 90vw);
            --article-width: min(48rem, 90vw);
        }

        @media (prefers-color-scheme: light) {
            :root {
                --color-bg: #f8fafc;
                --color-bg-alt: #f1f5f9;
                --color-surface: #ffffff;
                --color-surface-hover: #f1f5f9;
                --color-text: #1e293b;
                --color-text-muted: #64748b;
                --color-text-heading: #0f172a;
                --color-primary: #1e40af;
                --color-primary-light: #2563eb;
                --color-accent: #d97706;
                --color-accent-glow: rgba(217, 119, 6, 0.2);
                --color-border: #e2e8f0;
                --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
                --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
                --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
                --shadow-glow: 0 0 40px var(--color-accent-glow);
            }
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: linear-gradient(to bottom, var(--color-bg), transparent);
            padding: 1rem 0;
            backdrop-filter: blur(8px);
        }

        main {
            flex: 1;
            width: var(--article-width);
            margin: 0 auto;
            padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
        }

        footer {
            margin-top: auto;
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--color-border);
            color: var(--color-text-muted);
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--color-text-heading);
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--color-text-heading) 0%, var(--color-primary-light) 50%, var(--color-accent) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--color-accent);
        }

        h2 {
            font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
            margin-top: 3rem;
            margin-bottom: 1.25rem;
            padding-left: 1rem;
            border-left: 4px solid var(--color-primary-light);
            position: relative;
        }

        h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 60%;
            background: var(--color-accent);
            opacity: 0;
            transition: opacity var(--transition-base);
        }

        h2:hover::before {
            opacity: 1;
        }

        h3 {
            font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
            margin-top: 2.25rem;
            margin-bottom: 1rem;
            color: var(--color-primary-light);
        }

        p {
            margin-bottom: 1.25rem;
            text-align: justify;
            hyphens: auto;
        }

        /* Links */
        a {
            color: var(--color-primary-light);
            text-decoration: underline;
            text-decoration-color: transparent;
            text-underline-offset: 3px;
            transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
        }

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

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

        /* Lists */
        ul, ol {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }

        li {
            margin-bottom: 0.75rem;
            padding-left: 0.5rem;
        }

        ul li::marker {
            color: var(--color-accent);
        }

        ol li::marker {
            color: var(--color-primary-light);
            font-weight: 600;
        }

        /* Strong and Emphasis */
        strong {
            color: var(--color-text-heading);
            font-weight: 600;
        }

        em {
            font-style: italic;
            color: var(--color-text-muted);
        }

        /* Blockquote */
        blockquote {
            margin: 2rem 0;
            padding: 1.5rem 2rem;
            background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
            border-left: 4px solid var(--color-accent);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            box-shadow: var(--shadow-md);
            font-style: italic;
            position: relative;
        }

        blockquote::before {
            content: '"';
            position: absolute;
            top: -0.5rem;
            left: 1rem;
            font-size: 4rem;
            color: var(--color-accent);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }

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

        /* Images */
        figure {
            margin: 2.5rem 0;
            position: relative;
        }
        img{
            width: 100%;
            object-fit: cover;
            height: auto;
        }

        .hero-image {
            width: calc(100% + 4rem);
            margin-left: -2rem;
            margin-right: -2rem;
            margin-top: 0;
            margin-bottom: 2.5rem;
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 21 / 9;
            object-fit: cover;
            display: block;
            transition: transform var(--transition-slow);
        }

        .hero-image:hover img {
            transform: scale(1.02);
        }

        .article-image {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform var(--transition-base), filter var(--transition-base);
        }

        .article-image:hover img {
            transform: scale(1.01);
            filter: brightness(1.05);
        }

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

        /* Tables */
        table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: collapse;
            background: var(--color-surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

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

        th {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
        }

        tr:last-child td {
            border-bottom: none;
        }

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

        /* Code */
        code {
            font-family: 'Consolas', 'Monaco', monospace;
            background: var(--color-surface);
            padding: 0.2em 0.4em;
            border-radius: var(--radius-sm);
            font-size: 0.9em;
            color: var(--color-accent);
        }

        pre {
            margin: 2rem 0;
            padding: 1.5rem;
            background: var(--color-bg-alt);
            border-radius: var(--radius-md);
            overflow-x: auto;
            box-shadow: var(--shadow-md);
        }

        pre code {
            background: none;
            padding: 0;
            color: var(--color-text);
        }

        /* Table of Contents Navigation */
        nav[aria-label="Table of contents"] {
            margin: 2rem 0;
            padding: 1.5rem;
            background: var(--color-surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
        }

        nav[aria-label="Table of contents"] ol {
            list-style: none;
            padding-left: 0;
            margin: 0;
            counter-reset: toc;
        }

        nav[aria-label="Table of contents"] li {
            counter-increment: toc;
            margin-bottom: 0.5rem;
            padding-left: 0;
        }

        nav[aria-label="Table of contents"] li::before {
            content: counter(toc) ".";
            color: var(--color-accent);
            font-weight: 600;
            margin-right: 0.5rem;
        }

        nav[aria-label="Table of contents"] a {
            text-decoration: none;
            transition: color var(--transition-fast), padding-left var(--transition-fast);
            display: inline-block;
        }

        nav[aria-label="Table of contents"] a:hover {
            color: var(--color-accent);
            padding-left: 0.5rem;
        }

        /* FAQ Section */
        section[aria-label="FAQ"] h3 {
            cursor: pointer;
            padding: 1rem;
            margin: 0.5rem 0;
            background: var(--color-surface);
            border-radius: var(--radius-md);
            transition: background var(--transition-fast), box-shadow var(--transition-fast);
        }

        section[aria-label="FAQ"] h3:hover {
            background: var(--color-surface-hover);
            box-shadow: var(--shadow-sm);
        }

        /* Horizontal Rule */
        hr {
            margin: 3rem 0;
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-border), var(--color-accent), var(--color-border), transparent);
        }

        /* Selection */
        ::selection {
            background: var(--color-primary-light);
            color: white;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--color-bg-alt);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--color-border);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-primary-light);
        }

        /* Focus visible for keyboard navigation */
        :focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 3px;
        }

        /* Skip link for accessibility */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-accent);
            color: var(--color-bg);
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            z-index: 1000;
            transition: top var(--transition-fast);
        }

        .skip-link:focus {
            top: 1rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            h1 {
                text-align: center;
                border-bottom-width: 2px;
            }

            h2 {
                padding-left: 0.75rem;
            }

            .hero-image {
                width: calc(100% + 2rem);
                margin-left: -1rem;
                margin-right: -1rem;
                border-radius: 0;
            }

            blockquote {
                padding: 1rem 1.25rem;
                margin-left: 0;
                margin-right: 0;
            }

            table {
                font-size: 0.875rem;
            }

            th, td {
                padding: 0.75rem 0.5rem;
            }
        }

        @media (max-width: 480px) {
            h2 {
                margin-top: 2rem;
            }

            h3 {
                margin-top: 1.5rem;
            }

            ul, ol {
                padding-left: 1.25rem;
            }
        }

        /* Print styles */
        @media print {
            body {
                background: white;
                color: black;
            }

            header, footer {
                display: none;
            }

            main {
                width: 100%;
                padding: 0;
            }

            h1, h2, h3 {
                color: black;
                background: none;
                -webkit-text-fill-color: black;
            }

            a {
                color: black;
                text-decoration: underline;
            }

            .hero-image, .article-image {
                box-shadow: none;
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            html {
                scroll-behavior: auto;
            }
        }

        /* =========================================
   1. Header Container (Dark Blue Theme)
   ========================================= */
.site-header {
    /* Deep dark blue background to match the site theme */
    background-color: rgba(6, 11, 25, 0.95); 
    padding: 15px 0;
    width: 100%;
    
    /* Sticky Positioning */
    position: sticky;
    top: 0;
    z-index: 1000;
    
    /* Blur effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Very subtle border */
}

/* Container to center the nav */
.top-navigation-bar {
    display: flex;
    justify-content: center; /* Center the menu horizontally */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. Desktop Menu Styles
   ========================================= */

/* Hide desktop menu on mobile initially */
.site-nav--desktop {
    display: none;
    width: 100%;
    justify-content: center;
}

/* Remove default list styles (bullets) */
.menu-desktop {
    display: flex;
    flex-wrap: wrap;
    list-style: none; /* Removes the yellow dots */
    margin: 0;
    padding: 0;
    gap: 35px; /* Spacing between items */
}

/* Link Styles */
.menu-desktop li a {
    text-decoration: none;
    color: #e2e8f0; /* Soft white/blue text */
    font-family: sans-serif; /* Use your theme font */
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* --- Gold Hover Effect --- */
.menu-desktop li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    /* Gold gradient for the line */
    background: linear-gradient(90deg, #fbbf24, #d97706); 
    transition: width 0.3s ease;
}

.menu-desktop li a:hover {
    color: #fbbf24; /* Turn text Gold on hover */
}

.menu-desktop li a:hover::after {
    width: 100%; /* Line expands */
}

/* =========================================
   3. Responsive Rules (Show/Hide)
   ========================================= */

/* Desktop Screens (Larger than 992px) */
@media (min-width: 992px) {
    .site-nav--desktop {
        display: flex; /* Show menu */
    }
    
    .mobile-controls {
        display: none; /* Hide burger */
    }
}

/* Mobile Screens (Smaller than 991px) */
@media (max-width: 991px) {
    .site-nav--desktop {
        display: none; /* Hide desktop menu */
    }
    
    .mobile-controls {
        display: block; /* Show burger */
        margin-left: auto;
    }
}

/* =========================================
   SIDEBAR MOBILE MENU (App Style)
   ========================================= */

/* 1. The Menu Container (Hidden on the left) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%; /* Takes 85% of screen width, leaving room to see content */
    max-width: 320px; /* Don't get too wide on tablets */
    height: 100vh;
    
    /* Champions League Dark Blue */
    background-color: #0b1120; 
    /* Gold border on the right */
    border-right: 2px solid #fbbf24;
    
    z-index: 2002; /* Topmost layer */
    
    /* Animation: Slide from left */
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    
    /* Shadow for depth */
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    
    display: flex;
    flex-direction: column;
}

/* State: Open (Slide in) */
.mobile-menu.is-open {
    transform: translateX(0);
}

/* 2. The Close Button (Inside the menu) */
.mobile-menu__close {
    display: block; /* Make sure it's visible */
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #64748b; /* Muted color */
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}


.mobile-menu__inner {
    padding-top: 80px;
    padding-left: 30px;
    padding-right: 30px;
}

.mobile-menu__inner ul li::before {
    content: none !important; 
    display: none !important; 
    width: 0 !important;
    height: 0 !important;
    border: none !important;
}

.mobile-menu__inner ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-menu__inner ul li {
    list-style-type: none !important;
    padding: 0 !important; 
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; 
}

.mobile-menu__inner ul li:last-child {
    border-bottom: none !important;
}

.mobile-menu__inner ul li a {
    display: block !important;
    width: 100% !important;
    padding: 18px 0 !important; 
    
    color: #e2e8f0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    
    margin-left: 0 !important; 
}

.mobile-menu__inner ul li a:hover {
    color: #fbbf24 !important;
    padding-left: 10px !important; 
}

.mobile-menu ul,
.mobile-menu ol,
.mobile-menu li {
    list-style: none !important;      
    list-style-type: none !important; 
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.mobile-menu li {
    display: block !important; 
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; 
}

.mobile-menu li::marker,
.mobile-menu li::before,
.mobile-menu li::after {
    content: none !important;
    display: none !important;
}

.mobile-menu li a {
    display: block !important;        
    padding: 15px 0 !important;       
    
    color: #e2e8f0 !important;       
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: none !important; 
    border: none !important;
}

.mobile-menu li a:hover {
    color: #fbbf24 !important;        
    padding-left: 10px !important;    
    text-decoration: none !important;
}

.mobile-menu li:last-child {
    border-bottom: none !important;
}

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

.site-footer {
    background-color: #060b19; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    padding: 50px 20px;
    margin-top: auto; 
    font-family: sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;   
    text-align: center;
}

.footer-nav {
    width: 100%;
    order: 1; 
    margin-bottom: 35px;
}

.footer-menu-list,
.footer-menu-list li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

.footer-menu-list li::before,
.footer-menu-list li::marker {
    content: none !important;
    display: none !important;
}

.footer-menu-list {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;         
    gap: 30px;               
}

.footer-menu-list li a {
    text-decoration: none;
    color: #e2e8f0;          
    font-size: 14px;
    font-weight: 700;        
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-menu-list li a:hover {
    color: #fbbf24; 
}

.footer-content p {
    order: 2; 
    font-size: 13px;
    line-height: 1.6;
    color: #64748b; 
    max-width: 900px;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
    }

    .footer-menu-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-nav {
        margin-bottom: 25px;
    }
}


.site-logo {
    flex-shrink: 0; 
    margin-right: 20px;
    z-index: 10; 
}

.site-logo a {
    text-decoration: none;
    display: block;
}

.custom-logo-link img {
    max-height: 45px; 
    width: auto;      
    display: block;
}

.site-title {
    color: #ffffff; 
    font-family: sans-serif; 
    font-size: 24px;
    font-weight: 800; 
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.site-logo a:hover .site-title {
    color: #fbbf24; 
}

@media (min-width: 992px) {
    .top-navigation-bar {
        display: grid;
    
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .site-logo {
        justify-self: start;
    }

    .site-nav--desktop {
        justify-self: center;
        width: auto; 
    }
}

@media (max-width: 991px) {
    .top-navigation-bar {
        display: flex;
        justify-content: space-between;
    }

    .site-title {
        font-size: 20px;
    }
    
     .site-logo {
        flex-shrink: 1; 
        margin-right: 10px;
    }
}

@media (min-width: 992px) {
    .top-navigation-bar {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 40px !important;  
        margin: 0 !important;
        
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
    }

    .site-logo {
        justify-self: start !important;
        grid-column: 1;
    }

    .site-nav--desktop {
        justify-self: center !important;
        grid-column: 2;
        width: auto !important;
        margin: 0 !important;
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .top-navigation-bar {
        display: grid !important;
        
        grid-template-columns: 1fr auto !important; 
        
        align-items: center !important;
        gap: 15px !important; 
        padding: 10px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important;
        min-height: 60px;
    }

    .site-logo {
        grid-column: 1;
        min-width: 0 !important; 
        margin: 0 !important;
    }

    .site-title {
        font-size: 14px !important;
        line-height: 1.2 !important;
        white-space: normal !important; 
        word-wrap: break-word !important;
    }

    .mobile-controls {
        grid-column: 2;
        width: 30px !important;
        height: 30px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        position: static !important; 
    }

    .burger {
        margin: 0 !important;
        transform: none !important;
    }
    
    .site-nav--desktop {
        display: none !important;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a; /* Dark background like screenshot */
    color: #cccccc;
    padding: 60px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns */
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

/* Headings */
.footer-heading {
    color: #f5c518; /* Yellow/Gold color like screenshot */
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}



.footer-links-list a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Specific styling for warnings */
.warning-text {
    color: #fff;
}

.help-link {
    color: #e50914 !important; /* Red link for help */
    font-weight: bold;
}

/* Bottom Section */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #888;
    font-size: 12px;
}

.footer-small-text {
    margin-top: 10px;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 30px;
        text-align: center;
    }

    .footer-links-list li {
        padding-left: 0;
    }
    
  
}

/* articulos */
.articulos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 32px;
	padding-top: 30px;

	max-width: var(--max-width);
	margin: 0 auto;
}

.articulos-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(0, 0, 0, 0.03);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	padding: 0;
}

.articulos-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}


.articulos-card__image-link img {
	width: 100%;
	height: 170px;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.articulos-card:hover .articulos-card__image-link img {
	transform: scale(1.08);
}




.articulos-card__content {
	padding: 0 17px 16px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;

}

.articulos-card__title {
	margin-top: 10px;
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 700;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 1.6rem;
}

.articulos-card__title a {
	text-decoration: none;

}

.articulos-card__excerpt {
	margin-top: auto;

	margin-bottom: 0;
	color: #6e6e73;
	font-size: 0.95rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}


.articulos-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #1d1d1f;
	font-weight: 600;
	font-size: 0.9rem;
	transition: gap 0.3s;
}

.articulos-card__link svg {
	transition: transform 0.3s;
}

.articulos-card__link:hover {
	color: #0073aa;
	gap: 12px;
}


.articulos-card__image-link {
	display: block;
	overflow: hidden;
	border-radius: 6px 6px 0 0;
	height: 170px;
}


.articulos-card__image-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.6s ease;
}


.articulos-card:hover .articulos-card__image-link img {
	transform: scale(1.08);
}

.articulos-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.load-more-wrapper {
	text-align: center;
	margin: 40px 0;
}

.btn-load-more {
	background-color: #0073aa;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s;
}

.btn-load-more:hover {
	background-color: #005177;
}


@media (max-width: 559px) {
	.articulos-grid {
		gap: 17px;

	}

	.articulos-card__image-link {

		height: 17rem;
	}
}

.sitemap-content {
        margin: 30px 0;
    }

    .sitemap-section {
        margin-bottom: 40px;
        padding: 20px;
        border-radius: 8px;
    }

    .sitemap-section h2 {
        color: inherit;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .sitemap-section h3 {
        color: #555;
        margin: 15px 0 10px 0;
    }

    .sitemap-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .breadcrumbs{
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 3rem 0;
            gap: 0.8rem;
        }
    @media (max-width: 1024px) {
        .sitemap-list {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }
    }
    @media (max-width: 768px) {
        .sitemap-list {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
    }

    .sitemap-list li {
        margin-bottom: 8px;
        padding-left: 15px;
        position: relative;
    }

    .sitemap-list li:before {
        content: "›";
        position: absolute;
        left: 0;
        color: #007cba;
    }

    .sitemap-list a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s;
    }

    .sitemap-list a:hover {
        color: #007cba;
    }


@media (max-width: 768px) {
	.sitemap-list {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 5px;
		list-style: none;
		padding: 0;
	}
}