/* ============================================================
   SocioloVerse.AI — Design System 2026
   Atlantic-Stil · Blue + Orange Lead · Mobile First
   Playfair Display + Inter · Dark / Light Mode
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
    --blue:        #3b82f6;
    --blue-dark:   #1d4ed8;
    --blue-deep:   #1e3a8a;
    --orange:      #f97316;
    --orange-dark: #ea580c;
    --radius:      4px;
    --radius-lg:   8px;
    --font-body:   'Inter', system-ui, -apple-system, sans-serif;
    --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --ease:        .22s ease;
    --header-h:    64px;
    --border-rule: 3px solid var(--orange);
}

[data-theme=dark] {
    --bg:        #0a0f1e;
    --bg-card:   #111827;
    --bg-hover:  #162035;
    --bg-raised: #1a2540;
    --border:    rgba(59,130,246,.18);
    --border-hi: rgba(59,130,246,.40);
    --text:      #eef2ff;
    --text-2:    #a8b9d8;
    --text-3:    #7185a8;
    --link:      #60a5fa;
    --shadow:    0 2px 16px rgba(0,0,0,.5);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.6);
    --rule-bg:   rgba(249,115,22,.08);
    --drop-cap-color: #f97316;
}

[data-theme=light] {
    --bg:        #fafbff;
    --bg-card:   #ffffff;
    --bg-hover:  #f0f4ff;
    --bg-raised: #eef4ff;
    --border:    rgba(15,23,42,.10);
    --border-hi: rgba(15,23,42,.20);
    --text:      #0f172a;
    --text-2:    #3b4f6b;
    --text-3:    #6b7f99;
    --link:      #1d4ed8;
    --shadow:    0 2px 12px rgba(0,0,0,.07);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
    --rule-bg:   rgba(234,88,12,.05);
    --drop-cap-color: #ea580c;
}

/* ============================================================
   RESET + BASE
   ============================================================ */

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

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.72;
    transition: background var(--ease), color var(--ease);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--text);
    font-weight: 700;
}

a {
    color: var(--link);
    text-decoration: none;
    transition: color var(--ease), opacity var(--ease);
}

a:hover { opacity: .8; }

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

ul, ol { list-style: none; }

button, input, select, textarea {
    font-family: var(--font-body);
    font-size: 1rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-text {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

main { min-height: 60vh; }

/* ============================================================
   HEADER — Atlantic-Stil: dünne Linie, großes Logo
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--header-h);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background var(--ease), border-color var(--ease);
}

.site-header .container {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 1rem;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    max-height: calc(var(--header-h) - 24px);
    width: auto;
    display: block;
}

.logo-wordmark {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.01em;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo-img {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    flex-shrink: 0;
}

.logo-wordmark span {
    color: var(--orange);
}

.logo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    margin-left: .1rem;
}

/* Nav */
.header-nav {
    display: none;
    align-items: center;
    gap: 0;
    margin-left: auto;
}

@media (min-width: 900px) {
    .header-nav { display: flex; }
}

/* ============================================================
   DESKTOP DROPDOWN NAV
   ============================================================ */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--text-2);
    padding: .4rem .65rem;
    border-radius: var(--radius);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    transition: color var(--ease), background var(--ease);
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn.active {
    color: var(--text);
    background: var(--bg-hover);
    opacity: 1;
}

.nav-arrow {
    font-size: .6rem;
    transition: transform .2s ease;
}

.nav-dropdown-btn[aria-expanded="true"] .nav-arrow,
.nav-dropdown-open + .nav-dropdown-btn .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown-Menü */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    padding: .5rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 400;
}

.nav-dropdown-menu.nav-dropdown-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-wide {
    min-width: 280px;
}

.nav-dropdown-menu a {
    display: block;
    padding: .6rem 1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--ease), color var(--ease);
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-hover);
    color: var(--text);
    border-left-color: var(--orange);
}

.nav-dropdown-menu small {
    display: block;
    font-size: .7rem;
    color: var(--text-3);
    font-weight: 400;
    margin-top: .1rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-left: auto;
}

@media (min-width: 900px) {
    .header-actions { margin-left: .75rem; }
}

.lang-switch-group {
    display: flex;
    border: 1px solid var(--border-hi);
    border-radius: var(--radius);
    overflow: hidden;
}

.lang-btn {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .3rem .55rem;
    color: var(--text-3);
    text-decoration: none;
    transition: background var(--ease), color var(--ease);
    opacity: 1;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--blue);
    color: #fff;
    opacity: 1;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border-hi);
    border-radius: var(--radius);
    width: 34px;
    height: 30px;
    cursor: pointer;
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: border-color var(--ease), background var(--ease);
    flex-shrink: 0;
}

.theme-toggle:hover { background: var(--bg-hover); border-color: var(--border-hi); }

[data-theme=dark]  .theme-icon-sun  { display: inline; }
[data-theme=dark]  .theme-icon-moon { display: none; }
[data-theme=light] .theme-icon-sun  { display: none; }
[data-theme=light] .theme-icon-moon { display: inline; }

.bau-nav-link {
    font-size: .85rem;
    text-decoration: none;
    color: var(--text-3);
    transition: color var(--ease);
    opacity: 1;
}

.bau-nav-link:hover { color: var(--orange); }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    margin-right: .25rem;
}

@media (min-width: 900px) { .mobile-menu-btn { display: none; } }

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-2);
    border-radius: 2px;
    transition: var(--ease);
}

/* ============================================================
   MOBILE OVERLAY + NAV DRAWER (Slide-in von rechts)
   ============================================================ */

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

[data-theme=light] .mobile-overlay {
    background: rgba(0,0,0,0.3);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 310;
    width: min(320px, 80vw);
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    min-height: var(--header-h);
}
.mobile-nav-logo {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}
.mobile-nav-logo span {
    color: var(--orange);
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-2);
    padding: .25rem .5rem;
    border-radius: var(--radius);
    transition: color var(--ease), background var(--ease);
}
.mobile-close-btn:hover {
    color: var(--text);
    background: var(--bg-hover);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: .75rem 0;
    flex: 1;
}
.mobile-nav-links a {
    display: block;
    padding: .85rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    transition: background var(--ease), color var(--ease);
    border-left: 3px solid transparent;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--text);
    background: var(--bg-hover);
    border-left-color: var(--orange);
}

/* Mobile Accordion (Gruppen innerhalb Drawer) */
.mobile-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background var(--ease), color var(--ease);
}
.mobile-accordion-btn:hover {
    background: var(--bg-hover);
}
.mobile-accordion-btn .nav-arrow {
    font-size: .7rem;
    color: var(--text-3);
    transition: transform .25s ease;
}
.mobile-accordion-btn.mobile-acc-active .nav-arrow {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 1.25rem;
    background: var(--bg);
}
.mobile-accordion-content.mobile-acc-open {
    max-height: 600px;
    padding: .5rem 1.25rem;
}
.mobile-accordion-content a {
    display: block;
    padding: .55rem 0 .55rem .75rem;
    font-size: .9rem;
    font-weight: 400;
    color: var(--text-2);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color var(--ease), border-color var(--ease);
}
.mobile-accordion-content a:hover {
    color: var(--text);
    border-left-color: var(--orange);
}

.mobile-nav-actions {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}
.mobile-nav-actions a {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-3);
    text-decoration: none;
}
.mobile-nav-actions a:hover {
    color: var(--blue);
}
.mobile-lang-group {
    display: flex;
    border: 1px solid var(--border-hi);
    border-radius: var(--radius);
    overflow: hidden;
}
.mobile-lang-group .lang-btn {
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .55rem;
    color: var(--text-3);
    text-decoration: none;
    transition: background var(--ease), color var(--ease);
}
.mobile-lang-group .lang-btn:hover,
.mobile-lang-group .lang-btn.active {
    background: var(--blue);
    color: #fff;
}

@media (min-width: 900px) {
    .mobile-overlay,
    .mobile-nav { display: none; }
}

/* ============================================================
   TOP RULE — The Atlantic's signature element
   ============================================================ */

.top-rule {
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--blue) 100%);
}

/* ============================================================
   HERO — Atlantic-Stil: Editorial, keine Emoji-Orgie
   ============================================================ */

.hero {
    padding: 4rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
}

/* Hero mit Weltkugel-Hintergrund */
.hero-with-globe {
    position: relative;
    overflow: hidden;
}
.hero-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 1/1;
    pointer-events: none;
    z-index: 0;
    opacity: .8;
}
.hero-with-globe .container {
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.hero-kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: .75rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--orange);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 56ch;
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--orange);
    margin-top: .75rem;
    max-width: 48ch;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-3);
    border: 1px solid var(--border-hi);
    border-radius: 2rem;
    padding: .3rem .75rem;
}

.hero-badge-live {
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* Hero Sidebar — featured stat or quote */
.hero-aside {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    background: var(--rule-bg);
}

.hero-aside-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .6rem;
}

.hero-aside-stat {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.hero-aside-text {
    font-size: .9rem;
    color: var(--text-2);
    margin-top: .4rem;
    line-height: 1.5;
}

/* ============================================================
   SECTION HEADER — Atlantic-Stil: orange top border
   ============================================================ */

.section-header {
    border-top: var(--border-rule);
    padding-top: 1rem;
    margin-bottom: 1.75rem;
}

.section-header h2 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text);
}

.section-header .section-link {
    font-size: .8rem;
    color: var(--text-3);
    font-weight: 500;
    text-decoration: none;
    float: right;
    margin-top: .2rem;
    transition: color var(--ease);
    opacity: 1;
}

.section-header .section-link:hover { color: var(--orange); }

/* ============================================================
   MAGAZINE RACK — Die 7 Blogwelten als Cover-Kacheln
   ============================================================ */

.mag-rack-section {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
}

.mag-rack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 600px) {
    .mag-rack { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
    .mag-rack { grid-template-columns: repeat(4, 1fr); }
}

/* Featured tile — spans 2 cols on desktop */
.mag-tile.featured {
    grid-column: span 2;
}

@media (max-width: 999px) {
    .mag-tile.featured { grid-column: span 1; }
}

.mag-tile {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    aspect-ratio: 3/2;
}

.mag-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hi);
    opacity: 1;
}

.mag-tile-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.mag-tile:hover .mag-tile-cover {
    transform: scale(1.04);
}

.mag-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.05) 0%,
        rgba(0,0,0,.30) 50%,
        rgba(0,0,0,.80) 100%
    );
}

.mag-tile-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.1rem .9rem;
}

.mag-tile-category {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .35rem;
    background: rgba(0,0,0,.35);
    border-radius: 2px;
    padding: .1rem .35rem;
}

.mag-tile-title {
    font-family: var(--font-head);
    font-size: clamp(.9rem, 2vw, 1.1rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.mag-tile.featured .mag-tile-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.mag-tile-desc {
    font-size: .78rem;
    color: rgba(255,255,255,.75);
    margin-top: .3rem;
    line-height: 1.4;
    display: none;
}

@media (min-width: 600px) {
    .mag-tile.featured .mag-tile-desc { display: block; }
}

/* ============================================================
   LATEST ARTICLES — 3-Spalten-Grid wie The Atlantic
   ============================================================ */

.articles-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .article-grid { grid-template-columns: repeat(3, 1fr); }
}

.article-card {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    text-decoration: none;
    color: inherit;
    opacity: 1;
    transition: opacity var(--ease);
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.article-card:hover { opacity: .78; }

.article-card-thumb {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.article-card:hover .article-card-thumb img { transform: scale(1.04); }

.article-card-kicker {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange);
}

.article-card-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

.article-card-excerpt {
    font-size: .875rem;
    color: var(--text-2);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    font-size: .75rem;
    color: var(--text-3);
    margin-top: auto;
}

/* ============================================================
   AI NOON STRIP — Horizontale Karte
   ============================================================ */

.noon-strip {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.noon-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

@media (min-width: 720px) {
    .noon-card { grid-template-columns: 1fr 1fr; align-items: center; }
}

.noon-card-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .5rem;
}

.noon-card h3 {
    font-size: 1.35rem;
    margin-bottom: .5rem;
}

.noon-card p {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.6;
}

.noon-card-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.25rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    transition: gap var(--ease), opacity var(--ease);
    opacity: 1;
}

.noon-card-cta:hover { gap: .7rem; opacity: 1; color: var(--orange-dark); }

.noon-entries {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.noon-entry {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .75rem;
    border-radius: var(--radius);
    background: var(--bg-hover);
    text-decoration: none;
    color: inherit;
    opacity: 1;
    transition: background var(--ease);
}

.noon-entry:hover { background: var(--border); opacity: 1; }

.noon-entry-day {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--orange);
    white-space: nowrap;
    padding-top: .15rem;
    min-width: 40px;
}

.noon-entry-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

/* ============================================================
   GLOSSAR STRIP
   ============================================================ */

.glossar-strip {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.glossar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
}

@media (min-width: 600px) {
    .glossar-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
    .glossar-grid { grid-template-columns: repeat(4, 1fr); }
}

.glossar-chip {
    display: block;
    padding: .7rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: border-color var(--ease), color var(--ease), background var(--ease);
    opacity: 1;
}

.glossar-chip:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--bg-hover);
    opacity: 1;
}

.glossar-chip-term {
    font-weight: 700;
    display: block;
    margin-bottom: .1rem;
}

.glossar-chip-def {
    font-size: .75rem;
    color: var(--text-3);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   GLOSSAR SEITE (Volle Karten)
   ============================================================ */
.glossar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.4rem;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.glossar-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}
.glossar-card .glossar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: .6rem;
}
.glossar-card .glossar-tag {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text-3);
    background: var(--bg-hover);
    padding: .15rem .5rem;
    border-radius: 99px;
}
.glossar-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .4rem;
}
.glossar-card p {
    font-size: .88rem;
    line-height: 1.6;
    color: var(--text-2);
}
.glossar-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: 2.5rem 0 0;
}
@media (min-width: 640px) {
    .glossar-grid-full { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   365-TAGE STRIP
   ============================================================ */

.days-strip {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.days-progress {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.days-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    border-radius: 2px;
    transition: width .6s ease;
}

.days-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
}

@media (min-width: 720px) {
    .days-list { grid-template-columns: repeat(2, 1fr); }
}

.day-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    opacity: 1;
    transition: opacity var(--ease);
}

.day-item:hover { opacity: .7; }

.day-number {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-3);
    min-width: 48px;
    padding-top: .15rem;
}

.day-title {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

/* ============================================================
   SISTER SITES
   ============================================================ */

.sister-strip {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.sister-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sister-grid { grid-template-columns: repeat(2, 1fr); }
}

.sister-card {
    display: block;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--ease), box-shadow var(--ease);
    opacity: 1;
}

.sister-card:hover {
    border-color: var(--border-hi);
    box-shadow: var(--shadow);
    opacity: 1;
}

.sister-card-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: .4rem;
}

.sister-card-name {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .4rem;
}

.sister-card-desc {
    font-size: .85rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* ============================================================
   BAUTAFEL BANNER
   ============================================================ */

.bautafel-banner {
    margin: 2rem 0;
    padding: 1rem 1.25rem;
    background: var(--rule-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .85rem;
}

.bautafel-banner a {
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 1;
}

.bautafel-banner a:hover { opacity: .75; }

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

.site-footer {
    margin-top: 4rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-3);
    margin-top: .5rem;
    line-height: 1.6;
    max-width: 32ch;
}

.footer-nav-col h4 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: .75rem;
}

.footer-nav-col a {
    display: block;
    font-size: .85rem;
    color: var(--text-3);
    text-decoration: none;
    padding: .2rem 0;
    transition: color var(--ease);
    opacity: 1;
}

.footer-nav-col a:hover { color: var(--orange); opacity: 1; }

.footer-bottom {
    margin-top: 2rem;
    padding: 1rem 1.25rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .78rem;
    color: var(--text-3);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer {
    max-width: 720px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.25rem 0;
    border-top: 1px solid var(--border);
    font-size: .78rem;
    color: var(--text-3);
    line-height: 1.6;
}

/* ============================================================
   ARTIKEL-SEITE
   ============================================================ */

.article-hero {
    padding: 2.5rem 0 0;
}

.article-kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .75rem;
    display: block;
}

.article-title {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.15rem;
    color: var(--text-2);
    font-weight: 400;
    line-height: 1.55;
    max-width: 58ch;
    font-family: var(--font-head);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .8rem;
    color: var(--text-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .75rem 0;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}

.article-byline strong {
    color: var(--text);
    font-weight: 600;
}

.article-byline-dot {
    color: var(--border-hi);
}

.article-cover {
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0 2rem;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 240px;
        align-items: start;
    }
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.article-body p { margin-bottom: 1.4em; }

.article-body h2 {
    font-size: 1.5rem;
    margin: 2em 0 .6em;
    border-top: 2px solid var(--orange);
    padding-top: .75rem;
}

.article-body h3 {
    font-size: 1.15rem;
    margin: 1.5em 0 .4em;
    color: var(--text);
}

.article-body blockquote {
    border-left: 3px solid var(--orange);
    padding: .75rem 1.25rem;
    background: var(--rule-bg);
    margin: 1.5em 0;
    font-style: italic;
    color: var(--text-2);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}

.sidebar-toc {
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.sidebar-toc h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: .75rem;
}

.sidebar-toc ol {
    list-style: decimal;
    padding-left: 1.25rem;
}

.sidebar-toc li {
    font-size: .825rem;
    color: var(--text-2);
    margin-bottom: .4rem;
}

.sidebar-toc a {
    color: var(--text-2);
    text-decoration: none;
    opacity: 1;
    transition: color var(--ease);
}

.sidebar-toc a:hover { color: var(--orange); }

/* Reading Progress */
.reading-progress {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    z-index: 150;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    width: 0%;
    transition: width .1s linear;
}

/* ============================================================
   SOCIOLOGICA CHAT WIDGET
   ============================================================ */

.x-chat-widget-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(249,115,22,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    z-index: 300;
    transition: transform var(--ease), box-shadow var(--ease);
}

.x-chat-widget-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(249,115,22,.55);
}

/* ============================================================
   UTILITIES
   ============================================================ */

.u-sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.u-center { text-align: center; }
.u-mt-sm { margin-top: .75rem; }
.u-mt { margin-top: 1.5rem; }
.u-mt-lg { margin-top: 2.5rem; }
.u-mb { margin-bottom: 1.5rem; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */

@media (max-width: 599px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 600px) {
    .hide-desktop { display: none !important; }
}

/* ============================================================
   BAUTAFEL PAGE
   ============================================================ */

.bautafel-hero {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
}

.bautafel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.5rem 0;
}

@media (min-width: 640px) {
    .bautafel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .bautafel-grid { grid-template-columns: repeat(3, 1fr); }
}

.bautafel-card {
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.bautafel-card-status {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.status-done   { color: #22c55e; }
.status-active { color: var(--orange); }
.status-next   { color: var(--blue); }
.status-later  { color: var(--text-3); }

.bautafel-card h3 {
    font-size: 1rem;
    margin-bottom: .35rem;
}

.bautafel-card p {
    font-size: .825rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
    .site-header, .x-chat-widget-btn, .reading-progress { display: none; }
    body { background: #fff; color: #000; }
    .article-body { font-size: .9rem; }
}

/* ============================================================
/* ============================================================
   AI NOON — Design 2026
   ============================================================ */

/* --- Shared Pills --- */
.noon-series-pill {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    background: color-mix(in srgb, var(--orange) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--orange) 25%, transparent);
    border-radius: 99px;
    padding: .2rem .75rem;
}
.noon-day-pill, .noon-date-pill {
    display: inline-block;
    font-size: .75rem;
    color: var(--text-3);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: .2rem .65rem;
}
.noon-bilingual-pill {
    display: inline-block;
    font-size: .65rem;
    font-weight: 600;
    color: var(--blue);
    background: color-mix(in srgb, var(--blue) 12%, transparent);
    border-radius: 99px;
    padding: .15rem .55rem;
}

/* --- Hero --- */
.noon-hero {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
}
.noon-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}
.noon-hero-main { flex: 1; min-width: 0; }
.noon-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: .75rem 0 1rem;
    color: var(--text);
}
.noon-hero-title em { color: var(--orange); font-style: normal; }
.noon-hero-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 60ch;
    margin-bottom: 1.25rem;
}

/* Origin / Story */
.noon-origin-details { display: block; }
.noon-origin-summary {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    list-style: none;
    padding: .4rem 0;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.noon-origin-summary::marker,
.noon-origin-summary::-webkit-details-marker { display: none; }
.noon-origin-summary::before {
    content: '▶';
    font-size: .6rem;
    color: var(--orange);
    transition: transform .2s;
}
details[open] .noon-origin-summary::before { transform: rotate(90deg); }
.noon-origin-body {
    padding: 1rem 0 .25rem 1rem;
    color: var(--text-2);
    font-size: .95rem;
    line-height: 1.7;
    max-width: 68ch;
    border-left: 2px solid var(--orange);
    margin-left: .15rem;
}
.noon-origin-body p { margin-bottom: .65rem; }
.noon-origin-link {
    display: inline-block;
    margin-top: .25rem;
    color: var(--orange);
    font-weight: 500;
    font-size: .875rem;
}

/* Fortschrittsring */
.noon-hero-aside {
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding-top: .5rem;
}
.noon-progress-ring-wrap { position: relative; display: inline-block; }
.noon-progress-ring { width: 90px; height: 90px; display: block; }
.noon-progress-ring-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}
.noon-progress-ring-label strong { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.noon-progress-ring-label span   { font-size: .65rem; color: var(--text-3); }
.noon-progress-sub { font-size: .7rem; color: var(--text-3); }
.noon-bautafel-link {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-2);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .3rem .75rem;
    text-decoration: none;
    transition: all var(--ease);
    white-space: nowrap;
}
.noon-bautafel-link:hover { border-color: var(--orange); color: var(--orange); }

/* Badges-Leiste */
.noon-badges-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.noon-badge-pill {
    font-size: .75rem;
    font-weight: 500;
    color: var(--text-2);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: .3rem .9rem;
    text-decoration: none;
    transition: all var(--ease);
    white-space: nowrap;
}
.noon-badge-pill:hover { border-color: var(--orange); color: var(--orange); }

/* --- Einträge-Sektion --- */
.noon-entries-section { padding: 2.5rem 0 5rem; }
.section-count {
    font-size: .85rem;
    color: var(--text-3);
    font-weight: 500;
}

/* --- Featured Card --- */
.noon-featured-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    margin-bottom: 1.5rem;
    transition: border-color var(--ease), transform var(--ease);
}
.noon-featured-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}
.noon-featured-cover {
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    position: relative;
}
.noon-featured-day-nr {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,.9);
    line-height: 1;
}
.noon-featured-body {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    background: var(--bg-card);
}
.noon-featured-title {
    font-family: var(--font-head);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
}
.noon-featured-teaser {
    font-size: .975rem;
    color: var(--text-2);
    line-height: 1.65;
    flex: 1;
}
.noon-badge-inline {
    font-size: .75rem;
    font-weight: 600;
    color: var(--orange);
    background: color-mix(in srgb, var(--orange) 12%, transparent);
    border-radius: 99px;
    padding: .2rem .65rem;
}

/* --- Grid --- */
.noon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.noon-grid-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    background: var(--bg-card);
    transition: border-color var(--ease), transform var(--ease);
}
.noon-grid-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}
.noon-grid-cover {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}
.noon-grid-day-nr {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,.9);
}
.noon-grid-badge {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    background: rgba(0,0,0,.25);
    border-radius: 99px;
    padding: .2rem .55rem;
    align-self: flex-start;
}
.noon-grid-body {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}
.noon-grid-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin: 0;
}
.noon-grid-teaser {
    font-size: .825rem;
    color: var(--text-2);
    line-height: 1.55;
    flex: 1;
}
.noon-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem;
}
.noon-card-date { font-size: .75rem; color: var(--text-3); }
.noon-card-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .25rem; }
.noon-tag {
    font-size: .68rem;
    color: var(--text-3);
    background: var(--bg-hover);
    border-radius: 99px;
    padding: .15rem .55rem;
}
.noon-card-cta {
    font-size: .8rem;
    font-weight: 600;
    color: var(--orange);
    margin-top: auto;
}

/* --- Einzeltag --- */
.noon-single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding-top: 2rem;
    margin-bottom: 1.5rem;
}
.noon-single-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--text);
}
.noon-single-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 2rem; }
.noon-empty-state { text-align: center; padding: 4rem 0; color: var(--text-3); }
.noon-empty-icon  { font-size: 3rem; display: block; margin-bottom: 1rem; }

/* Artikel-Navigation Einzeltag */
.noon-article-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.noon-nav-btn {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-2);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .5rem 1rem;
    text-decoration: none;
    transition: all var(--ease);
}
.noon-nav-btn:hover { border-color: var(--orange); color: var(--orange); }
.noon-nav-home { font-size: .85rem; font-weight: 600; color: var(--orange); text-decoration: none; }

/* content-narrow */
.content-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

/* Responsive */
@media (max-width: 768px) {
    .noon-hero-inner { flex-direction: column; gap: 1.5rem; }
    .noon-hero-aside { flex-direction: row; align-items: center; gap: 1.5rem; }
    .noon-featured-card { grid-template-columns: 1fr; }
    .noon-featured-cover { min-height: 160px; }
    .noon-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .noon-grid { grid-template-columns: 1fr; }
}

/* Pulse-Animation für Live-Badge */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .4; }
}

/* ============================================================
   ATLANTIC-STIL ARTIKEL-KOMPONENTEN (artikel.php)
   ============================================================ */

/* Top Rule */
.top-rule{
    height:4px;
    background:linear-gradient(90deg,var(--orange) 0%,var(--blue) 100%)
}

/* Reading Progress (fixed unter Header) */
.read-progress{
    position:fixed;
    top:var(--header-h);left:0;right:0;
    height:2px;
    background:var(--border);
    z-index:200
}
.read-progress-bar{
    height:100%;
    background:linear-gradient(90deg,var(--orange),var(--blue));
    width:0;
    transition:width .1s linear
}

/* Article Hero */
.article-hero{padding:3rem 0 0;border-bottom:1px solid var(--border);margin-bottom:0}
.article-kicker{
    display:flex;align-items:center;gap:.75rem;
    font-size:.74rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
    color:var(--orange);margin-bottom:1rem
}
.kicker-dot{width:6px;height:6px;border-radius:50%;background:var(--orange);flex-shrink:0}
.article-series-badge{
    background:var(--rule-bg);border:1px solid rgba(249,115,22,.25);
    border-radius:2rem;padding:.2rem .7rem;
    font-size:.72rem;font-weight:700;color:var(--orange);letter-spacing:.05em;text-transform:uppercase
}
.article-title{
    font-size:clamp(1.8rem,5vw,3.1rem);font-weight:800;
    letter-spacing:-.025em;line-height:1.08;margin-bottom:1.1rem
}
.article-subtitle{
    font-size:1.2rem;font-style:italic;color:var(--text-2);
    line-height:1.55;max-width:60ch;font-family:var(--font-head);margin-bottom:1.5rem
}
.article-byline{
    display:flex;align-items:center;gap:1rem;
    padding:.85rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);
    font-size:.8rem;color:var(--text-3);flex-wrap:wrap;margin-bottom:0
}
.byline-author{font-weight:600;color:var(--text)}
.byline-sep{color:var(--border-hi)}
.byline-date,.byline-readtime{color:var(--text-3)}
.byline-lang{margin-left:auto}
.byline-lang a{
    font-size:.72rem;font-weight:700;color:var(--text-3);
    border:1px solid var(--border-hi);border-radius:2px;
    padding:.15rem .4rem;margin-left:.25rem;opacity:1
}
.byline-lang a.active{color:var(--blue);border-color:var(--blue)}

/* Cover Image — volle Breite */
.article-cover-wrap{margin:0 0 2.5rem}
.article-cover{
    width:100%;aspect-ratio:21/9;object-fit:cover;
    border-radius:0 0 var(--radius-lg) var(--radius-lg)
}
.article-cover-caption{font-size:.75rem;color:var(--text-3);padding:.5rem 1.25rem 0;font-style:italic}

/* Article Layout: TOC Sidebar + Body */
.article-layout{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:3rem;padding:2.5rem 0 4rem;
    align-items:start;max-width:1100px;margin:0 auto
}
@media(max-width:900px){
    .article-layout{grid-template-columns:1fr}
    .article-sidebar{display:none}
}

/* Sidebar TOC */
.article-sidebar{position:sticky;top:calc(var(--header-h) + 1.5rem)}
.toc-box{
    background:var(--bg-card);border:1px solid var(--border);
    border-radius:var(--radius-lg);padding:1.1rem 1.25rem
}
.toc-label{font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-3);margin-bottom:.75rem}
.toc-list{list-style:none}
.toc-list li{
    border-left:2px solid var(--border);
    padding-left:.75rem;margin-bottom:.4rem
}
.toc-list li.active-section{border-left-color:var(--orange)}
.toc-list a{
    font-size:.82rem;color:var(--text-2);line-height:1.4;transition:color var(--ease);opacity:1
}
.toc-list a:hover,.toc-list a.active{color:var(--orange);opacity:1}
.toc-sub{padding-left:.75rem;margin-top:.3rem}
.toc-sub li{border-left:none;padding-left:0}
.toc-sub a{font-size:.76rem;color:var(--text-3)}

/* Sidebar Meta */
.sidebar-meta{margin-top:1.25rem;padding:1rem 1.25rem;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg)}
.sidebar-meta-row{
    display:flex;justify-content:space-between;align-items:center;
    font-size:.78rem;color:var(--text-3);padding:.3rem 0;
    border-bottom:1px solid var(--border)
}
.sidebar-meta-row:last-child{border-bottom:none}
.sidebar-meta-row strong{color:var(--text);font-size:.82rem}

/* Article Body Styles */
.article-body{font-size:1.02rem;line-height:1.82;color:var(--text)}

/* Drop Cap (nur erster Absatz) */
.article-body>p:first-of-type::first-letter{
    font-family:var(--font-head);
    font-size:3.6em;font-weight:800;
    color:var(--drop-cap-color);
    float:left;line-height:.82;
    margin:.06em .12em -.02em 0;
    padding:.02em 0
}
.article-body p{margin-bottom:1.5em}
.article-body p+p{text-indent:0}

.article-body h2{
    font-size:1.45rem;font-weight:700;
    margin:2.5em 0 .7em;padding-top:1em;
    border-top:2px solid var(--orange);
    color:var(--text)
}
.article-body h3{
    font-size:1.15rem;font-weight:700;
    margin:1.8em 0 .5em;color:var(--text)
}
.article-body h3::before{
    content:'';display:inline-block;
    width:4px;height:1em;
    background:var(--blue);
    margin-right:.5em;vertical-align:middle;
    border-radius:2px
}

.article-body blockquote{
    border-left:3px solid var(--orange);
    background:var(--rule-bg);
    padding:.9rem 1.3rem;
    margin:1.75em 0;
    font-style:italic;font-family:var(--font-head);
    font-size:1.08rem;color:var(--text-2);
    border-radius:0 var(--radius) var(--radius) 0;
    position:relative
}
.article-body blockquote::before{
    content:'\201C';font-size:3rem;
    color:var(--orange);opacity:.35;
    position:absolute;top:-.3rem;left:.5rem;
    font-family:var(--font-head);line-height:1
}
.article-body blockquote p{margin-bottom:0;padding-left:.5rem}

.article-body hr{border:none;border-top:1px solid var(--border);margin:2.5em 0}
.article-body strong{color:var(--text);font-weight:700}
.article-body em{color:var(--text)}
.article-body a{color:var(--orange);text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px;opacity:1}
.article-body a:hover{opacity:.7}
/* Begriff-Link (orange) */
.article-body a.begriff{color:var(--orange);font-weight:600}
/* Denker-Link (blau) */
.article-body a.denker{color:var(--blue)}

/* Ampel-System */
.ampel{display:inline-flex;align-items:center;gap:.35rem;font-size:.8rem;font-weight:600;padding:.2rem .6rem;border-radius:2rem;margin:.15rem .1rem}
.ampel-green{background:rgba(34,197,94,.12);color:#22c55e;border:1px solid rgba(34,197,94,.25)}
.ampel-yellow{background:rgba(234,179,8,.1);color:#ca8a04;border:1px solid rgba(234,179,8,.25)}
.ampel-red{background:rgba(239,68,68,.1);color:#ef4444;border:1px solid rgba(239,68,68,.25)}

/* Pull Quote (volle Breite, kein Anführungszeichen) */
.pull-quote{
    font-family:var(--font-head);font-size:1.4rem;font-weight:700;
    line-height:1.35;color:var(--text);
    border-top:3px solid var(--orange);border-bottom:1px solid var(--border);
    padding:1.1rem 0;margin:2.2em 0;font-style:italic
}

/* Lese-Modi Buttons (Atlantic) */
.reading-modes{
    display:flex;gap:.75rem;
    margin-bottom:2.5rem;flex-wrap:wrap
}
.mode-btn{
    display:flex;align-items:center;gap:.5rem;
    padding:.5rem 1rem;
    border:1px solid var(--border-hi);border-radius:var(--radius);
    font-size:.82rem;font-weight:600;color:var(--text-2);
    cursor:pointer;background:var(--bg-card);transition:all var(--ease);
    text-decoration:none;opacity:1
}
.mode-btn:hover,.mode-btn.active{background:var(--orange);border-color:var(--orange);color:#fff;opacity:1}
.mode-btn.active-blue{background:var(--blue);border-color:var(--blue);color:#fff}
.mode-btn .mode-icon{font-size:1rem}

/* Brainteaser */
.brainteaser{margin:2.5em 0;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden}
.brainteaser-header{
    display:flex;align-items:center;gap:.6rem;
    padding:.9rem 1.1rem;background:var(--bg-raised);
    cursor:pointer;font-size:.85rem;font-weight:700;letter-spacing:.03em;color:var(--text)
}
.brainteaser-header span{font-size:.95rem}
.brainteaser-body{padding:1rem 1.25rem;font-size:.9rem;line-height:1.7;color:var(--text-2);display:none}
.brainteaser-body.open{display:block}
.brainteaser-hint{font-size:.78rem;color:var(--text-3);margin-top:.75rem;font-style:italic;border-top:1px solid var(--border);padding-top:.65rem}

/* Article Footer Navigation */
.article-footer-nav{
    display:grid;grid-template-columns:1fr 1fr;
    gap:1rem;margin:3rem 0;
    border-top:1px solid var(--border);padding-top:2rem
}
.article-footer-prev,.article-footer-next{
    padding:1rem 1.1rem;
    border:1px solid var(--border);border-radius:var(--radius-lg);
    background:var(--bg-card);
    text-decoration:none;opacity:1;
    transition:border-color var(--ease),background var(--ease)
}
.article-footer-prev:hover,.article-footer-next:hover{border-color:var(--orange);background:var(--rule-bg);opacity:1}
.article-footer-next{text-align:right}
.article-footer-dir{font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--text-3);margin-bottom:.3rem}
.article-footer-title{font-family:var(--font-head);font-size:.95rem;font-weight:700;color:var(--text)}

/* Reading Recommendations */
.reading-recs{margin:2rem 0;padding:1.5rem;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg)}
.reading-recs-label{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-3);margin-bottom:1rem}
.reading-recs-list{display:flex;flex-direction:column;gap:.65rem}
.reading-rec-item{
    display:flex;gap:.75rem;align-items:flex-start;
    text-decoration:none;opacity:1;padding:.6rem;
    border-radius:var(--radius);transition:background var(--ease)
}
.reading-rec-item:hover{background:var(--bg-hover);opacity:1}
.reading-rec-num{font-family:var(--font-head);font-size:1.2rem;font-weight:800;color:var(--orange);min-width:24px;line-height:1;padding-top:.1rem}
.reading-rec-title{font-size:.9rem;font-weight:600;color:var(--text);line-height:1.4}
.reading-rec-source{font-size:.76rem;color:var(--text-3);margin-top:.15rem}

.chat-btn-removed{
    position:fixed;bottom:1.75rem;right:1.75rem;
    width:52px;height:52px;border-radius:50%;
    background:var(--orange);border:none;
    cursor:pointer;box-shadow:0 4px 20px rgba(249,115,22,.45);
    font-size:1.3rem;color:#fff;
    display:flex;align-items:center;justify-content:center;
    z-index:300;transition:transform var(--ease),box-shadow var(--ease)
}
.chat-btn-removed:hover{transform:scale(1.08);box-shadow:0 6px 28px rgba(249,115,22,.6)}
.chat-panel-removed{
    position:fixed;bottom:5.5rem;right:1.75rem;
    width:340px;max-height:460px;
    background:var(--bg-card);border:1px solid var(--border-hi);
    border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);
    z-index:299;display:flex;flex-direction:column;overflow:hidden;
    transform:translateY(20px) scale(.96);opacity:0;
    pointer-events:none;transition:all .25s ease
}
.chat-panel-removed.open{transform:none;opacity:1;pointer-events:auto}
.chat-header{display:flex;align-items:center;justify-content:space-between;padding:.75rem 1rem;border-bottom:1px solid var(--border);background:var(--bg-raised)}
.chat-header-title{font-weight:700;font-size:.9rem}
.chat-close{background:none;border:none;color:var(--text-3);cursor:pointer;font-size:1.1rem;padding:.1rem .3rem;border-radius:3px;line-height:1}
.chat-close:hover{color:var(--text);background:var(--bg-hover)}
.chat-messages{flex:1;overflow-y:auto;padding:.9rem 1rem;display:flex;flex-direction:column;gap:.75rem;font-size:.88rem}
.chat-msg{padding:.65rem .85rem;border-radius:var(--radius);line-height:1.55;max-width:88%}
.chat-msg.assistant{background:var(--bg-raised);color:var(--text-2);align-self:flex-start}
.chat-msg.user{background:var(--orange);color:#fff;align-self:flex-end}
.chat-input-row{display:flex;gap:.5rem;padding:.75rem 1rem;border-top:1px solid var(--border)}
.chat-input{flex:1;padding:.5rem .75rem;border:1px solid var(--border-hi);border-radius:var(--radius);background:var(--bg-hover);color:var(--text);font-size:.85rem;font-family:var(--font-body)}
.chat-input:focus{outline:none;border-color:var(--orange)}
.chat-send{padding:.5rem .85rem;background:var(--orange);color:#fff;border:none;border-radius:var(--radius);cursor:pointer;font-size:.85rem;font-weight:600;transition:background var(--ease)}
.chat-send:hover{background:var(--orange-dark)}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .site-header, .chat-btn-removed, .chat-panel-removed, .read-progress { display: none; }
    body { background: #fff; color: #000; }
    .article-body { font-size: .9rem; }
}

/* ============================================================
   365-TAGE-KALENDER – Outlook-Stil (ok-*)
   ============================================================ */

.ok-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem 1.25rem 3rem;
}

/* Intro-Bereich */
.ok-intro {
    margin-bottom: 1.25rem;
}
.ok-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.6vw, 34px);
    font-weight: 700;
    margin: .25rem 0 .4rem;
}
.ok-sub {
    color: var(--text-2);
    font-size: .92rem;
    margin-bottom: .75rem;
    line-height: 1.5;
}
.ok-progress-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .6rem;
}
.ok-progress-bar {
    flex: 1;
    max-width: 300px;
    height: 6px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.ok-progress-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 4px;
    transition: width .5s ease;
}
.ok-progress-label {
    font-size: .8rem;
    color: var(--text-3);
    white-space: nowrap;
}
.ok-views {
    display: flex;
    gap: .4rem;
}
.ok-view-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .35rem .75rem;
    border: 1px solid var(--border-hi);
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-2);
    background: var(--bg-card);
    text-decoration: none;
    transition: all var(--ease);
}
.ok-view-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.ok-view-active {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
}

/* Monatsthema-Badge */
.ok-theme {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    flex-wrap: wrap;
    padding: .65rem 1rem;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: .85rem;
}
.ok-theme-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(249,115,22,.1);
    padding: .1rem .45rem;
    border-radius: 4px;
}
.ok-theme-sub {
    color: var(--text-3);
    font-size: .82rem;
}

/* Hauptlayout: Grid + Sidebar */
.ok-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Monatskopf (Outlook-Stil) */
.ok-month-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .25rem;
    padding: .5rem 0;
}
.ok-month-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}
.ok-month-nav {
    display: flex;
    align-items: center;
    gap: .35rem;
}
.ok-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-hi);
    border-radius: 5px;
    background: var(--bg-card);
    color: var(--text-2);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--ease);
    line-height: 1;
}
.ok-nav-btn:hover {
    background: var(--bg-hover);
    border-color: var(--orange);
    color: var(--orange);
}
.ok-nav-disabled {
    opacity: .25;
    cursor: default;
    pointer-events: none;
}
.ok-today-btn {
    display: inline-flex;
    align-items: center;
    padding: .25rem .7rem;
    border: 1px solid var(--orange);
    border-radius: 5px;
    background: transparent;
    color: var(--orange);
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: all var(--ease);
}
.ok-today-btn:hover {
    background: var(--orange);
    color: #fff;
}

/* Wochentage */
.ok-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 2px;
}
.ok-weekdays span {
    text-align: center;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--text-3);
    padding: .4rem 0 .2rem;
    text-transform: uppercase;
}

/* Grid mit Tagen */
.ok-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.ok-cell {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: .25rem .2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    min-height: 52px;
    transition: background var(--ease), border-color var(--ease);
    overflow: hidden;
}
.ok-empty {
    background: transparent;
    border-color: transparent;
}
.ok-today {
    background: color-mix(in srgb, var(--orange) 12%, var(--bg-card));
    border-color: var(--orange);
}
.ok-has {
    cursor: pointer;
}
.ok-has:hover {
    background: var(--bg-hover);
    border-color: var(--orange);
}
.ok-day-nr {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.ok-today .ok-day-nr {
    color: var(--orange);
    font-weight: 800;
}

/* Grüner Punkt für veröffentlichte Tage */
.ok-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    margin-top: 2px;
    flex-shrink: 0;
}
.ok-dot-link {
    text-decoration: none;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-bottom: 2px;
}
.ok-dot-link:hover .ok-dot {
    transform: scale(1.4);
    transition: transform .15s ease;
}

/* Legende */
.ok-legend {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .5rem;
    font-size: .72rem;
    color: var(--text-3);
}
.ok-legend .ok-legend-dot {
    margin: 0;
    width: 8px;
    height: 8px;
}
.ok-legend-blank {
    color: var(--border);
    font-size: .5rem;
    line-height: 1;
}

/* Sidebar (rechts) */
.ok-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}
.ok-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-raised);
}
.ok-sidebar-head h3 {
    font-size: .82rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}
.ok-sidebar-count {
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-3);
    background: var(--bg-hover);
    padding: .1rem .5rem;
    border-radius: 10px;
}
.ok-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    max-height: 420px;
}
.ok-sidebar-list li {
    border-bottom: 1px solid var(--border);
}
.ok-sidebar-list li:last-child {
    border-bottom: none;
}
.ok-sidebar-list a {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .35rem .5rem;
    padding: .6rem 1rem;
    text-decoration: none;
    color: var(--text);
    transition: background var(--ease);
}
.ok-sidebar-list a:hover {
    background: var(--bg-hover);
}
.ok-sidebar-nr {
    font-size: .68rem;
    font-weight: 700;
    color: var(--orange);
    background: rgba(249,115,22,.08);
    padding: .05rem .4rem;
    border-radius: 4px;
    white-space: nowrap;
}
.ok-sidebar-date {
    font-size: .7rem;
    color: var(--text-3);
    font-weight: 600;
    white-space: nowrap;
}
.ok-sidebar-title {
    font-size: .82rem;
    color: var(--text-2);
    line-height: 1.35;
    width: 100%;
}
.ok-sidebar-empty {
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--text-3);
    font-size: .82rem;
}

/* ── Responsive: Desktop side-by-side ── */
@media (min-width: 720px) {
    .ok-main {
        grid-template-columns: 1fr 280px;
    }
    .ok-sidebar {
        position: sticky;
        top: calc(var(--header-h, 60px) + 1rem);
        align-self: flex-start;
    }
}

/* Kleine Monitore */
@media (max-width: 480px) {
    .ok-page {
        padding: .5rem .75rem 2rem;
    }
    .ok-cell {
        min-height: 40px;
        padding: .15rem;
    }
    .ok-day-nr {
        font-size: .7rem;
    }
    .ok-dot {
        width: 5px;
        height: 5px;
    }
    .ok-weekdays span {
        font-size: .62rem;
    }
    .ok-sidebar {
        max-height: 340px;
    }
}
