
        :root {
            --color-bg: #faf8f5;
            --color-bg-alt: #f0ebe3;
            --color-text: #1a1a1a;
            --color-text-muted: #5c5c5c;
            --color-accent: #ba2d0b;
            --color-accent-light: #fdf0ed;
            --color-border: #d4cfc6;
            --color-white: #ffffff;
            --color-sunday: #ba2d0b;
            
            --font-display: 'Fraunces', Georgia, serif;
            --font-body: 'Source Sans 3', -apple-system, sans-serif;
            
            --space-xs: 0.25rem;
            --space-sm: 0.5rem;
            --space-md: 1rem;
            --space-lg: 1.5rem;
            --space-xl: 2.5rem;
            --space-2xl: 4rem;
            
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 16px;
        }

        /* Breadcrumbs */
        .breadcrumb-nav {
            background: var(--color-bg-alt, #f5f0e8);
            border-bottom: 1px solid var(--color-border, #d4cfc6);
            padding: 12px 24px;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--color-text-muted, #5c5c5c);
            list-style: none;
            padding: 0;
        }
        .breadcrumb a {
            color: var(--color-text-muted, #5c5c5c);
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: var(--color-accent, #ba2d0b);
        }
        .breadcrumb-sep {
            color: var(--color-border, #d4cfc6);
            font-size: 0.75rem;
        }
        .breadcrumb-current {
            color: var(--color-text, #1a1a1a);
            font-weight: 500;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-body);
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }
        /* Sticky Header */
        header {
            background: var(--color-white);
            border-bottom: 1px solid var(--color-border);
            padding: var(--space-md) 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
            gap: var(--space-md);
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--color-text);
            text-decoration: none;
            flex-shrink: 0;
        }
        .logo span { color: var(--color-accent); }
        
        /* Search in header */
        .header-search {
            flex: 1;
            max-width: 300px;
            position: relative;
        }
        .header-search input {
            width: 100%;
            padding: var(--space-sm) var(--space-md);
            padding-left: 36px;
            border: 1px solid var(--color-border);
            border-radius: 20px;
            font-size: 0.9rem;
            background: var(--color-bg);
            cursor: text;
            transition: all 0.2s;
        }
        .header-search input:hover {
            border-color: var(--color-text-muted);
        }
        .header-search::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235c5c5c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");
            background-size: contain;
            pointer-events: none;
        }
        
        nav { display: flex; gap: var(--space-lg); align-items: center; }
        nav a { 
            font-size: 0.9rem; 
            color: var(--color-text-muted); 
            text-decoration: none; 
            transition: color 0.2s;
            white-space: nowrap;
        }
        nav a:hover, nav a.active { color: var(--color-text); }
        /* Dropdown meny */
        .nav-dropdown {
            position: relative;
        }
        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.9rem;
            color: var(--color-text-muted);
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: color 0.2s;
        }
        .nav-dropdown-toggle:hover { color: var(--color-text); }
        .nav-dropdown-toggle::after {
            content: '▾';
            font-size: 0.7rem;
            transition: transform 0.2s;
        }
        .nav-dropdown:hover .nav-dropdown-toggle::after {
            transform: rotate(180deg);
        }
        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: var(--space-sm);
            min-width: 220px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.2s;
            z-index: 1001;
        }
        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(4px);
        }
        .nav-dropdown-section {
            padding: var(--space-xs) 0;
        }
        .nav-dropdown-section:not(:last-child) {
            border-bottom: 1px solid var(--color-border);
            margin-bottom: var(--space-xs);
        }
        .nav-dropdown-label {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: var(--space-xs) var(--space-sm);
        }
        .nav-dropdown-item {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-sm);
            border-radius: var(--radius-md);
            color: var(--color-text);
            text-decoration: none;
            font-size: 0.9rem;
            transition: background 0.15s;
        }
        .nav-dropdown-item:hover {
            background: var(--color-bg);
        }
        .nav-dropdown-item span {
            font-size: 1.1rem;
        }

        
        .menu-toggle { 
            display: none; 
            background: none; 
            border: none; 
            font-size: 1.5rem; 
            cursor: pointer; 
            padding: var(--space-sm); 
        color: var(--color-text-muted); }
        
        @media (max-width: 900px) {
            .header-search { max-width: 200px; }
            nav a { font-size: 0.85rem; }
        }
        
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .header-search { display: none; }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-white);
                border-bottom: 1px solid var(--color-border);
                padding: var(--space-md) var(--space-lg);
                flex-direction: column;
                gap: var(--space-md);
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                z-index: 1000;
            }
            nav.active { display: flex; }
            nav a { font-size: 1rem; }
    /* Dropdown på mobil - vis alltid åpen */
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle { display: none; }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        background: transparent;
        min-width: auto;
    }
    .nav-dropdown-section {
        padding: 0;
        border-bottom: none;
        margin-bottom: 0;
    }
    .nav-dropdown-label {
        font-size: 0.75rem;
        padding: var(--space-sm) 0 var(--space-xs);
        color: var(--color-accent);
    }
    .nav-dropdown-item {
        padding: var(--space-xs) 0;
    }
}


        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            padding: var(--space-md) 0;
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }
        
        .breadcrumb a {
            color: var(--color-text-muted);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: var(--color-text);
        }
        
        .breadcrumb span {
            margin: 0 var(--space-sm);
        }
        
                

/* Hero */
        .hero {
            padding: var(--space-2xl) 0;
            text-align: center;
            border-bottom: 1px solid var(--color-border);
        }
        
        .hero-icon {
            font-size: 4rem;
            margin-bottom: var(--space-md);
        }
        
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: var(--space-sm);
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--color-text-muted);
            margin-bottom: var(--space-lg);
        }
        
        /* Current year highlight - lyst design */
        .current-year-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            max-width: 550px;
            margin: 0 auto;
            border: 1px solid var(--color-border);
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: var(--space-lg);
            align-items: center;
        }
        
        .current-year-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }
        
        .current-year-info {
            min-width: 0;
        }
        
        .current-year-info h2 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--color-text-muted);
            font-weight: 400;
            margin-bottom: var(--space-xs);
        }
        
        .current-year-date {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 700;
            color: var(--color-text);
            line-height: 1.2;
        }
        
        .current-year-weekday {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            margin-top: var(--space-xs);
        }
        
        .countdown {
            text-align: center;
            background: linear-gradient(135deg, var(--color-accent) 0%, #d4380d 100%);
            color: white;
            padding: var(--space-md) var(--space-lg);
            border-radius: var(--radius-md);
            min-width: 100px;
        }
        
        .countdown-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            opacity: 0.9;
            margin-top: var(--space-xs);
        }
        
        .countdown.passed {
            background: var(--color-bg-alt);
        }
        
        .countdown.passed .countdown-value {
            color: var(--color-text-muted);
        }
        
        .countdown.passed .countdown-label {
            color: var(--color-text-muted);
        }
        
        /* Main content */
        .main-content {
            padding: var(--space-2xl) 0;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: var(--space-xl);
        }
        
        @media (max-width: 800px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Article content */
        .article {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            border: 1px solid var(--color-border);
        }
        
        .article h2 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: var(--space-md);
            margin-top: var(--space-xl);
        }
        
        .article h2:first-child {
            margin-top: 0;
        }
        
        .article p {
            margin-bottom: var(--space-md);
            color: var(--color-text);
        }
        
        .article ul {
            margin-bottom: var(--space-md);
            padding-left: var(--space-lg);
        }
        
        .article li {
            margin-bottom: var(--space-sm);
        }
        
        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }
        
        .sidebar-section {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            border: 1px solid var(--color-border);
        }
        
        .sidebar-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: var(--space-md);
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }
        
        .sidebar-title::before {
            content: '';
            width: 3px;
            height: 1em;
            background: var(--color-accent);
            border-radius: 2px;
        }
        
        /* Year list */
        .year-list {
            list-style: none;
        }
        
        .year-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-sm) 0;
            border-bottom: 1px solid var(--color-bg-alt);
        }
        
        .year-item:last-child {
            border-bottom: none;
        }
        
        .year-item-year {
            font-weight: 600;
        }
        
        .year-item-date {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }
        
        .year-item.current {
            background: var(--color-accent-light);
            margin: 0 calc(-1 * var(--space-lg));
            padding: var(--space-sm) var(--space-lg);
            border-radius: var(--radius-sm);
            border-bottom: none;
        }
        
        .year-item.current .year-item-year {
            color: var(--color-accent);
        }
        
        .year-item.passed {
            opacity: 0.5;
        }
        
        /* Related holidays */
        .related-list {
            list-style: none;
        }
        
        .related-item {
            margin-bottom: var(--space-sm);
        }
        
        .related-item a {
            display: block;
            padding: var(--space-sm) var(--space-md);
            background: var(--color-bg);
            border-radius: var(--radius-md);
            text-decoration: none;
            color: var(--color-text);
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .related-item a:hover {
            background: var(--color-accent-light);
            color: var(--color-accent);
        }
        
        .see-all-link {
            display: block;
            margin-top: var(--space-md);
            padding: var(--space-md);
            background: var(--color-accent);
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        
        .see-all-link:hover {
            background: #a02609;
            transform: translateY(-1px);
        }
        
        /* Next holiday after this */
        .next-holiday-section {
            background: var(--color-bg-alt);
        }
        
        .next-holiday-link {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: var(--space-md);
            align-items: center;
            padding: var(--space-md);
            background: var(--color-white);
            border-radius: var(--radius-md);
            text-decoration: none;
            color: var(--color-text);
            transition: all 0.2s;
            border: 1px solid var(--color-border);
        }
        
        .next-holiday-link:hover {
            border-color: var(--color-accent);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        .next-holiday-icon {
            font-size: 1.8rem;
        }
        
        .next-holiday-info {
            min-width: 0;
        }
        
        .next-holiday-link .next-holiday-name {
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .next-holiday-link .next-holiday-date {
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }
        
        .next-holiday-arrow {
            font-size: 1.2rem;
            color: var(--color-text-muted);
            transition: transform 0.2s;
        }
        
        .next-holiday-link:hover .next-holiday-arrow {
            transform: translateX(3px);
            color: var(--color-accent);
        }
        
        /* Vacation tip */
        .vacation-tip {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: var(--color-white);
            border: none;
        }
        
        .vacation-tip .sidebar-title {
            color: var(--color-white);
        }
        
        .vacation-tip .sidebar-title::before {
            background: #fbbf24;
        }
        
        .vacation-tip p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: var(--space-md);
        }
        
        .vacation-tip-highlight {
            background: rgba(255,255,255,0.1);
            padding: var(--space-md);
            border-radius: var(--radius-md);
            font-size: 0.9rem;
        }
        
        .vacation-tip-highlight strong {
            color: #fbbf24;
        }
        
        /* Holiday selector */
        .holiday-selector {
            margin-bottom: var(--space-xl);
        }
        
        .holiday-selector label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: var(--space-sm);
            color: var(--color-text-muted);
        }
        
        .holiday-selector select {
            width: 100%;
            padding: var(--space-md);
            font-size: 1rem;
            font-family: var(--font-body);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            background: var(--color-white);
            cursor: pointer;
        }
        
        .holiday-selector select:focus {
            outline: none;
            border-color: var(--color-accent);
        }
        
        /* Footer */
        footer {
            padding: var(--space-xl) 0;
            border-top: 1px solid var(--color-border);
            margin-top: var(--space-2xl);
        }
        
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-md);
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }
        
        .footer-copy {
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }
        
        .footer-links {
            display: flex;
            gap: var(--space-lg);
        }
        
        .footer-links a {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            text-decoration: none;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero {
            animation: fadeInUp 0.5s ease-out;
        }
        
        .article {
            animation: fadeInUp 0.5s ease-out 0.1s backwards;
        }
        
        .sidebar-section {
            animation: fadeInUp 0.5s ease-out backwards;
        }
        
        .sidebar-section:nth-child(1) { animation-delay: 0.15s; }
        .sidebar-section:nth-child(2) { animation-delay: 0.2s; }
        .sidebar-section:nth-child(3) { animation-delay: 0.25s; }
        
        @media (max-width: 600px) {
            
            
            .current-year-card {
                grid-template-columns: 1fr;
                text-align: center;
                gap: var(--space-md);
            }
            
            .current-year-icon {
                margin: 0 auto;
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
            
            .countdown {
                justify-self: center;
            }
        }

        /* Mobile menu */
@media (max-width: 768px) {
nav.active {
                display: flex;
            }
        }
    
        
        
        @media (max-width: 768px) {
}
    
        

    
/* Global search styles */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d4cfc6;
    border-radius: 8px;
    margin-top: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}
.search-results.active { display: block; }
.search-result-item {
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0ebe3;
    transition: background 0.15s;
    display: block;
    text-decoration: none;
    color: inherit;
}
.search-result-item:hover { background: #f0ebe3; }
.search-result-item:last-child { border-bottom: none; }
.search-result-title { font-weight: 500; }
.search-result-sub { font-size: 0.8rem; color: #5c5c5c; }
.search-no-results { padding: 16px; color: #5c5c5c; text-align: center; font-size: 0.9rem; }
.header-search input { cursor: text !important; }
.header-search input:focus {
    outline: none;
    border-color: #ba2d0b !important;
    background: #fff !important;
}





}

/* === Konsistens-override: dropdown 2-kol + breadcrumb === */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    min-width: 480px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 0.5rem !important;
}
@media (max-width: 900px) {
    .nav-dropdown-menu { min-width: 360px !important; }
}
@media (max-width: 600px) {
    .nav-dropdown-menu {
        grid-template-columns: 1fr !important;
        min-width: 260px !important;
    }
}
/* breadcrumb standard */
.breadcrumb-nav {
    background: var(--color-bg-alt, #f5f0e8) !important;
    border-bottom: 1px solid var(--color-border, #d4cfc6) !important;
    padding: 10px 24px !important;
}
.breadcrumb {
    max-width: 1200px !important;
    margin: 0 auto !important;
    list-style: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    font-size: 0.85rem !important;
    color: var(--color-text-muted, #5c5c5c) !important;
}
.breadcrumb a {
    color: var(--color-text-muted, #5c5c5c) !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}
.breadcrumb a:hover { color: var(--color-accent, #ba2d0b) !important; }
.breadcrumb li { display: flex !important; align-items: center !important; gap: 0 !important; }
.breadcrumb li:not(:last-child)::after {
    content: '›' !important;
    margin: 0 6px !important;
    color: var(--color-border, #ccc) !important;
    font-size: 0.8rem !important;
}
.breadcrumb-sep { display: none !important; }
.breadcrumb-current { color: var(--color-text, #1a1a1a) !important; font-weight: 500 !important; }
/* === Slutt konsistens-override === */


/* AdSense-enheter som designkort */
ins.adsbygoogle {
    display: block;
    margin: 1.75rem auto;
    max-width: 100%;
    background: var(--color-white, #fff);
    border: 1px solid var(--color-border, #e5e0d8);
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 6px;
}
ins.adsbygoogle::before {
    content: "Annonse";
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted, #6b6b6b);
    padding: 2px 6px 6px;
}
/* Skjul rammen helt til Google faktisk har fylt enheten */
ins.adsbygoogle[data-ad-status="unfilled"],
ins.adsbygoogle:not([data-ad-status]) {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
ins.adsbygoogle[data-ad-status="unfilled"]::before,
ins.adsbygoogle:not([data-ad-status])::before {
    content: none;
}


.holiday-table { width: 100%; border-collapse: collapse; margin: var(--space-lg, 1.5rem) 0; background: var(--color-white, #fff); border-radius: var(--radius-lg, 12px); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.holiday-table th, .holiday-table td { padding: var(--space-md, 1rem); text-align: left; border-bottom: 1px solid var(--color-border, #e5e0d8); }
.holiday-table th { background: var(--color-accent, #ba2d0b); color: white; font-weight: 600; }
.holiday-table tr:last-child td { border-bottom: none; }
.holiday-table tbody tr:hover { background: var(--color-accent-light, #fdf0ed); }
.holiday-table a { color: var(--color-accent, #ba2d0b); text-decoration: none; }
.holiday-table tr.row-highlight { background: var(--color-accent-light, #fdf0ed); font-weight: 600; }
.day-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: 500; }
.day-weekday { background: #d1fae5; color: #065f46; }
.day-weekend { background: #e0e7ff; color: #3730a3; }
main a:not(.day-badge):not([style*="color"]) { color: var(--color-accent, #ba2d0b); }
main a:visited:not(.day-badge):not([style*="color"]) { color: var(--color-accent, #ba2d0b); }
@media (max-width: 640px) {
  .holiday-table { font-size: 0.9rem; }
  .holiday-table th, .holiday-table td { padding: var(--space-sm, 0.5rem); }
}


.kg-skip { position: absolute; left: -9999px; top: 0; background: var(--color-accent, #ba2d0b); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 1000; font-weight: 600; text-decoration: none; }
.kg-skip:focus { left: 0; }
