/* PRZC Research — Reports hub styles. Extracted from reports/index.html. */
        /* reports/index.html overrides */
        body {
            line-height: 1.6;
        }
        .header-actions .btn {
            display: inline-block; padding: 8px 16px; font-size: 0.8rem; font-weight: 600;
            cursor: pointer; border: 1px solid #000; background: #000;
            color: #fff; text-decoration: none; transition: background 0.2s;
        }
        .header-actions .btn:hover { background: #333; }
        .header-actions .btn-outline {
            background: #fff; color: #000; border: 1px solid #000;
        }
        .header-actions .btn-outline:hover { background: #000; color: #fff; }
        .free-banner {
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.72);
        }

        .hero {
            background: #000000;
            color: #ffffff;
            padding: 6rem 0 5rem;
            margin-top: 100px;
            text-align: center;
            box-shadow: 0 -100px 0 0 #000;
        }
        body.banner-closed .hero {
            margin-top: 64px;
            box-shadow: 0 -64px 0 0 #000;
        }

        .hero-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.82);
            margin-bottom: 1rem;
        }

        .hero h1 {
            font-family: 'Inter', 'Inter Fallback', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .hero .hero-sub {
            font-size: 1.125rem;
            color: rgba(255,255,255,0.8);
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .controls {
            background: #f8f8f8;
            padding: 2rem 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .controls-inner {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .search-box {
            flex: 1;
            min-width: 250px;
        }

        .search-box input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #000000;
            background: #ffffff;
            font-size: 0.95rem;
        }

        .search-box input:focus {
            outline: 2px solid #000000;
        }

        .filter-buttons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.75rem 1.25rem;
            background: #ffffff;
            border: 1px solid #000000;
            color: #000000;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s;
        }

        .filter-btn:hover {
            background: #000000;
            color: #ffffff;
        }

        .filter-btn.active {
            background: #000000;
            color: #ffffff;
        }

        .research-section {
            padding: 3rem 0;
        }

        .category-header {
            font-family: 'Inter', 'Inter Fallback', sans-serif;
            font-size: 1.75rem;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #000000;
        }

        .research-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .research-card {
            background: #ffffff;
            border: 1px solid #000000;
            padding: 2rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .research-card:hover {
            background: #000000;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .research-card:hover .read-more {
            background: #ffffff;
            color: #000000;
        }

        .research-card:hover .card-title,
        .research-card:hover .card-description,
        .research-card:hover .card-category,
        .research-card:hover .card-date {
            color: #ffffff;
        }

        .research-card:hover .card-tag {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.3);
            color: rgba(255,255,255,0.85);
        }

        .research-card:hover .card-words {
            color: rgba(255,255,255,0.6);
        }

        .card-category {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            opacity: 0.7;
        }

        .card-title {
            font-family: 'Inter', 'Inter Fallback', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .card-description {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid currentColor;
            opacity: 0.7;
        }

        .card-date {
            font-size: 0.875rem;
        }

        .read-more {
            padding: 0.5rem 1rem;
            background: #000000;
            color: #ffffff;
            border: 1px solid #000000;
            font-size: 0.875rem;
            font-weight: 600;
            transition: all 0.2s;
        }

        /* page-specific footer tweaks kept intentionally (margin-top on page) */

        .no-results {
            text-align: center;
            padding: 4rem 2rem;
        }
        .no-results h3 {
            font-family: 'Inter', 'Inter Fallback', sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 0.75rem;
        }
        .no-results p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1.75rem;
        }
        .no-results .cta-btn {
            display: inline-block;
            padding: 0.85rem 2.25rem;
            background: #000;
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            letter-spacing: 0.5px;
            border: 2px solid #000;
            transition: background 0.2s, color 0.2s;
        }
        .no-results .cta-btn:hover { background: #333; border-color: #333; }

        .card-tag {
            display: inline-block;
            padding: 2px 8px;
            background: #FFFFFF;
            border: 1px solid #e0e0e0;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-right: 4px;
            margin-bottom: 4px;
            color: #555;
        }
        .card-tags {
            margin-bottom: 0.5rem;
        }
        .card-words {
            font-size: 0.75rem;
            color: #5e5e5e;
            margin-left: 0.5rem;
        }

        .agenda-section {
            background: #000;
            color: #fff;
            padding: 3rem 0;
            margin-bottom: 0;
        }
        .agenda-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .agenda-title {
            font-family: 'Inter', 'Inter Fallback', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
        }
        .agenda-subtitle {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.78);
            letter-spacing: 0.5px;
        }
        .agenda-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.12);
        }
        .agenda-item {
            background: #000;
            padding: 1.25rem 1.5rem;
        }
        .agenda-item-label {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
            margin-bottom: 0.4rem;
        }
        .agenda-item-title {
            font-family: 'Inter', 'Inter Fallback', sans-serif;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0.25rem;
            line-height: 1.4;
        }
        .agenda-item-status {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.72);
        }
        .agenda-item-status.soon { color: rgba(255,255,255,0.78); }

        @media (max-width: 768px) {
            .hero {
                padding: 4rem 0 3rem;
            }
            .hero h1 {
                font-size: 1.75rem;
            }
            .hero .hero-sub {
                font-size: 1rem;
            }

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

            .controls-inner {
                flex-direction: column;
                align-items: stretch;
            }

            .search-box {
                width: 100%;
            }

            /* Filter tabs: horizontal scroll with edge-fade affordance */
            .filter-buttons-wrap {
                position: relative;
                width: 100%;
                max-width: 100%;
                overflow: hidden;
            }
            .filter-buttons-wrap::after {
                content: "";
                position: absolute;
                top: 0; right: 0; bottom: 4px;
                width: 36px;
                background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 70%, rgba(255,255,255,1) 100%);
                pointer-events: none;
                opacity: 1;
                transition: opacity 0.15s;
                z-index: 1;
            }
            .filter-buttons-wrap.at-end::after { opacity: 0; }
            .filter-buttons {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding-bottom: 4px;
                scroll-snap-type: x proximity;
            }
            .filter-buttons::-webkit-scrollbar { display: none; }
            .filter-btn {
                white-space: nowrap;
                flex-shrink: 0;
                scroll-snap-align: start;
                min-height: 44px;
            }

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

            .header-cta { display: none; }
            p, li { line-height: 1.7; }
            .search-box input { font-size: 16px; }
            .footer-disclaimer p { font-size: 12px !important; }
        }
        @media (max-width: 480px) {
            .agenda-grid { grid-template-columns: 1fr; }
        }

        /* ── Skip Link ── */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #000;
            color: #fff;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 9999;
            font-size: 14px;
            transition: top 0.15s;
        }
        .skip-link:focus {
            top: 0;
        }

        /* ── Focus-Visible ── */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible,
        [tabindex]:focus-visible {
            outline: 2px solid #000;
            outline-offset: 2px;
        }

        header a:focus-visible,
        header button:focus-visible,
        footer a:focus-visible,
        footer button:focus-visible,
        .hero a:focus-visible,
        .agenda-section a:focus-visible,
        #commission-banner a:focus-visible,
        #commission-banner button:focus-visible {
            outline-color: #fff;
        }

        /* ── Contrast Fixes ── */
        .agenda-subtitle { color: rgba(255,255,255,0.75) !important; }
        .agenda-item-label { color: rgba(255,255,255,0.75) !important; }
        .agenda-item-status { color: rgba(255,255,255,0.75) !important; }
        .footer-logo p { color: rgba(255,255,255,0.75) !important; }
        .footer-col ul li a { color: rgba(255,255,255,0.75) !important; }
        .footer-col ul li a:hover { color: #fff !important; }
        .social-link { color: rgba(255,255,255,0.75) !important; }
        .social-link:hover { color: #fff !important; }
        .footer-disclaimer p { color: rgba(255,255,255,0.75) !important; }
        .footer-copyright { color: rgba(255,255,255,0.75) !important; }
        .footer-policies a { color: rgba(255,255,255,0.75) !important; }
        .footer-policies a:hover { color: #fff !important; }
        .free-banner { color: rgba(255,255,255,0.75) !important; }

        /* ── Mobile hamburger and nav for reports page ── */
        .mobile-toggle {
            display: none; flex-direction: column; gap: 5px;
            cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px;
            align-items: center; justify-content: center; background: none; border: none;
        }
        .mobile-toggle span {
            display: block; width: 22px; height: 2px; background: #fff; transition: all 0.3s;
        }
        .mobile-nav {
            position: fixed; top: 0; left: 0; width: 100%;
            background: #000; padding: 5rem 1.5rem 1.5rem; z-index: 199;
            border-bottom: 1px solid #333;
            transform: translateY(-10px); opacity: 0; visibility: hidden;
            transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
        }
        .mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
        .mobile-nav ul { list-style: none; padding: 0; margin: 0 0 1rem; }
        .mobile-nav ul li { margin-bottom: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .mobile-nav ul li:last-child { border-bottom: none; }
        .mobile-nav ul li a {
            display: block; padding: 0.85rem 0; color: #fff;
            font-size: 0.95rem; font-weight: 500; text-decoration: none;
        }
