/* VETERAN Redesign - Index Styles */

        @font-face {
            font-family: 'e-Ukraine';
            src: url('/fonts/e-Ukraine-Regular.woff') format('woff');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'e-Ukraine';
            src: url('/fonts/e-Ukraine-Medium.woff') format('woff');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'e-Ukraine';
            src: url('/fonts/e-Ukraine-Bold.woff') format('woff');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'e-UkraineHead';
            src: url('/fonts/e-UkraineHead-Medium.woff') format('woff');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'e-UkraineHead';
            src: url('/fonts/e-UkraineHead-Bold.woff') format('woff');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        :root {
            /* Authentic Brand Palette */
            --brand-navy: #004E7D;
            --brand-navy-dark: #003657;
            --brand-yellow: #FAB613;
            --brand-yellow-hover: #E5A305;
            --brand-blue: #446893;
            --brand-blue-light: #7588AB;
            
            /* Diia Minimalist Surfaces & Borders */
            --bg-page: #F8FAFC;
            --bg-surface: #FFFFFF;
            --bg-card-hover: #F1F5F9;
            --border-color: #E2E8F0;
            --border-light: #EDF2F7;
            
            /* High Contrast Typography */
            --text-primary: #0F172A;
            --text-secondary: #334155;
            --text-muted: #64748B;
            --text-light: #94A3B8;

            /* Diia-style Elevation */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 9999px;

            --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
            --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.05);
            --shadow-card: 0 4px 20px -2px rgba(0, 78, 125, 0.06);
            --shadow-card-hover: 0 12px 28px -4px rgba(0, 78, 125, 0.12);

            --container-width: 1220px;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }

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

        body {
            font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
            position: relative;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

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

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main Site Header (Deep Navy Masthead with Gold Accent) */
        header.site-header {
            background-color: #002B49;
            border-bottom: 3px solid #FAB613;
            box-shadow: 0 4px 20px rgba(0, 43, 73, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 84px;
            padding: 10px 0;
        }
        .header-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 4px;
        }
        .logo-tagline {
            font-size: 11px;
            font-weight: 500;
            color: #94A3B8;
            line-height: 1.25;
            letter-spacing: -0.01em;
            text-transform: none;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }
        .logo-tagline--desktop {
            display: flex;
        }
        .logo-tagline--mobile {
            display: none;
        }
        .logo-box {
            display: flex;
            align-items: center;
        }
        .logo-box svg {
            height: 44px;
            width: auto;
            aspect-ratio: 224 / 71;
            display: block;
        }
        
        /* Navigation Links on Deep Navy */
        nav.main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav.main-nav a {
            font-size: 15px;
            font-weight: 600;
            color: #E2E8F0;
            padding: 8px 14px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.18s ease;
            position: relative;
        }
        nav.main-nav a:hover {
            color: #FFFFFF;
            background-color: rgba(255, 255, 255, 0.12);
        }
        nav.main-nav a.active {
            color: #FAB613;
            font-weight: 700;
            background-color: rgba(250, 182, 19, 0.15);
        }

        /* Header Actions on Deep Navy */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .btn-handbook-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FAB613;
            color: #002B49;
            font-size: 13px;
            font-weight: 800;
            padding: 9px 20px;
            border-radius: var(--radius-full);
            border: none;
            white-space: nowrap;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(250, 182, 19, 0.35);
            transition: all 0.18s ease;
            text-decoration: none;
        }
        .btn-handbook-pill:hover {
            background-color: #FFC700;
            box-shadow: 0 4px 14px rgba(250, 182, 19, 0.5);
            transform: translateY(-1px);
            color: #002B49;
        }
        .btn-tg {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.12);
            color: #FFFFFF;
            border: 1px solid rgba(255, 255, 255, 0.25);
            font-size: 13px;
            font-weight: 600;
            padding: 9px 18px;
            border-radius: var(--radius-full);
            transition: all 0.15s ease;
            text-decoration: none;
        }
        .btn-tg:hover {
            background-color: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.4);
            color: #FFFFFF;
        }

        /* Mobile Burger Button */
        .btn-burger {
            display: none;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--brand-navy);
            cursor: pointer;
            flex-shrink: 0;
            transition: all 0.15s ease;
            padding: 0;
        }
        .btn-burger:hover,
        .btn-burger:focus-visible {
            background: #EBF4F9;
            border-color: var(--brand-navy);
            outline: none;
        }
        .btn-burger svg {
            width: 20px;
            height: 20px;
        }

        /* Mobile Drawer & Overlay */
        body.menu-open {
            overflow: hidden !important;
            touch-action: none;
        }
        .mobile-drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.45);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }
        .mobile-drawer-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 86%;
            max-width: 360px;
            background: #FFFFFF;
            z-index: 1001;
            transform: translateX(100%);
            visibility: hidden;
            pointer-events: none;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
            display: flex;
            flex-direction: column;
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .mobile-drawer.is-open {
            transform: translateX(0);
            visibility: visible;
            pointer-events: auto;
        }
        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-color);
            background: #F8FAFC;
        }
        .drawer-title-box {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .drawer-title-label {
            font-size: 13px;
            font-weight: 800;
            color: var(--brand-navy);
            letter-spacing: 0.02em;
        }
        .drawer-subtitle {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .btn-drawer-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.15s ease;
        }
        .btn-drawer-close:hover {
            color: var(--brand-navy);
            background: #EBF4F9;
            border-color: var(--brand-navy);
        }
        .drawer-body {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            flex: 1;
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .drawer-nav-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 14px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            transition: background 0.15s, color 0.15s;
        }
        .drawer-nav-item:hover,
        .drawer-nav-item.active {
            background: #EBF4F9;
            color: var(--brand-navy);
        }
        .drawer-nav-arrow {
            color: #94A3B8;
            transition: transform 0.15s ease, color 0.15s ease;
        }
        .drawer-nav-item:hover .drawer-nav-arrow,
        .drawer-nav-item.active .drawer-nav-arrow {
            color: var(--brand-navy);
            transform: translateX(3px);
        }
        .drawer-section-title {
            font-size: 11px;
            font-weight: 800;
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding-bottom: 4px;
            border-bottom: 1px solid var(--border-color);
        }
        .drawer-card {
            display: flex;
            flex-direction: column;
            padding: 14px 16px;
            border-radius: 12px;
            text-decoration: none;
            transition: transform 0.15s, box-shadow 0.15s;
        }
        .drawer-card--handbook {
            background: #EAF7EE;
            border: 1px solid #B8E6C4;
            gap: 6px;
        }
        .drawer-card--handbook:hover {
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
            transform: translateY(-1px);
        }
        .drawer-card-badge {
            align-self: flex-start;
            font-size: 10px;
            font-weight: 800;
            background: #FAB613;
            color: #0F172A;
            padding: 3px 8px;
            border-radius: 6px;
            letter-spacing: 0.02em;
        }
        .drawer-card-title {
            font-size: 14px;
            font-weight: 800;
            color: #0F172A;
            line-height: 1.3;
        }
        .drawer-card-desc {
            font-size: 12px;
            color: #475569;
            line-height: 1.4;
        }
        .drawer-card-btn {
            font-size: 12px;
            font-weight: 800;
            color: #004E7D;
            margin-top: 4px;
        }
        .drawer-card--tg {
            background: #EBF4F9;
            border: 1px solid #C8DFEC;
            gap: 6px;
        }
        .drawer-card--tg:hover {
            box-shadow: 0 4px 12px rgba(0, 78, 125, 0.15);
            transform: translateY(-1px);
        }
        .drawer-card-tg-header {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--brand-navy);
        }
        .drawer-card-tg-name {
            font-size: 14px;
            font-weight: 800;
        }
        .drawer-topics {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .drawer-topic-chip {
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-navy);
            background: #F1F5F9;
            border: 1px solid var(--border-color);
            padding: 5px 12px;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.15s ease;
        }
        .drawer-topic-chip:hover {
            background: #004E7D;
            color: #FFFFFF;
            border-color: #004E7D;
        }
        .drawer-footer {
            padding: 16px 20px;
            border-top: 1px solid var(--border-color);
            background: #F8FAFC;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .drawer-footer-text {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.35;
            margin: 0;
        }
        .drawer-footer-copy {
            font-size: 10px;
            font-weight: 600;
            color: #94A3B8;
        }

        .filters-bar {
            padding: 12px 0 6px;
            position: relative;
        }
        .filters-wrapper {
            position: relative;
            width: 100%;
        }
        .filters-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 8px;
            width: 100%;
            padding: 0;
            overflow: visible;
        }

        /* Apple-style gradient fades on edges */
        .filters-wrapper::before,
        .filters-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 48px;
            pointer-events: none;
            z-index: 2;
            transition: opacity 0.25s ease;
        }
        .filters-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-page) 20%, rgba(248, 250, 252, 0) 100%);
            opacity: 0;
        }
        .filters-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-page) 20%, rgba(248, 250, 252, 0) 100%);
            opacity: 1;
        }
        .filters-wrapper.can-scroll-left::before {
            opacity: 1;
        }
        .filters-wrapper.at-scroll-end::after {
            opacity: 0;
        }

        /* Apple-style circular chevron nav buttons */
        .filter-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            cursor: pointer;
            z-index: 5;
            opacity: 0;
            pointer-events: none;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .filter-nav-btn svg {
            width: 16px;
            height: 16px;
        }
        .filter-nav-btn:hover {
            background-color: #F8FAFC;
            border-color: var(--brand-navy);
            color: var(--brand-navy);
            box-shadow: 0 4px 12px rgba(0, 78, 125, 0.15);
            transform: translateY(-50%) scale(1.05);
        }
        .filter-nav-btn.btn-prev {
            left: -12px;
        }
        .filter-nav-btn.btn-next {
            right: -12px;
        }
        .filters-wrapper.can-scroll-left .filter-nav-btn.btn-prev {
            opacity: 1;
            pointer-events: auto;
        }
        .filters-wrapper:not(.at-scroll-end) .filter-nav-btn.btn-next {
            opacity: 1;
            pointer-events: auto;
        }

        @keyframes scrollHintBounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(-50%) translateX(0);
            }
            40% {
                transform: translateY(-50%) translateX(-4px);
            }
            60% {
                transform: translateY(-50%) translateX(-2px);
            }
        }

        .filters-scroll-indicator-wrap {
            display: none;
        }

        @media (max-width: 768px) {
            .filter-nav-btn {
                display: flex !important;
                width: 30px;
                height: 30px;
                background: #FFFFFF;
                border: 1.5px solid var(--brand-navy);
                color: var(--brand-navy);
                box-shadow: 0 2px 8px rgba(0, 78, 125, 0.22);
            }
            .filter-nav-btn.btn-prev {
                left: 2px;
            }
            .filter-nav-btn.btn-next {
                right: 2px;
            }
            .filters-wrapper:not(.at-scroll-end) .filter-nav-btn.btn-next {
                opacity: 1;
                pointer-events: auto;
                animation: scrollHintBounce 2.5s ease 2;
            }
            .filters-wrapper.can-scroll-left .filter-nav-btn.btn-prev {
                opacity: 1;
                pointer-events: auto;
            }
            .filters-wrapper::before,
            .filters-wrapper::after {
                width: 52px;
            }
            .filters-wrapper::before {
                background: linear-gradient(to right, var(--bg-page) 65%, rgba(248, 250, 252, 0) 100%);
            }
            .filters-wrapper::after {
                background: linear-gradient(to left, var(--bg-page) 65%, rgba(248, 250, 252, 0) 100%);
            }

            .filters-scroll-indicator-wrap {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                margin-top: 6px;
            }
            .filters-scroll-track {
                width: 44px;
                height: 3px;
                background: #E2E8F0;
                border-radius: 9999px;
                overflow: hidden;
                position: relative;
            }
            .filters-scroll-thumb {
                width: 16px;
                height: 100%;
                background: var(--brand-navy);
                border-radius: 9999px;
                transition: transform 0.08s linear;
                transform: translateX(0);
            }
            .filters-scroll-hint-label {
                font-size: 10px;
                font-weight: 600;
                color: #94A3B8;
                text-transform: uppercase;
                letter-spacing: 0.04em;
            }
        }

        .filter-chip {
            font-family: 'Onest', sans-serif;
            font-size: 11.5px;
            font-weight: 500;
            color: var(--text-secondary);
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: 4px 10px;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: all 0.15s ease;
            outline: none;
            flex-shrink: 0;
            user-select: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            line-height: 1.3;
        }
        .filter-chip:hover {
            border-color: var(--brand-navy);
            color: var(--brand-navy);
            background-color: #F0F7FB;
        }
        .filter-chip.active {
            background-color: var(--brand-navy);
            color: #FFFFFF;
            border-color: var(--brand-navy);
            box-shadow: 0 2px 8px rgba(0, 78, 125, 0.2);
        }
        
        /* Smooth filter transition for news cards */
        .filterable-item {
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .filterable-item.filter-dimmed {
            opacity: 0.2;
            transform: scale(0.98);
            pointer-events: none;
        }

        /* Hero News Grid Section (Strict Height & Proportions Rule) */
        .hero-news-section {
            padding: 32px 0 24px;
        }
        .hero-news-grid {
            display: grid;
            grid-template-columns: 1.55fr 1.25fr;
            gap: 20px;
            align-items: stretch;
        }

        /* Main Lead News Story (Reduced Height, Compact 16:9) */
        .main-lead-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .main-lead-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-card-hover);
        }
        .main-lead-img-wrap {
            position: relative;
            width: 100%;
            height: 240px;
            background-color: #1E293B;
            overflow: hidden;
            flex-shrink: 0;
        }
        .main-lead-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .main-lead-card:hover .main-lead-img {
            transform: scale(1.02);
        }
        .badge-category {
            position: absolute;
            top: 14px;
            left: 14px;
            background-color: var(--brand-yellow);
            color: #0F172A;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            box-shadow: var(--shadow-sm);
        }
        .badge-navy {
            background-color: var(--brand-navy);
            color: #FFFFFF;
        }
        .main-lead-body {
            padding: 18px 22px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
        }
        .main-lead-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .main-lead-meta svg {
            width: 13px;
            height: 13px;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .main-lead-title {
            font-size: 21px;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.15s;
        }
        .main-lead-card:hover .main-lead-title {
            color: var(--brand-navy);
        }
        .main-lead-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Right Stacked News Cards (Synced Height with Flex: 1) */
        .side-news-stack {
            display: flex;
            flex-direction: column;
            gap: 12px;
            height: 100%;
        }
        .side-news-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 12px 16px;
            display: flex;
            gap: 14px;
            align-items: center;
            flex: 1;
            min-height: 0;
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }
        .side-news-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: #CBD5E1;
        }
        .side-news-img-wrap {
            width: 112px;
            height: 84px;
            border-radius: var(--radius-md);
            overflow: hidden;
            flex-shrink: 0;
            background-color: #E2E8F0;
        }
        .side-news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .side-news-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
            min-width: 0;
        }
        .side-news-category {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--brand-navy);
            background-color: #EBF4F9;
            border-radius: var(--radius-full);
            padding: 2px 8px;
            letter-spacing: 0.03em;
            margin-bottom: 5px;
        }
        .side-news-title {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-primary);
            margin: 0 0 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.15s;
        }
        .side-news-card:hover .side-news-title {
            color: var(--brand-navy);
        }
        .side-news-time {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Diia-Style Interactive Services Strip (Feature Widget) */
        .handbook-feature-strip {
            margin: 28px 0 44px;
            background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 100%);
            border-radius: var(--radius-xl);
            padding: 30px 36px;
            color: #FFFFFF;
            box-shadow: 0 10px 25px -4px rgba(0, 78, 125, 0.2);
            position: relative;
            overflow: hidden;
        }
        .strip-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            position: relative;
            z-index: 2;
        }
        .strip-left {
            max-width: 580px;
        }
        .strip-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background-color: #E0F2FE;
            color: #004E7D;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            margin-bottom: 8px;
        }
        .strip-title {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.01em;
            margin-bottom: 6px;
        }
        .strip-desc {
            font-size: 14px;
            color: #E2E8F0;
            line-height: 1.5;
        }
        .strip-chips {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }
        .strip-chip {
            background-color: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #FFFFFF;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            transition: all 0.15s;
        }
        .strip-chip:hover {
            background-color: var(--brand-yellow);
            color: #0F172A;
            border-color: var(--brand-yellow);
        }
        .strip-action-btn {
            background-color: var(--brand-yellow);
            color: #0F172A;
            font-size: 14px;
            font-weight: 700;
            padding: 14px 28px;
            border-radius: var(--radius-lg);
            white-space: nowrap;
            transition: background-color 0.15s, transform 0.1s;
            box-shadow: 0 4px 12px rgba(250, 182, 19, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .strip-action-btn:hover {
            background-color: var(--brand-yellow-hover);
            transform: translateY(-1px);
        }
        .strip-action-btn svg {
            width: 16px;
            height: 16px;
        }

        /* Typography Hierarchy */
        h1, h2, h3, h4, .section-title, .main-lead-title, .side-news-title, .strip-title, .card-title, .pub-title, .thematic-title, .live-title, .support-title {
            font-family: 'Onest', sans-serif;
            letter-spacing: -0.015em;
        }

        /* Section Layout Common */
        .content-section {
            padding: 24px 0 40px;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border-color);
        }
        .section-heading-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--brand-navy);
        }
        .section-more-link {
            font-size: 13px;
            font-weight: 700;
            color: var(--brand-navy);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color 0.15s;
        }
        .section-more-link:hover {
            color: var(--brand-blue);
            text-decoration: underline;
        }
        .section-more-link svg {
            width: 14px;
            height: 14px;
        }

        /* Main Media & Live News Feed Split */
        .media-split-grid {
            display: grid;
            grid-template-columns: 1.9fr 1.1fr;
            gap: 32px;
        }

        /* Editor's Choice 3-Cards Grid */
        .cards-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 32px;
        }
        .card-news-vertical {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card-news-vertical:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }
        .card-img-wrap {
            position: relative;
            width: 100%;
            height: 160px;
            background-color: #E2E8F0;
            overflow: hidden;
        }
        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .card-news-vertical:hover .card-img {
            transform: scale(1.03);
        }
        .card-body {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
            justify-content: space-between;
        }
        .card-category {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            font-size: 11px;
            font-weight: 700;
            color: var(--brand-navy);
            background-color: #EBF4F9;
            border-radius: var(--radius-full);
            padding: 3px 10px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 8px;
        }
        .card-title {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-primary);
            margin-bottom: 12px;
            transition: color 0.15s;
        }
        .card-news-vertical:hover .card-title {
            color: var(--brand-navy);
        }
        .card-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 10px;
            border-top: 1px solid var(--border-light);
        }

        /* In-depth Analytical Long Cards */
        .publications-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .pub-row-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            display: flex;
            gap: 20px;
            align-items: center;
            box-shadow: var(--shadow-sm);
            transition: transform 0.15s, border-color 0.15s;
        }
        .pub-row-card:hover {
            transform: translateY(-2px);
            border-color: #CBD5E1;
            box-shadow: var(--shadow-md);
        }
        .pub-img-wrap {
            width: 170px;
            height: 120px;
            border-radius: var(--radius-md);
            overflow: hidden;
            flex-shrink: 0;
            background-color: #E2E8F0;
        }
        .pub-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .pub-body {
            flex: 1;
        }
        .pub-tag {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            font-size: 10px;
            font-weight: 700;
            color: var(--brand-navy);
            background-color: #EBF4F9;
            border-radius: var(--radius-full);
            padding: 2px 9px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        .pub-title {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-primary);
            margin: 6px 0 8px;
            transition: color 0.15s;
        }
        .pub-row-card:hover .pub-title {
            color: var(--brand-navy);
        }
        .pub-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .pub-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Right Column: Live Stream News Panel (Дія Cleanliness) */
        .live-stream-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 96px;
        }
        .live-stream-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 16px;
        }
        .live-title {
            font-size: 19px;
            font-weight: 800;
            letter-spacing: -0.01em;
            color: var(--brand-navy);
        }
        .live-list {
            display: flex;
            flex-direction: column;
        }
        .live-item {
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
            transition: background-color 0.15s;
        }
        .live-item:last-child {
            border-bottom: none;
            padding-bottom: 6px;
        }
        .live-time-badge {
            font-size: 12px;
            font-weight: 700;
            color: var(--brand-navy);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .live-time-badge span.cat {
            color: var(--text-muted);
            font-weight: 500;
        }
        .live-item-text {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--text-primary);
            transition: color 0.15s;
        }
        .live-item:hover .live-item-text {
            color: var(--brand-navy);
        }
        .btn-live-all-wrap {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 20px;
        }
        .btn-live-all {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: auto;
            max-width: 280px;
            margin: 0 auto;
            background-color: var(--bg-page);
            border: 1.5px solid #CBD5E1;
            color: var(--brand-navy);
            font-size: 13px;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: var(--radius-full);
            transition: all 0.15s ease;
            text-decoration: none;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }
        .btn-live-all:hover {
            background-color: var(--brand-navy);
            color: #FFFFFF;
            border-color: var(--brand-navy);
            box-shadow: 0 4px 12px rgba(0, 78, 125, 0.18);
            transform: translateY(-1px);
        }
        .btn-live-all svg {
            width: 14px;
            height: 14px;
            transition: transform 0.15s ease;
        }
        .btn-live-all:hover svg {
            transform: translateX(3px);
        }

        /* 2-Column Thematic Blocks: Business & Rehab */
        .thematic-blocks-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-top: 20px;
        }
        .thematic-card-large {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
        }
        .thematic-card-large:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-card-hover);
        }
        .thematic-img-wrap {
            height: 200px;
            width: 100%;
            background-color: #E2E8F0;
            overflow: hidden;
        }
        .thematic-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .thematic-card-large:hover .thematic-img {
            transform: scale(1.02);
        }
        .thematic-body {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .thematic-badge {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: var(--brand-navy);
            background-color: #EBF4F9;
            border-radius: var(--radius-full);
            padding: 2px 9px;
            margin-bottom: 8px;
        }
        .thematic-title {
            font-size: 18px;
            font-weight: 800;
            line-height: 1.35;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .thematic-card-large:hover .thematic-title {
            color: var(--brand-navy);
        }
        .thematic-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Diia Style Institutional Support Hotline Bar */
        #hotlines {
            scroll-margin-top: 110px;
        }
        .support-banner {
            background-color: var(--brand-navy-dark);
            border-radius: var(--radius-xl);
            padding: 36px 40px;
            color: #FFFFFF;
            margin: 48px 0;
        }
        .support-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }
        .support-title {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.01em;
        }
        .support-subtitle {
            font-size: 14px;
            color: #94A3B8;
            margin-top: 4px;
        }
        .support-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .support-card {
            background-color: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
        }
        .support-name {
            font-size: 13px;
            font-weight: 600;
            color: #CBD5E1;
            margin-bottom: 6px;
            line-height: 1.35;
        }
        .support-phone {
            font-size: 20px;
            font-weight: 800;
            color: var(--brand-yellow);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 0.01em;
            transition: color 0.15s ease, transform 0.15s ease;
        }
        .support-phone svg {
            width: 17px;
            height: 17px;
            color: var(--brand-yellow);
            flex-shrink: 0;
            transition: color 0.15s ease, transform 0.15s ease;
        }
        .support-phone:hover {
            color: #FFFFFF;
            text-decoration: none;
            transform: translateX(2px);
        }
        .support-phone:hover svg {
            color: #FFFFFF;
            transform: scale(1.1);
        }
        .support-phone:active {
            color: #FFFFFF;
            text-decoration: none;
            transform: scale(0.98);
        }
        .support-phone:active svg {
            color: #FFFFFF;
        }
        .support-desc {
            font-size: 12px;
            color: #94A3B8;
            margin-top: 6px;
            line-height: 1.4;
        }

        /* Footer (Authentic Veteran Colors) */
        /* Modern Compact Footer (Authentic Veteran Navy & Gold) */
        footer.site-footer {
            background-color: var(--brand-navy-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: #E2E8F0;
            padding: 42px 0 24px;
        }
        .footer-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            padding-bottom: 26px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-brand-side {
            display: flex;
            align-items: center;
            gap: 24px;
            max-width: 820px;
        }
        .footer-logo {
            display: inline-block;
            flex-shrink: 0;
        }
        .footer-logo svg {
            height: 40px;
            width: auto;
        }
        .footer-mission {
            font-size: 13px;
            line-height: 1.55;
            color: #94A3B8;
            margin: 0;
        }
        .footer-cta-btns {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .footer-cta-btns .btn-handbook-pill {
            padding: 9px 18px;
            font-size: 13px;
        }
        .footer-cta-btns .btn-tg {
            padding: 9px 16px;
            font-size: 13px;
        }

        /* Horizontal Media Navigation Row (Matches Header) */
        .footer-nav-row {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-row-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--brand-yellow);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .footer-nav-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 28px;
        }
        .footer-nav-links a {
            font-size: 14px;
            font-weight: 600;
            color: #CBD5E1;
            text-decoration: none;
            transition: color 0.15s ease;
        }
        .footer-nav-links a:hover {
            color: #FFFFFF;
        }

        /* Legal Support Badges Row (Header Chip Style) */
        .footer-badges-row {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-badges-list {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px 10px;
        }
        .footer-badge {
            font-family: 'Onest', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #E2E8F0;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.16);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.15s ease;
            white-space: nowrap;
        }
        .footer-badge:hover {
            background: rgba(250, 182, 19, 0.15);
            border-color: var(--brand-yellow);
            color: #FFFFFF;
            transform: translateY(-1px);
        }

        /* Project Links & Disclaimer */
        .footer-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-top: 18px;
            font-size: 13px;
            color: #94A3B8;
        }
        .footer-project-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-project-links a {
            color: #94A3B8;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.15s ease;
        }
        .footer-project-links a:hover {
            color: #FFFFFF;
        }
        .footer-project-links .dot-sep {
            color: rgba(255, 255, 255, 0.25);
            user-select: none;
        }
        .footer-copy {
            font-size: 12px;
            color: #94A3B8;
            white-space: nowrap;
        }
        .footer-bottom {
            padding-top: 12px;
            font-size: 12px;
            color: #64748B;
        }

        /* Mobile Breakpoints */
        @media (max-width: 1024px) {
            .hero-news-grid {
                grid-template-columns: 1fr;
            }
            .media-split-grid {
                grid-template-columns: 1fr;
            }
            .cards-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            .support-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .thematic-blocks-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 14px;
            }
            .header-content {
                min-height: 68px;
                padding: 8px 0;
            }
            .header-brand {
                flex-shrink: 1;
                min-width: 0;
                gap: 2px;
            }
            .logo-box svg {
                height: 38px;
                width: auto;
                max-width: 140px;
            }
            .logo-tagline {
                font-size: 10px;
                line-height: 1.2;
            }
            .logo-tagline--desktop {
                display: none !important;
            }
            .logo-tagline--mobile {
                display: flex !important;
            }
            .logo-tagline span {
                white-space: nowrap;
            }
            .header-actions {
                gap: 8px;
                flex-shrink: 0;
                display: flex;
                align-items: center;
            }
            .btn-handbook-pill {
                font-size: 11px;
                padding: 6px 12px;
                white-space: nowrap;
                flex-shrink: 0;
            }
            .header-actions .btn-tg {
                display: none !important;
            }
            .btn-burger {
                display: flex !important;
                width: 38px;
                height: 38px;
                flex-shrink: 0;
            }

            nav.main-nav {
                display: none;
            }

            .media-split-grid {
                display: flex;
                flex-direction: column;
            }
            /* Move Live Stream News to top on mobile */
            .media-split-grid > .media-split-right {
                order: 1;
                margin-bottom: 24px;
            }
            .media-split-grid > .media-split-left {
                order: 2;
            }
            .live-stream-card {
                position: static;
                padding: 18px;
            }
            .cards-grid-3 {
                grid-template-columns: 1fr;
            }
            .support-banner {
                padding: 24px 20px;
                margin: 32px 0;
                border-radius: var(--radius-lg);
            }
            .support-title {
                font-size: 19px;
            }
            .support-subtitle {
                font-size: 13px;
                margin-top: 4px;
            }
            .support-header {
                margin-bottom: 16px;
            }
            .support-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .support-card {
                padding: 14px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
            .support-card:first-child {
                padding-top: 0;
            }
            .support-card:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
            .support-phone {
                font-size: 21px;
                padding: 2px 0;
            }
            .main-lead-img-wrap {
                height: 240px;
            }
            .main-lead-title {
                font-size: 19px;
                line-height: 1.35;
                display: block !important;
                -webkit-line-clamp: unset !important;
                overflow: visible !important;
            }
            .main-lead-excerpt {
                display: block !important;
                -webkit-line-clamp: unset !important;
                overflow: visible !important;
                line-height: 1.55;
            }
            .side-news-title {
                display: block !important;
                -webkit-line-clamp: unset !important;
                overflow: visible !important;
            }
            .pub-row-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .pub-img-wrap {
                width: 100%;
                height: 180px;
            }
            .strip-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            footer.site-footer {
                padding: 28px 0 18px;
            }
            .footer-top-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                padding-bottom: 20px;
            }
            .footer-brand-side {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .footer-logo svg {
                height: 34px;
            }
            .footer-mission {
                font-size: 13px;
                line-height: 1.45;
            }
            .footer-cta-btns {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                width: 100%;
            }
            .footer-cta-btns .btn-handbook-pill,
            .footer-cta-btns .btn-tg {
                padding: 8px 14px;
                font-size: 12px;
            }
            .footer-nav-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 16px 0;
            }
            .footer-nav-links {
                gap: 10px 18px;
            }
            .footer-nav-links a {
                font-size: 13px;
            }
            .footer-badges-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 16px 0;
            }
            .footer-badges-list {
                gap: 8px;
            }
            .footer-badge {
                font-size: 12px;
                padding: 5px 12px;
            }
            .footer-meta-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding-top: 16px;
            }
            .footer-project-links {
                gap: 8px 12px;
            }
            .footer-project-links a {
                font-size: 12px;
            }
            .footer-bottom {
                padding-top: 14px;
                font-size: 11px;
                line-height: 1.4;
                text-align: center;
            }
        }

        @media (max-width: 420px) {
            .container {
                padding: 0 12px;
            }
            .header-content {
                min-height: 64px;
                padding: 6px 0;
            }
            .header-brand {
                gap: 1px;
            }
            .logo-box svg {
                height: 34px;
                max-width: 125px;
            }
            .logo-tagline {
                font-size: 9.5px;
            }
            .header-actions {
                gap: 6px;
            }
            .btn-handbook-pill {
                font-size: 10.5px;
                padding: 5px 9px;
            }
            .header-actions .btn-tg {
                display: none !important;
            }
            .btn-burger {
                width: 36px;
                height: 36px;
            }
        }
    
/* VETERAN Redesign - Article Styles */

        :root {
            --brand-navy: #004E7D;
            --brand-navy-dark: #003657;
            --brand-yellow: #FAB613;
            --brand-yellow-hover: #E5A305;
            --brand-blue: #446893;
            --brand-blue-light: #7588AB;
            
            --bg-page: #F8FAFC;
            --bg-surface: #FFFFFF;
            --border-color: #E2E8F0;
            --border-light: #EDF2F7;
            
            --text-primary: #0F172A;
            --text-secondary: #334155;
            --text-muted: #64748B;
            --text-light: #94A3B8;

            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 9999px;

            --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
            --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.05);
            --shadow-card: 0 4px 20px -2px rgba(0, 78, 125, 0.06);

            --container-width: 1220px;
            --article-max-width: 820px;
        }

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

        body {
            font-family: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

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

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Site Header (Deep Navy Masthead with Gold Accent) */
        header.site-header {
            background-color: #002B49;
            border-bottom: 3px solid #FAB613;
            box-shadow: 0 4px 20px rgba(0, 43, 73, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 84px;
            padding: 10px 0;
        }
        .header-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 4px;
        }
        .logo-box svg {
            height: 44px;
            width: auto;
            aspect-ratio: 224 / 71;
            display: block;
        }
        .logo-tagline {
            font-size: 11px;
            font-weight: 500;
            color: #94A3B8;
            line-height: 1.25;
            letter-spacing: -0.01em;
            text-transform: none;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }
        .logo-tagline--desktop {
            display: flex;
        }
        .logo-tagline--mobile {
            display: none;
        }

        nav.main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav.main-nav a {
            font-size: 15px;
            font-weight: 600;
            color: #E2E8F0;
            padding: 8px 14px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.18s ease;
        }
        nav.main-nav a:hover {
            color: #FFFFFF;
            background-color: rgba(255, 255, 255, 0.12);
        }
        nav.main-nav a.active {
            color: #FAB613;
            font-weight: 700;
            background-color: rgba(250, 182, 19, 0.15);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .btn-handbook-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FAB613;
            color: #002B49;
            font-size: 13px;
            font-weight: 800;
            padding: 9px 20px;
            border-radius: var(--radius-full);
            white-space: nowrap;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(250, 182, 19, 0.35);
            transition: all 0.18s ease;
            text-decoration: none;
        }
        .btn-handbook-pill:hover {
            background-color: #FFC700;
            box-shadow: 0 4px 14px rgba(250, 182, 19, 0.5);
            transform: translateY(-1px);
            color: #002B49;
        }
        .btn-tg {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.12);
            color: #FFFFFF;
            border: 1px solid rgba(255, 255, 255, 0.25);
            font-size: 13px;
            font-weight: 600;
            padding: 9px 18px;
            border-radius: var(--radius-full);
            transition: all 0.15s ease;
            text-decoration: none;
        }
        .btn-tg:hover {
            background-color: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.4);
            color: #FFFFFF;
        }

        /* Mobile Burger Button */
        .btn-burger {
            display: none;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--brand-navy);
            cursor: pointer;
            flex-shrink: 0;
            transition: all 0.15s ease;
            padding: 0;
        }
        .btn-burger:hover,
        .btn-burger:focus-visible {
            background: #EBF4F9;
            border-color: var(--brand-navy);
            outline: none;
        }
        .btn-burger svg {
            width: 20px;
            height: 20px;
        }

        /* Mobile Drawer & Overlay */
        body.menu-open {
            overflow: hidden !important;
            touch-action: none;
        }
        .mobile-drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.45);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }
        .mobile-drawer-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 86%;
            max-width: 360px;
            background: #FFFFFF;
            z-index: 1001;
            transform: translateX(100%);
            visibility: hidden;
            pointer-events: none;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
            display: flex;
            flex-direction: column;
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .mobile-drawer.is-open {
            transform: translateX(0);
            visibility: visible;
            pointer-events: auto;
        }
        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-color);
            background: #F8FAFC;
        }
        .drawer-title-box {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .drawer-title-label {
            font-size: 13px;
            font-weight: 800;
            color: var(--brand-navy);
            letter-spacing: 0.02em;
        }
        .drawer-subtitle {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .btn-drawer-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.15s ease;
        }
        .btn-drawer-close:hover {
            color: var(--brand-navy);
            background: #EBF4F9;
            border-color: var(--brand-navy);
        }
        .drawer-body {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            flex: 1;
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .drawer-nav-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 14px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            transition: background 0.15s, color 0.15s;
        }
        .drawer-nav-item:hover,
        .drawer-nav-item.active {
            background: #EBF4F9;
            color: var(--brand-navy);
        }
        .drawer-nav-arrow {
            color: #94A3B8;
            transition: transform 0.15s ease, color 0.15s ease;
        }
        .drawer-nav-item:hover .drawer-nav-arrow,
        .drawer-nav-item.active .drawer-nav-arrow {
            color: var(--brand-navy);
            transform: translateX(3px);
        }
        .drawer-section-title {
            font-size: 11px;
            font-weight: 800;
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding-bottom: 4px;
            border-bottom: 1px solid var(--border-color);
        }
        .drawer-card {
            display: flex;
            flex-direction: column;
            padding: 14px 16px;
            border-radius: 12px;
            text-decoration: none;
            transition: transform 0.15s, box-shadow 0.15s;
        }
        .drawer-card--handbook {
            background: #EAF7EE;
            border: 1px solid #B8E6C4;
            gap: 6px;
        }
        .drawer-card--handbook:hover {
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
            transform: translateY(-1px);
        }
        .drawer-card--handbook .drawer-card-btn {
            color: #166534;
        }
        .drawer-card-badge {
            align-self: flex-start;
            font-size: 10px;
            font-weight: 800;
            background: #FAB613;
            color: #0F172A;
            padding: 3px 8px;
            border-radius: 6px;
            letter-spacing: 0.02em;
        }
        .drawer-card-title {
            font-size: 14px;
            font-weight: 800;
            color: #0F172A;
            line-height: 1.3;
        }
        .drawer-card-desc {
            font-size: 12px;
            color: #475569;
            line-height: 1.4;
        }
        .drawer-card-btn {
            font-size: 12px;
            font-weight: 800;
            color: #004E7D;
            margin-top: 4px;
        }
        .drawer-card--tg {
            background: #EBF4F9;
            border: 1px solid #C8DFEC;
            gap: 6px;
        }
        .drawer-card--tg:hover {
            box-shadow: 0 4px 12px rgba(0, 78, 125, 0.15);
            transform: translateY(-1px);
        }
        .drawer-card-tg-header {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--brand-navy);
        }
        .drawer-card-tg-name {
            font-size: 14px;
            font-weight: 800;
        }
        .drawer-topics {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .drawer-topic-chip {
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-navy);
            background: #F1F5F9;
            border: 1px solid var(--border-color);
            padding: 5px 12px;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.15s ease;
        }
        .drawer-topic-chip:hover {
            background: #004E7D;
            color: #FFFFFF;
            border-color: #004E7D;
        }
        .drawer-footer {
            padding: 16px 20px;
            border-top: 1px solid var(--border-color);
            background: #F8FAFC;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .drawer-footer-text {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.35;
            margin: 0;
        }
        .drawer-footer-copy {
            font-size: 10px;
            font-weight: 600;
            color: #94A3B8;
        }

        /* Article Navigation / Breadcrumbs */
        .article-top-nav {
            padding: 24px 0 16px;
        }
        .article-top-nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-back-feed {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            color: var(--brand-navy);
            font-size: 13px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            transition: all 0.15s ease;
        }
        .btn-back-feed:hover {
            background-color: var(--brand-navy);
            color: #FFFFFF;
            border-color: var(--brand-navy);
        }
        .btn-back-feed svg {
            width: 16px;
            height: 16px;
        }
        .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .breadcrumbs a:hover {
            color: var(--brand-navy);
            text-decoration: underline;
        }

        /* Main Article Layout */
        .article-container {
            max-width: var(--article-max-width);
            margin: 0 auto;
            padding-bottom: 60px;
        }

        .article-header {
            margin-bottom: 24px;
        }
        .article-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--brand-navy);
            background-color: #E6F2F8;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            margin-bottom: 14px;
        }
        .article-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            margin-bottom: 18px;
        }
        .article-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .meta-author-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .author-info-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .author-info-desc {
            font-size: 12px;
            color: var(--text-muted);
        }
        .meta-stats-group {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .stat-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .stat-item svg {
            width: 15px;
            height: 15px;
        }

        /* Share bar */
        .share-strip {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .share-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.15s;
        }
        .share-btn:hover {
            border-color: var(--brand-navy);
            color: var(--brand-navy);
            background-color: #F0F7FB;
        }
        .share-btn svg {
            width: 14px;
            height: 14px;
        }

        /* Lead paragraph */
        .article-lead {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.6;
            color: var(--text-secondary);
            margin: 24px 0;
            padding: 16px 20px;
            background-color: #F0F7FB;
            border-left: 4px solid var(--brand-navy);
            border-radius: var(--radius-md);
        }

        /* Featured image */
        .article-img-box {
            margin: 28px 0 32px;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }
        .article-img-box img {
            width: 100%;
            height: 420px;
            object-fit: cover;
        }
        .article-img-caption {
            font-size: 12px;
            color: var(--text-muted);
            padding: 10px 16px;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-light);
        }

        /* Content Typography */
        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: #1E293B;
        }
        .article-content p {
            margin-bottom: 20px;
        }
        .article-content img {
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.06);
            max-width: 100%;
            height: auto;
            margin: 24px 0;
            display: block;
        }
        .article-content h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--brand-navy);
            letter-spacing: -0.015em;
            margin: 36px 0 16px;
            line-height: 1.3;
        }
        .article-content h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 28px 0 12px;
            line-height: 1.35;
        }

        /* Contextual In-Article Links - Actively Highlighted */
        .article-content a:not(.crosslink-link):not(.promo-btn):not(.filter-chip) {
            color: var(--brand-navy);
            font-weight: 700;
            text-decoration: underline;
            text-decoration-color: var(--brand-yellow);
            text-decoration-thickness: 2.5px;
            text-underline-offset: 3.5px;
            border-radius: 3px;
            padding: 1px 3px;
            transition: all 0.2s ease;
        }
        .article-content a:not(.crosslink-link):not(.promo-btn):not(.filter-chip):hover {
            color: #0F172A;
            background-color: rgba(255, 199, 0, 0.22);
            text-decoration-color: var(--brand-navy);
        }

        /* Editorial Quotes / Blockquotes */
        .article-content blockquote,
        .article-quote {
            margin: 28px 0;
            padding: 18px 24px;
            background: #F8FAFC;
            border-left: 4px solid var(--brand-navy);
            border-radius: 0 12px 12px 0;
            font-size: 17px;
            line-height: 1.65;
            color: #1E293B;
            font-style: italic;
            position: relative;
        }
        .article-content blockquote p,
        .article-quote p {
            margin-bottom: 8px;
        }
        .article-content blockquote p:last-of-type,
        .article-quote p:last-of-type {
            margin-bottom: 0;
        }
        .article-content blockquote cite,
        .article-quote cite {
            display: block;
            margin-top: 10px;
            font-size: 14px;
            font-style: normal;
            font-weight: 700;
            color: var(--brand-navy);
        }

        /* Editorial Crosslink Card (Читайте також) - High Impact Active Highlight */
        .article-crosslink-card {
            display: block;
            margin: 28px 0;
            padding: 18px 22px;
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-left: 5px solid var(--brand-yellow);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            text-decoration: none !important;
        }
        .article-crosslink-card:hover {
            background: #FFFFFF;
            border-color: #CBD5E1;
            border-left-color: var(--brand-navy);
            box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
            transform: translateY(-2px);
        }
        .crosslink-badge {
            display: inline-flex;
            align-items: center;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--brand-navy);
            background: rgba(15, 23, 42, 0.06);
            padding: 4px 10px;
            border-radius: 6px;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        .crosslink-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            text-decoration: none !important;
            color: var(--brand-navy) !important;
        }
        .crosslink-title {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.45;
            color: var(--brand-navy);
            transition: color 0.2s ease;
        }
        .article-crosslink-card:hover .crosslink-title {
            color: #0284C7;
        }
        .crosslink-arrow {
            flex-shrink: 0;
            color: var(--brand-navy);
            transition: transform 0.25s ease, color 0.2s ease;
        }
        .article-crosslink-card:hover .crosslink-arrow {
            transform: translateX(5px);
            color: #0284C7;
        }
        @media (max-width: 640px) {
            .article-crosslink-card {
                padding: 14px 16px;
                margin: 22px 0;
                border-radius: 10px;
            }
            .crosslink-title {
                font-size: 15px;
                line-height: 1.4;
            }
        }

        /* Diia Callout Box */
        .diia-callout-box {
            background-color: #F0F7FB;
            border: 1px solid #D0E4F2;
            border-left: 4px solid var(--brand-navy);
            border-radius: var(--radius-lg);
            padding: 22px 26px;
            margin: 28px 0;
        }
        .diia-callout-title {
            font-size: 16px;
            font-weight: 800;
            color: var(--brand-navy);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .diia-callout-title svg {
            width: 18px;
            height: 18px;
        }
        .diia-callout-text {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        /* Checklist / Steps */
        .steps-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px;
            margin: 28px 0;
            box-shadow: var(--shadow-sm);
        }
        .steps-card-title {
            font-size: 17px;
            font-weight: 800;
            color: var(--brand-navy);
            margin-bottom: 16px;
        }
        .step-row {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 14px;
        }
        .step-row:last-child {
            margin-bottom: 0;
        }
        .step-number {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: var(--brand-navy);
            color: #FFFFFF;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .step-content {
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-secondary);
        }

        /* Handbook Cross-Promo Banner */
        .article-handbook-promo {
            background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 100%);
            border-radius: var(--radius-xl);
            padding: 26px 32px;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin: 40px 0;
        }
        .promo-title {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 4px;
        }
        .promo-desc {
            font-size: 13px;
            color: #E2E8F0;
        }
        .promo-btn {
            background-color: var(--brand-yellow);
            color: #0F172A;
            font-size: 13px;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: var(--radius-lg);
            white-space: nowrap;
            transition: background-color 0.15s;
        }
        .promo-btn:hover {
            background-color: var(--brand-yellow-hover);
        }

        /* Related Articles Section */
        .related-section {
            background-color: #FFFFFF;
            border-top: 1px solid var(--border-color);
            padding: 48px 0;
            margin-top: 40px;
        }
        .related-header {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
        }
        .related-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--brand-navy);
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        @media (max-width: 1024px) {
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        .related-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .related-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
        }
        .related-img-wrap {
            height: 150px;
            background-color: #E2E8F0;
            overflow: hidden;
        }
        .related-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .related-card:hover .related-img {
            transform: scale(1.03);
        }
        .related-body {
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .related-cat {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--brand-navy);
            background-color: #EBF4F9;
            border-radius: var(--radius-full);
            padding: 2px 8px;
            letter-spacing: 0.03em;
            margin-bottom: 8px;
        }
        .related-card-title {
            font-size: 15px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-primary);
            margin-bottom: 10px;
            transition: color 0.15s;
        }
        .related-card:hover .related-card-title {
            color: var(--brand-navy);
        }
        .related-time {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Modern Compact Footer (Authentic Veteran Navy & Gold) */
        footer.site-footer {
            background-color: var(--brand-navy-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: #E2E8F0;
            padding: 42px 0 24px;
        }
        .footer-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            padding-bottom: 26px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-brand-side {
            display: flex;
            align-items: center;
            gap: 24px;
            max-width: 820px;
        }
        .footer-logo {
            display: inline-block;
            flex-shrink: 0;
        }
        .footer-logo svg {
            height: 40px;
            width: auto;
        }
        .footer-mission {
            font-size: 13px;
            line-height: 1.55;
            color: #94A3B8;
            margin: 0;
        }
        .footer-cta-btns {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .footer-cta-btns .btn-handbook-pill {
            padding: 9px 18px;
            font-size: 13px;
        }
        .footer-cta-btns .btn-tg {
            padding: 9px 16px;
            font-size: 13px;
        }

        /* Horizontal Media Navigation Row (Matches Header) */
        .footer-nav-row {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-row-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--brand-yellow);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .footer-nav-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 28px;
        }
        .footer-nav-links a {
            font-size: 14px;
            font-weight: 600;
            color: #CBD5E1;
            text-decoration: none;
            transition: color 0.15s ease;
        }
        .footer-nav-links a:hover {
            color: #FFFFFF;
        }

        /* Legal Support Badges Row (Header Chip Style) */
        .footer-badges-row {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-badges-list {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px 10px;
        }
        .footer-badge {
            font-family: 'Onest', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #E2E8F0;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.16);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.15s ease;
            white-space: nowrap;
        }
        .footer-badge:hover {
            background: rgba(250, 182, 19, 0.15);
            border-color: var(--brand-yellow);
            color: #FFFFFF;
            transform: translateY(-1px);
        }

        /* Project Links & Disclaimer */
        .footer-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-top: 18px;
            font-size: 13px;
            color: #94A3B8;
        }
        .footer-project-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-project-links a {
            color: #94A3B8;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.15s ease;
        }
        .footer-project-links a:hover {
            color: #FFFFFF;
        }
        .footer-project-links .dot-sep {
            color: rgba(255, 255, 255, 0.25);
            user-select: none;
        }
        .footer-copy {
            font-size: 12px;
            color: #94A3B8;
            white-space: nowrap;
        }
        .footer-bottom {
            padding-top: 12px;
            font-size: 12px;
            color: #64748B;
        }

        
        @media (max-width: 768px) {
            .container {
                padding: 0 14px;
            }
            .header-content {
                min-height: 68px;
                padding: 8px 0;
            }
            .header-brand {
                flex-shrink: 1;
                min-width: 0;
                gap: 2px;
            }
            .logo-box svg {
                height: 38px;
                width: auto;
                max-width: 140px;
            }
            .logo-tagline {
                font-size: 10px;
                line-height: 1.2;
            }
            .logo-tagline--desktop {
                display: none !important;
            }
            .logo-tagline--mobile {
                display: flex !important;
            }
            .logo-tagline span {
                white-space: nowrap;
            }
            .header-actions {
                gap: 8px;
                flex-shrink: 0;
                display: flex;
                align-items: center;
            }
            .btn-handbook-pill {
                font-size: 11px;
                padding: 6px 12px;
                white-space: nowrap;
                flex-shrink: 0;
            }
            .header-actions .btn-tg {
                display: none !important;
            }
            .btn-burger {
                display: flex !important;
                width: 38px;
                height: 38px;
                flex-shrink: 0;
            }

            nav.main-nav {
                display: none;
            }

            .article-title {
                font-size: 24px;
            }
            .article-img-box img {
                height: 240px;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
            .article-handbook-promo {
                flex-direction: column;
                align-items: flex-start;
            }
            footer.site-footer {
                padding: 28px 0 18px;
            }
            .footer-top-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                padding-bottom: 20px;
            }
            .footer-brand-side {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .footer-logo svg {
                height: 34px;
            }
            .footer-mission {
                font-size: 13px;
                line-height: 1.45;
            }
            .footer-cta-btns {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                width: 100%;
            }
            .footer-cta-btns .btn-handbook-pill,
            .footer-cta-btns .btn-tg {
                padding: 8px 14px;
                font-size: 12px;
            }
            .footer-nav-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 16px 0;
            }
            .footer-nav-links {
                gap: 10px 18px;
            }
            .footer-nav-links a {
                font-size: 13px;
            }
            .footer-badges-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 16px 0;
            }
            .footer-badges-list {
                gap: 8px;
            }
            .footer-badge {
                font-size: 12px;
                padding: 5px 12px;
            }
            .footer-meta-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding-top: 16px;
            }
            .footer-project-links {
                gap: 8px 12px;
            }
            .footer-project-links a {
                font-size: 12px;
            }
            .footer-bottom {
                padding-top: 14px;
                font-size: 11px;
                line-height: 1.4;
                text-align: center;
            }
        }

        @media (max-width: 420px) {
            .container {
                padding: 0 12px;
            }
            .header-content {
                min-height: 64px;
                padding: 6px 0;
            }
            .header-brand {
                gap: 1px;
            }
            .logo-box svg {
                height: 34px;
                max-width: 125px;
            }
            .logo-tagline {
                font-size: 9.5px;
            }
            .header-actions {
                gap: 6px;
            }
            .btn-handbook-pill {
                font-size: 10.5px;
                padding: 5px 9px;
            }
            .header-actions .btn-tg {
                display: none !important;
            }
            .btn-burger {
                width: 36px;
                height: 36px;
            }
        }

/* ==========================================================================
   VETERAN Redesign - Archive, Category & Search Styles
   ========================================================================== */

.archive-section {
    padding: 24px 0 56px;
}

.archive-header-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-card);
}

.archive-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 78, 125, 0.08);
    color: var(--brand-navy);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 12px;
}

.archive-title {
    font-family: 'e-UkraineHead', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0 0 8px;
}

.archive-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.archive-categories-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.archive-categories-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

.archive-category-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--brand-navy);
    background: #F0F7FB;
    padding: 3px 10px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.archive-category-link:hover {
    background: #E0EFF8;
}

.archive-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.archive-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.archive-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1E293B;
    overflow: hidden;
    display: block;
}

.archive-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.archive-card:hover .archive-card-img {
    transform: scale(1.03);
}

.archive-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
}

.archive-card-media .badge-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-yellow);
    color: #0F172A;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.archive-card-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.archive-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.archive-card-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.archive-card-title {
    font-family: 'e-UkraineHead', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin: 0 0 10px;
    flex-grow: 1;
}

.archive-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.archive-card-title a:hover {
    color: var(--brand-navy);
}

.archive-card-excerpt {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.archive-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-navy);
    transition: gap 0.15s ease, color 0.15s ease;
    text-decoration: none;
}

.archive-card-link:hover {
    color: var(--brand-navy-dark);
    gap: 9px;
}

/* Empty State */
.archive-empty-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 56px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    margin: 32px 0;
}

.empty-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F0F7FB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.empty-title {
    font-family: 'e-UkraineHead', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.empty-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 24px;
    line-height: 1.55;
}

.empty-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-secondary-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 9999px;
    background: #F1F5F9;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
}

.btn-secondary-pill:hover {
    background: #E2E8F0;
}

/* Pagination */
.archive-pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.pagination li a:hover {
    border-color: var(--brand-navy);
    color: var(--brand-navy);
    background: #F0F7FB;
}

.pagination li.active span {
    background: var(--brand-navy);
    color: #FFFFFF;
    border-color: var(--brand-navy);
}

.pagination li.disabled span {
    color: var(--text-light);
    background: transparent;
    border-color: transparent;
}

/* Subnavigation inside category header card */
.category-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    margin-top: 18px;
}

.category-subnav-pill {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: #F1F5F9;
    padding: 6px 14px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.category-subnav-pill:hover {
    background: #E2E8F0;
    color: var(--brand-navy);
}

.category-subnav-pill.active {
    background: var(--brand-navy);
    color: #FFFFFF;
}

/* Featured Lead Card inside category archive */
.featured-lead-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.featured-lead-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: block;
    background: #1E293B;
}

.featured-lead-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-lead-card:hover .featured-lead-img {
    transform: scale(1.03);
}

.featured-lead-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-lead-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.featured-lead-title {
    font-family: 'e-UkraineHead', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.featured-lead-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.featured-lead-title a:hover {
    color: var(--brand-navy);
}

.featured-lead-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-lead-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--brand-navy);
    text-decoration: none;
    transition: gap 0.15s ease;
}

.featured-lead-link:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .archive-section {
        padding: 16px 0 36px;
    }
    .archive-header-card {
        padding: 20px 18px;
        margin-bottom: 20px;
        border-radius: var(--radius-lg);
    }
    .archive-title {
        font-size: 20px;
    }
    .archive-description {
        font-size: 13px;
    }
    .archive-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .archive-card-body {
        padding: 16px 18px;
    }
    .archive-card-title {
        font-size: 16px;
    }
    .featured-lead-card {
        grid-template-columns: 1fr;
    }
    .featured-lead-content {
        padding: 20px;
    }
    .featured-lead-title {
        font-size: 18px;
    }
    .category-subnav {
        gap: 6px;
        padding-top: 12px;
    }
    .category-subnav-pill {
        font-size: 12px;
        padding: 5px 12px;
    }
}
    