/* ============================================================
   SocioloVerse — Design 2026
   Dark Theme · Playfair Display + Source Sans 3
   Inspiriert vom Live-Design auf socioloverse.ai
   ============================================================ */

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

:root {
    --bg: hsl(220, 30%, 6%);
    --bg-card: hsl(220, 30%, 10%);
    --bg-secondary: hsl(220, 30%, 15%);
    --bg-muted: hsl(220, 20%, 18%);
    --fg: hsl(210, 40%, 96%);
    --fg-muted: hsl(215, 20%, 60%);
    --primary: hsl(24, 82%, 50%);
    --primary-hover: hsl(24, 82%, 55%);
    --accent: hsl(174, 60%, 50%);
    --border: hsl(220, 20%, 18%);
    --border-light: hsl(220, 20%, 22%);
    --radius: 0.75rem;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-height: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.25;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--primary-hover);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: hsl(220, 30%, 6%, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--fg);
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}

.logo-text span {
    color: var(--primary);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav a {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fg-muted);
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.header-nav a:hover {
    color: var(--fg);
    background: var(--bg-secondary);
}

.header-nav a.active {
    color: var(--primary);
    background: hsl(24, 82%, 50%, 0.1);
}

.bau-nav-link {
    font-size: 18px !important;
    padding: 4px 8px !important;
    line-height: 1;
}

.bau-nav-link:hover {
    background: transparent !important;
    transform: scale(1.15);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.psycho-link {
    font-size: 12px;
    color: var(--accent);
    padding: 4px 10px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.psycho-link:hover {
    background: hsl(174, 60%, 50%, 0.1);
}

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

.lang-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-muted);
    padding: 4px 10px;
    background: transparent;
    text-decoration: none;
    transition: all 0.2s;
    border-right: 1px solid var(--border);
}

.lang-btn:last-child {
    border-right: none;
}

.lang-btn:hover {
    color: var(--fg);
    background: var(--bg-secondary);
}

.lang-btn.active {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/hero-space.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        hsl(220, 30%, 6%) 0%, 
        transparent 30%, 
        transparent 70%, 
        hsl(220, 30%, 6%) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px hsl(24, 82%, 50%, 0.3));
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--primary);
}

.subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--fg-muted);
    max-width: 650px;
    margin: 0 auto 16px;
    font-weight: 300;
}

.hero-hint {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 40px;
}

/* Blog-Welten — Premium Tiles */

.hero-bw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-bw-tile {
    background: hsl(220, 30%, 10%);
    border: 1px solid hsl(220, 20%, 16%);
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-bw-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bw-color, var(--primary)), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.hero-bw-tile:hover {
    transform: translateY(-3px);
    border-color: var(--bw-color, var(--primary));
    box-shadow: 0 8px 24px hsla(220, 30%, 6%, 0.5);
}

.hero-bw-tile:hover::before {
    opacity: 0.08;
}

.hero-bw-emoji {
    font-size: 24px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.hero-bw-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--fg);
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

@media (min-width: 769px) {
    .hero-bw-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

/* ============================================================
   Section titles
   ============================================================ */

.section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.section-title .badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 8px;
}

/* ============================================================
   Article Grid
   ============================================================ */

.articles {
    padding: 60px 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px hsl(220, 30%, 6%, 0.4);
}

.card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: hsl(24, 82%, 50%, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.article-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.35;
}

.article-card h3 a {
    color: var(--fg);
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--primary);
}

.article-card p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.article-card time {
    font-size: 12px;
    color: var(--fg-muted);
    font-weight: 400;
}

.empty-state {
    text-align: center;
    padding: 60px 0;
    color: var(--fg-muted);
}

.empty-state a {
    color: var(--primary);
}

.setup-notice {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.setup-notice h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 16px;
}

.setup-notice pre {
    background: var(--bg-muted);
    padding: 16px;
    border-radius: 8px;
    text-align: left;
    overflow-x: auto;
    margin: 16px 0;
    font-size: 13px;
}

/* ============================================================
   Lab Section / From thinking lab into practice
   ============================================================ */

.lab-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.lab-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}

.lab-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px hsl(174, 60%, 50%, 0.08);
}

.lab-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 8px;
}

.lab-card p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.6;
}

.lab-card .lab-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================================
   Previously On / Recent articles list
   ============================================================ */

.recent-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.recent-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recent-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    transition: all 0.2s;
    text-decoration: none;
}

.recent-item:hover {
    border-color: var(--primary);
    background: hsl(24, 82%, 50%, 0.04);
}

.recent-item .recent-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    flex-shrink: 0;
    min-width: 80px;
}

.recent-item .recent-title {
    flex: 1;
    font-size: 15px;
    color: var(--fg);
    font-weight: 500;
}

.recent-item .recent-date {
    font-size: 12px;
    color: var(--fg-muted);
    flex-shrink: 0;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
    background: hsl(220, 30%, 4%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col img.footer-logo {
    max-width: 180px;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--fg-muted);
}

.footer-disclaimer {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-top: 24px;
    font-size: 12px;
    color: var(--fg-muted);
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--fg);
}

/* ============================================================
   Utility
   ============================================================ */

.text-center { text-align: center; }
.text-muted { color: var(--fg-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   Article Detail Page
   ============================================================ */

.article-detail {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.article-detail .series-badge {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: hsl(24, 82%, 50%, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
}

.article-detail h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.article-meta {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--fg-muted);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.article-meta .tag {
    color: var(--accent);
}

.article-content {
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.85;
    color: var(--fg);
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    padding: 14px 24px;
    border-radius: var(--radius);
    color: white;
    background: linear-gradient(135deg, hsl(220, 60%, 25%), hsl(24, 82%, 50%));
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.article-content h4 {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--accent);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    margin: 28px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--primary);
    background: var(--bg-card);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--fg-muted);
}

.article-content hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid var(--border);
}

.article-content strong {
    font-weight: 600;
}

.article-content em {
    font-style: italic;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    opacity: 0.8;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 14px;
}

.article-nav a {
    color: var(--accent);
    text-decoration: none;
}

.article-nav a:hover {
    text-decoration: underline;
}

/* ============================================================
   Calendar Page
   ============================================================ */

.calendar-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.calendar-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calendar-nav a {
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 14px;
    text-decoration: none;
}

.calendar-nav a:hover {
    text-decoration: underline;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--fg-muted);
    text-transform: uppercase;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    min-height: 90px;
    padding: 6px;
    position: relative;
    transition: border-color 0.2s;
}

.calendar-day:hover {
    border-color: var(--border-light);
}

.calendar-day .day-nr {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--fg-muted);
}

.calendar-day.published {
    border-color: hsl(174, 60%, 50%, 0.4);
    background: hsl(174, 60%, 50%, 0.06);
}

.calendar-day.published:hover {
    border-color: var(--accent);
}

.calendar-day.empty {
    background: transparent;
    border-color: transparent;
    min-height: 0;
}

.calendar-day .day-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    color: var(--accent);
    background: hsl(174, 60%, 50%, 0.1);
    padding: 1px 5px;
    border-radius: 3px;
}

.calendar-day a {
    text-decoration: none;
    color: var(--fg);
}

.calendar-day a:hover .day-title {
    color: var(--accent);
}

.calendar-day .day-title {
    font-size: 11px;
    line-height: 1.3;
    margin-top: 4px;
    transition: color 0.2s;
}

.progress-bar {
    height: 6px;
    background: var(--bg-muted);
    border-radius: 3px;
    margin: 16px 0;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 3px;
    transition: width 0.5s;
}

.calendar-stats {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fg-muted);
    margin-bottom: 8px;
}

.calendar-stats strong {
    color: var(--fg);
}

.view-toggle {
    margin-bottom: 16px;
    display: flex;
    gap: 0;
}

.view-toggle a {
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--fg-muted);
    transition: all 0.2s;
}

.view-toggle a:first-child {
    border-radius: 6px 0 0 6px;
}

.view-toggle a:last-child {
    border-radius: 0 6px 6px 0;
}

.view-toggle a.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.view-toggle a:hover:not(.active) {
    background: var(--bg-secondary);
}

.month-theme {
    background: var(--bg-card);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.month-theme strong {
    color: var(--fg);
}

.month-theme .theme-sub {
    font-size: 15px;
    color: var(--fg-muted);
}

.calendar-legend {
    margin-top: 24px;
    font-size: 14px;
    color: var(--fg-muted);
    font-family: var(--font-body);
}

.calendar-legend span {
    margin-right: 16px;
}

/* ============================================================
   Blogwelt Page
   ============================================================ */

.blogwelt-header {
    text-align: center;
    padding: 60px 24px 40px;
}

.blogwelt-header h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 8px;
}

.blogwelt-header p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--fg-muted);
}

.back-link {
    display: inline-block;
    margin-top: 48px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary);
}

/* ============================================================
   Dashboard-Style (Startseiten-Kacheln) — Premium
   ============================================================ */

.dash-section {
    padding: 64px 0;
    border-top: 1px solid var(--border);
}

.dash-section.dash-alt {
    background: hsl(220, 30%, 8%);
}

.dash-claim {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-claim span {
    color: var(--fg);
}

.dash-sub {
    color: var(--fg-muted);
    font-size: 15px;
    margin-bottom: 32px;
}

/* Tiles — Premium Card Style */
.dash-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.dash-tile {
    position: relative;
    background: hsl(220, 30%, 10%);
    border: 1px solid hsl(220, 20%, 16%);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.dash-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--tile-accent, var(--primary));
    border-radius: 16px 16px 0 0;
}

.dash-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--tile-accent, transparent), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.dash-tile:hover {
    transform: translateY(-4px);
    border-color: hsl(220, 20%, 25%);
    box-shadow: 0 12px 40px hsla(220, 30%, 6%, 0.6);
}

.dash-tile:hover::after {
    opacity: 0.06;
}

.dash-tile-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.dash-tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: hsla(220, 20%, 15%, 0.8);
    border: 1px solid hsl(220, 20%, 18%);
    flex-shrink: 0;
}

.dash-tile-chevron {
    font-size: 20px;
    color: var(--fg-muted);
    opacity: 0.4;
    transition: all 0.3s;
}

.dash-tile:hover .dash-tile-chevron {
    opacity: 1;
    color: var(--tile-accent, var(--primary));
    transform: translateX(4px);
}

.dash-tile h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--fg);
    position: relative;
    z-index: 1;
}

.dash-tile p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.dash-tile-tag {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: hsla(220, 20%, 15%, 0.8);
    color: var(--tile-accent, var(--primary));
    border: 1px solid hsla(220, 20%, 20%, 0.5);
    position: relative;
    z-index: 1;
}

/* AI Section Special: two-column layout for the intro books */
.dash-ai-books {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.dash-book-tile {
    background: hsl(220, 30%, 11%);
    border: 1px solid hsl(220, 20%, 17%);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dash-book-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--book-accent, transparent), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.dash-book-tile:hover {
    transform: translateY(-3px);
    border-color: hsl(220, 20%, 28%);
    box-shadow: 0 8px 30px hsla(220, 30%, 6%, 0.5);
}

.dash-book-tile:hover::before {
    opacity: 0.08;
}

.dash-book-icon {
    font-size: 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.dash-book-body {
    position: relative;
    z-index: 1;
}

.dash-book-body strong {
    display: block;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--fg);
}

.dash-book-body p {
    font-size: 13px;
    color: var(--fg-muted);
    line-height: 1.5;
    margin: 0;
}

.dash-book-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 18px;
    color: var(--fg-muted);
    opacity: 0;
    transition: all 0.3s;
}

.dash-book-tile:hover .dash-book-arrow {
    opacity: 1;
    color: var(--book-accent, var(--primary));
}

/* Calendar progress — Premium */
.dash-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}

.dash-cal-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
}

.dash-cal-header a {
    font-size: 14px;
    font-weight: 500;
}

.dash-cal-progress {
    display: flex;
    align-items: center;
    gap: 24px;
    background: hsl(220, 30%, 10%);
    border: 1px solid hsl(220, 20%, 16%);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 20px;
}

.dash-cal-stat {
    text-align: center;
    flex-shrink: 0;
}

.dash-cal-nr {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dash-cal-label {
    font-size: 12px;
    color: var(--fg-muted);
    margin-top: 4px;
    display: block;
}

.dash-cal-bar-wrap {
    flex: 1;
    min-width: 0;
}

.dash-cal-bar {
    height: 10px;
    background: hsl(220, 20%, 14%);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.dash-cal-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 6px;
    transition: width 0.5s ease;
}

.dash-cal-pct {
    font-size: 13px;
    color: var(--fg-muted);
    font-weight: 500;
}

/* Preview list — Premium */
.dash-preview-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-preview-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: hsl(220, 30%, 10%);
    border: 1px solid hsl(220, 20%, 16%);
    border-radius: 12px;
    padding: 14px 20px;
    text-decoration: none;
    transition: all 0.2s;
}

.dash-preview-item:hover {
    border-color: var(--accent);
    background: hsl(174, 60%, 50%, 0.04);
    transform: translateX(4px);
}

.dash-preview-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: hsl(174, 60%, 50%, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.dash-preview-title {
    flex: 1;
    font-size: 14px;
    color: var(--fg);
    font-weight: 500;
}

.dash-preview-date {
    font-size: 12px;
    color: var(--fg-muted);
    flex-shrink: 0;
}

/* Sociologica card — Premium */
.dash-socio-card {
    background: linear-gradient(135deg, hsl(24, 82%, 50%, 0.08), hsl(220, 30%, 10%));
    border: 1px solid hsl(24, 82%, 50%, 0.15);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.dash-socio-card:hover {
    border-color: hsl(24, 82%, 50%, 0.3);
}

.dash-socio-icon {
    width: 64px;
    height: 64px;
    background: hsl(24, 82%, 50%, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.dash-socio-body strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dash-socio-body p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.dash-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    padding: 8px 16px;
    border: 1px solid hsl(174, 60%, 50%, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.dash-cta-secondary:hover {
    background: hsl(174, 60%, 50%, 0.06);
    border-color: var(--accent);
}

/* Sister worlds — Premium */
.dash-sister-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dash-sister-card {
    background: hsl(220, 30%, 10%);
    border: 1px solid hsl(220, 20%, 16%);
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dash-sister-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--card-accent, transparent), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.dash-sister-card:first-child {
    --card-accent: var(--accent);
}

.dash-sister-card:last-child {
    --card-accent: var(--primary);
}

.dash-sister-card strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--fg);
    position: relative;
    z-index: 1;
}

.dash-sister-card p {
    font-size: 13px;
    color: var(--fg-muted);
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.dash-sister-card:hover {
    transform: translateY(-3px);
    border-color: hsl(220, 20%, 28%);
    box-shadow: 0 8px 30px hsla(220, 30%, 6%, 0.5);
}

.dash-sister-card:hover::before {
    opacity: 0.06;
}

@media (max-width: 768px) {
    .dash-cal-progress {
        flex-direction: column;
        text-align: center;
    }
    .dash-sister-grid {
        grid-template-columns: 1fr;
    }
    .dash-socio-card {
        flex-direction: column;
    }
    .dash-ai-books {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Bautafel / Construction Board (Design 2026)
   ============================================================ */

.bau-hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.bau-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/img/hero-space.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.bau-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, hsl(220,30%,6%) 0%, transparent 40%, transparent 60%, hsl(220,30%,6%) 100%);
    z-index: 1;
}

.bau-hero .container { position: relative; z-index: 2; }

.bau-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
}

.bau-hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: hsl(174, 60%, 50%, 0.1);
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.bau-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--fg-muted);
    max-width: 600px;
    margin: 0 auto 20px;
    font-weight: 300;
}

.bau-phase-badge {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--fg);
}

.bau-phase-badge strong {
    color: var(--primary);
}

.bau-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.bau-section.bau-alt {
    background: hsl(220, 30%, 8%);
}

.bau-h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 24px;
}

.bau-h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.bau-muted {
    color: var(--fg-muted);
    font-size: 15px;
    line-height: 1.6;
}

.bau-phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.bau-phase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color 0.2s;
}

.bau-phase-card:hover {
    border-color: var(--border-light);
}

.bau-phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.bau-phase-nr {
    font-weight: 600;
    color: var(--fg-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.bau-phase-label {
    flex: 1;
    margin-left: 8px;
    font-weight: 500;
}

.bau-phase-pct {
    font-weight: 700;
    font-size: 16px;
}

.bau-progress-bar {
    height: 6px;
    background: var(--bg-muted);
    border-radius: 3px;
    overflow: hidden;
}

.bau-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
    background: var(--primary);
}

.bau-progress-lg {
    height: 10px;
    border-radius: 5px;
}

.bau-pct-label {
    font-size: 13px;
    color: var(--fg-muted);
    margin-top: 8px;
}

.bau-progress-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.bau-dual-progress {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.bau-progress-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.ai-color {
    background: linear-gradient(90deg, #8b4513, var(--primary));
}

.bau-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.bau-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all 0.2s;
}

.bau-feature-card:hover {
    border-color: var(--border-light);
}

.bau-feature-card.done {
    border-left: 3px solid #22c55e;
}

.bau-feature-card.progress {
    border-left: 3px solid var(--primary);
}

.bau-feature-card.planned {
    border-left: 3px solid var(--fg-muted);
    opacity: 0.7;
}

.bau-feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.bau-feature-card strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.bau-feature-card p {
    font-size: 13px;
    color: var(--fg-muted);
    line-height: 1.5;
    margin: 0;
}

.bau-micro-bar {
    height: 3px;
    background: var(--bg-muted);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.bau-micro-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

/* Detail-Liste */
.bau-detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bau-detail-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bau-detail-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 4px;
}

.bau-detail-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.bau-detail-item p {
    font-size: 13px;
    color: var(--fg-muted);
    line-height: 1.5;
    margin: 0;
}

.bau-status {
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.bau-status.done { background: hsl(142, 70%, 40%, 0.1); color: #22c55e; }
.bau-status.progress { background: hsl(24, 82%, 50%, 0.1); color: var(--primary); }
.bau-status.planned { background: hsl(215, 20%, 60%, 0.1); color: var(--fg-muted); }

/* Blog-Welten Grid */
.bau-blogwelt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.bau-blogwelt-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.bau-blogwelt-card:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}

.bau-bw-emoji { font-size: 24px; }
.bau-bw-name { font-weight: 600; font-size: 15px; color: var(--fg); }
.bau-bw-count { font-size: 12px; color: var(--fg-muted); }
.bau-bw-status { font-size: 12px; font-weight: 500; }

/* Tabelle */
.bau-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.bau-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.bau-table th {
    background: var(--bg-secondary);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
    border-bottom: 1px solid var(--border);
}

.bau-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--fg);
}

.bau-table tr:hover td {
    background: hsl(220, 30%, 12%);
}

.bau-table tr.row-active td {
    background: hsl(142, 70%, 40%, 0.05);
}

.bau-table tr.row-soon td {
    background: hsl(24, 82%, 50%, 0.03);
}

.bau-status-badge {
    font-size: 12px;
    font-weight: 500;
}

/* Timeline */
.bau-timeline {
    position: relative;
    padding-left: 24px;
    margin-top: 24px;
}

.bau-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.bau-tl-item {
    position: relative;
    padding: 0 0 20px 24px;
}

.bau-tl-marker {
    position: absolute;
    left: -20px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg);
    z-index: 2;
}

.bau-tl-built .bau-tl-marker { background: #22c55e; }
.bau-tl-bug .bau-tl-marker { background: #ef4444; }
.bau-tl-next .bau-tl-marker { background: var(--primary); }
.bau-tl-note .bau-tl-marker { background: var(--fg-muted); }

.bau-tl-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}

.bau-tl-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.bau-tl-date {
    color: var(--fg-muted);
}

.bau-tl-type {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.bau-tl-type-built { background: hsl(142, 70%, 40%, 0.1); color: #22c55e; }
.bau-tl-type-bug { background: hsl(0, 70%, 40%, 0.1); color: #ef4444; }
.bau-tl-type-next { background: hsl(24, 82%, 50%, 0.1); color: var(--primary); }
.bau-tl-type-note { background: hsl(215, 20%, 60%, 0.1); color: var(--fg-muted); }

.bau-tl-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--fg);
    margin: 0;
}

.bau-empty {
    text-align: center;
    padding: 40px;
    color: var(--fg-muted);
}

.bau-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.bau-cta {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.bau-cta:hover {
    background: var(--primary-hover);
    color: white;
}

/* ============================================================
   Glossar
   ============================================================ */

.glossar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.glossar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all 0.2s;
}

.glossar-card:hover {
    border-color: var(--border-light);
    transform: translateY(-1px);
}

.glossar-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.glossar-card p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.6;
    margin: 0;
}

.glossar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.glossar-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    background: hsl(174, 60%, 50%, 0.1);
    color: var(--accent);
}

/* ============================================================
   Embed Page (KI&Gesellschaft / s-KI-lled out)
   ============================================================ */

.embed-page {
    padding: 0;
    max-width: 100%;
}

.embed-page iframe {
    width: 100%;
    height: calc(100vh - var(--header-height) - 200px);
    min-height: 600px;
    border: none;
    border-radius: var(--radius);
    background: hsl(220, 30%, 4%);
}

.embed-note {
    text-align: center;
    padding: 24px;
    font-size: 13px;
    color: var(--fg-muted);
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

/* ============================================================
   AI Noon
   ============================================================ */

.ai-noon-story {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.ai-noon-story summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.ai-noon-story-content {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--fg-muted);
}

.ai-noon-story-content p {
    margin-bottom: 12px;
}

.ai-noon-badges {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
    margin: 24px 0;
}

.ai-noon-badge {
    background: hsl(30, 100%, 97%);
    border: 1px solid hsl(30, 60%, 85%);
    background: hsl(25, 60%, 12%);
    border: 1px solid hsl(25, 40%, 20%);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.2s;
}

.ai-noon-badge:hover {
    border-color: var(--primary);
}

.ai-noon-badge strong {
    font-size: 14px;
    color: var(--fg);
}

.ai-noon-badge span {
    font-size: 12px;
    color: var(--fg-muted);
}

.ai-noon-toggle {
    margin: 24px 0;
    display: flex;
    gap: 0;
}

.ai-noon-toggle a {
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--fg-muted);
    transition: all 0.2s;
}

.ai-noon-toggle a:first-child {
    border-radius: 6px 0 0 6px;
}

.ai-noon-toggle a:last-child {
    border-radius: 0 6px 6px 0;
}

.ai-noon-toggle a.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.ai-noon-toggle a:hover:not(.active) {
    background: var(--bg-secondary);
}

.ai-noon-entry-list {
    list-style: none;
    padding: 0;
}

.ai-noon-entry-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.ai-noon-entry-list li:last-child {
    border-bottom: none;
}

.ai-noon-day-nr {
    font-size: 14px;
    color: var(--accent);
    min-width: 60px;
    font-weight: 500;
}

.ai-noon-entry-list a {
    font-size: 15px;
    text-decoration: none;
}

.ai-noon-entry-list a:hover {
    text-decoration: underline;
}

.ai-noon-current {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.ai-noon-current-meta {
    font-size: 12px;
    color: #8b4513;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ai-noon-current h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.ai-noon-current h3 a {
    text-decoration: none;
    color: var(--fg);
}

.ai-noon-current h3 a:hover {
    color: var(--primary);
}

.lang-toggle {
    display: flex;
    gap: 8px;
}

.lang-pill {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.lang-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: hsl(24, 82%, 50%, 0.06);
}

.bau-callout {
    padding: 40px 0;
    background: hsl(24, 82%, 50%, 0.05);
    border-top: 1px solid hsl(24, 82%, 50%, 0.15);
    border-bottom: 1px solid hsl(24, 82%, 50%, 0.15);
}

.bau-callout-content {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.bau-callout-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.bau-callout h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bau-callout p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.bau-callout-cta {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.bau-callout-cta:hover {
    background: var(--primary-hover);
    color: white;
}

@media (max-width: 768px) {
    .bau-dual-progress {
        grid-template-columns: 1fr;
    }
    .bau-detail-item {
        flex-direction: column;
    }
    .bau-callout-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   Content width helpers
   ============================================================ */

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.content-medium {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .recent-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
