/* ═══════════════════════════════════════════════════════════
   e-n-media — style.css v0.1.0
   Dark Editorial · Gold/Grün · Playfair Display + Inter + DM Mono
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --bg:           #0b0c12;
    --bg-card:      #111219;
    --bg-nav:       #0d0e16;
    --bg-surface:   #1a1b26;

    --gold:         #c9a84c;
    --gold-dim:     #c9a84c22;
    --gold-hover:   #dbb95e;
    --green:        #4a7c59;
    --green-dim:    #4a7c5922;
    --green-hover:  #5a9068;

    --text:         #e8e4dc;
    --text-muted:   #7a7870;
    --text-dim:     #3a3a40;

    --border:       #1e1f2a;
    --border-hover: #2a2b38;

    --shadow:       0 4px 24px rgba(0,0,0,0.5);
    --shadow-card:  0 2px 12px rgba(0,0,0,0.35);

    --radius:       8px;
    --radius-sm:    4px;
    --radius-lg:    14px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --font-mono:    'DM Mono', monospace;

    --nav-h:        62px;
    --max-w:        1200px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    min-height: 100vh;
}

/* Ambient Glow */
body::before {
    content: '';
    position: fixed;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ── Container ────────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    backdrop-filter: blur(8px);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.02em;
}

.logo-text em {
    font-style: normal;
    color: var(--gold);
    margin: 0 0.1em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: var(--gold-dim);
}

/* ── Lang Switcher ────────────────────────────────────────── */
.lang-switcher { position: relative; }

.lang-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    list-style: none;
    min-width: 130px;
    padding: 0.4rem 0;
    box-shadow: var(--shadow);
}

.lang-dropdown.open { display: block; }

.lang-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
}

.lang-dropdown a:hover,
.lang-dropdown a.active { color: var(--gold); background: var(--gold-dim); }

/* ── Burger ───────────────────────────────────────────────── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text-muted);
    transition: 0.3s;
}

/* ── Main Content ─────────────────────────────────────────── */
.main-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - var(--nav-h) - 200px);
}

/* ── Magazin Hero ─────────────────────────────────────────── */
.magazin-hero {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--border);
}

.magazin-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
}

/* ── Featured Card ────────────────────────────────────────── */
.featured-section { padding: 3rem 0; }

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 2.5rem;
}

.featured-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
}

.featured-content { display: flex; flex-direction: column; gap: 1rem; }

.tag-featured {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    width: fit-content;
}

.tag-kategorie {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-dim);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    width: fit-content;
}

.featured-content h2 a { color: var(--text); }
.featured-content h2 a:hover { color: var(--gold); }
.featured-content p { color: var(--text-muted); line-height: 1.7; }

/* ── Artikel Grid ─────────────────────────────────────────── */
.artikel-grid-section { padding: 3rem 0 5rem; }

.kategorie-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: none;
    border: 1px solid var(--border);
    padding: 0.4rem 0.9rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-dim);
}

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

.artikel-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.artikel-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card-kat {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
}

.card-content h3 a { color: var(--text); font-size: 1.05rem; }
.card-content h3 a:hover { color: var(--gold); }
.card-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

.card-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-top: 0.5rem;
}

.card-link:hover { color: var(--gold-hover); }

.no-content {
    text-align: center;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    padding: 5rem 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-primary:hover { background: var(--gold-hover); color: var(--bg); }

/* ── Fehlerseiten ─────────────────────────────────────────── */
.fehler-section { padding: 6rem 0; }

.fehler-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.fehler-code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--border-hover);
    line-height: 1;
}

.fehler-titel {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ── UC Seite ─────────────────────────────────────────────── */
.uc-body {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    overflow: hidden;
}

.uc-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 680px;
    width: 100%;
}

.monogram {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.gold-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeIn 1.2s ease 0.5s forwards;
}

.headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 0.4rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.headline em { font-style: italic; color: var(--gold); }

.domain {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.1s forwards;
}

.bilingual {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 2rem;
    align-items: start;
    width: 100%;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
}

.lang-col { display: flex; flex-direction: column; gap: 0.5rem; }

.lang-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.lang-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

.lang-separator { background: var(--border); align-self: stretch; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-nav a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-nav a:hover { color: var(--gold); }

.footer-affiliate {
    font-size: 0.75rem;
    color: var(--text-dim);
    max-width: 600px;
    line-height: 1.6;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--text-dim);
}

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    max-width: 560px;
    width: calc(100% - 2rem);
    box-shadow: var(--shadow);
}

.cookie-banner.visible { display: block; }

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 0.8rem;
    color: var(--text-muted);
    flex: 1;
    min-width: 200px;
}

.cookie-inner a { color: var(--gold); }

.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

.btn-accept {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--bg);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s;
}

.btn-accept:hover { background: var(--gold-hover); }

.btn-decline {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: none;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-decline:hover { border-color: var(--text-muted); color: var(--text); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .monogram, .gold-line, .headline, .domain, .divider, .bilingual {
        animation: none; opacity: 1;
    }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .featured-card { grid-template-columns: 1fr; padding: 1.5rem; }
    .featured-img img { height: 220px; }
    .artikel-grid { grid-template-columns: 1fr; }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--bg-nav);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1rem 1.5rem;
    }

    .nav-links.open { display: flex; }
    .burger { display: flex; }

    .bilingual { grid-template-columns: 1fr; gap: 2rem 0; }
    .lang-separator { display: none; }
}

@media (max-width: 480px) {
    .nav-inner { gap: 1rem; }
    .lang-switcher { margin-left: auto; }
}

/* ── Legal ────────────────────────────────────────────────── */
.legal-hero {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    font-style: italic;
}

.legal-section { padding: 3rem 0 5rem; }

.legal-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.legal-tab {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
}

.legal-tab:hover { color: var(--gold); }
.legal-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.legal-panel { display: none; }
.legal-panel.active { display: block; }

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

.legal-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.legal-body { display: flex; flex-direction: column; gap: 1rem; }
.legal-body p { color: var(--text-muted); line-height: 1.75; }
.legal-body strong { color: var(--text); font-weight: 500; }
.legal-note { font-size: 0.85rem; color: var(--text-dim); }

/* ── Artikel Single ───────────────────────────────────────── */
.artikel-single { padding: 3rem 0 5rem; }

.artikel-header {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.artikel-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }

.tag-type {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
}

.tag-affiliate { color: var(--gold); background: var(--gold-dim); }
.tag-digital   { color: var(--green); background: var(--green-dim); }

.artikel-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
}

.artikel-teaser {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.artikel-info {
    display: flex;
    gap: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.artikel-thumb {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.artikel-thumb img { width: 100%; max-height: 480px; object-fit: cover; }

.affiliate-box,
.digital-box {
    max-width: 760px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
}

.affiliate-hint {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
}

/* ── Prose (Artikel Inhalt) ───────────────────────────────── */
.prose {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.85;
}

.prose h2, .prose h3, .prose h4 { color: var(--text); margin: 2rem 0 0.75rem; }
.prose p  { margin-bottom: 1.25rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a  { color: var(--gold); }
.prose a:hover { color: var(--gold-hover); }
.prose strong { color: var(--text); font-weight: 500; }

.prose pre, .prose code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.prose pre {
    background: #0a0b14;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    overflow-x: auto;
    margin-bottom: 1.25rem;
}

.prose code {
    background: var(--bg-surface);
    padding: 0.15em 0.4em;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--gold);
}

.prose pre code { background: none; padding: 0; color: var(--text); }

.prose blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    color: var(--text-dim);
    font-style: italic;
}

.artikel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    border: 1px solid var(--border);
    padding: 0.3rem 0.7rem;
    border-radius: 99px;
}

.artikel-back {
    max-width: 760px;
    margin: 2rem auto 0;
}

/* ── Suche ────────────────────────────────────────────────── */
.suche-section { padding: 3rem 0 5rem; }

.suche-form { margin: 2rem 0; }

.suche-input-wrap {
    display: flex;
    gap: 0.75rem;
    max-width: 600px;
}

.suche-input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s;
    outline: none;
}

.suche-input::placeholder { color: var(--text-dim); }
.suche-input:focus { border-color: var(--gold); }

.suche-count {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* ── Social Share + Tags Footer Row ─────────────────────── */
.artikel-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    max-width: 760px;
    margin: 2.5rem auto 0;
}

.artikel-footer-row .artikel-tags {
    margin: 0;
    max-width: none;
}

.share-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.share-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.share-icons { display: flex; gap: 0.4rem; }

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    overflow: hidden;
}

.share-btn svg { width: 14px; height: 14px; flex-shrink: 0; display: block; }

.share-btn:hover       { border-color: var(--text-muted); color: var(--text); }
.share-pinterest:hover { border-color: #e60023; color: #e60023; background: rgba(230,0,35,0.08); }
.share-facebook:hover  { border-color: #1877f2; color: #1877f2; background: rgba(24,119,242,0.08); }
.share-instagram:hover { border-color: #e1306c; color: #e1306c; background: rgba(225,48,108,0.08); }
.share-twitter:hover   { border-color: var(--text); color: var(--text); background: rgba(255,255,255,0.05); }
.share-whatsapp:hover  { border-color: #25d366; color: #25d366; background: rgba(37,211,102,0.08); }
.share-telegram:hover  { border-color: #229ed9; color: #229ed9; background: rgba(34,158,217,0.08); }

/* ── Artikel Banner Hero ──────────────────────────────────── */
.artikel-banner-hero {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.artikel-banner-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* ── Mid-Content Banner (CJ Affiliate) ───────────────────── */
.artikel-mid-banner {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    overflow: hidden;
}

.artikel-mid-banner img { max-width: 100%; height: auto; margin: 0 auto; }

/* ── Legal Body Typographie ───────────────────────────────── */
.legal-body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    margin: 1.5rem 0 0.5rem;
}

.legal-body h3:first-child { margin-top: 0; }

.legal-body ul {
    margin: 0.5rem 0 1rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.legal-body li { margin-bottom: 0.25rem; }

.legal-body a {
    color: var(--gold);
    text-decoration: none;
}

.legal-body a:hover { color: var(--gold-hover); }

/* ── Artikel Bilder (Shortcode) ───────────────────────────── */
.artikel-bild {
    max-width: 760px;
    margin: 1.5rem auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.artikel-bild img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: opacity 0.2s;
}

.artikel-bild img:hover { opacity: 0.9; }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 8px 48px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
