:root {
            --bg-primary: #FAFAF7;
            --bg-surface: #F5F0E8;
            --bg-elevated: #FFFFFF;
            --text-primary: #1A1A1A;
            --text-secondary: #5C5C5C;
            --accent-amber: #C8963E;
            --accent-warm: #8B7355;
            --accent-sage: #4A7C5E;
            --accent-muted: #8B7355;
            --border: #E8DCC8;
            --shadow-sm: 0 2px 12px rgba(139,115,85,0.08);
            --shadow-hover: 0 4px 24px rgba(139,115,85,0.14);
            --radius-sm: 6px;
            --radius-pill: 24px;
            --max-width: 1200px;
            --article-max: 720px;
            --sidebar-width: 300px;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 400;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
            line-height: 1.7;
            font-size: 17px;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }

        /* --- HEADER --- */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(250,250,247,0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0 24px;
            height: 64px;
        }
        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .site-logo {
            font-family: 'Fraunces', Georgia, serif;
            font-weight: 600;
            font-size: 22px;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .site-logo .logo-dot {
            color: var(--accent-amber);
            font-size: 28px;
            line-height: 1;
        }
        .site-logo .logo-magazin {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-left: 4px;
        }
        .site-nav { display: flex; align-items: center; gap: 28px; }
        .site-nav a {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s;
        }
        .site-nav a:hover { color: var(--accent-amber); }
        .site-nav a.active {
            color: var(--accent-amber);
            position: relative;
        }
        .site-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0; right: 0;
            height: 2px;
            background: var(--accent-amber);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-primary);
            padding: 4px 8px;
            line-height: 1;
        }

        /* --- HEADINGS --- */
        h1, h2, h3, h4 {
            font-family: 'Fraunces', Georgia, serif;
            color: var(--text-primary);
            line-height: 1.3;
        }
        h1 { font-size: 32px; font-weight: 700; }
        h2 { font-size: 22px; font-weight: 600; position: relative; padding-left: 20px; margin-top: 40px; }
        h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: var(--accent-warm);
        }
        h3 { font-size: 18px; font-weight: 600; }

        /* --- BUTTONS --- */
        .btn { display: inline-block; padding: 10px 24px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; border-radius: var(--radius-sm); text-decoration: none; cursor: pointer; transition: all 0.2s; border: none; }
        .btn-primary { background: var(--accent-amber); color: #fff; }
        .btn-primary:hover { background: #A67A2E; }
        .btn-ghost { background: transparent; border: 1.5px solid var(--accent-amber); color: var(--accent-amber); }
        .btn-ghost:hover { background: var(--accent-amber); color: #fff; }
        .btn-secondary { background: transparent; border: 1.5px solid var(--accent-sage); color: var(--accent-sage); }
        .btn-secondary:hover { background: var(--accent-sage); color: #fff; }

        /* --- BADGES --- */
        .badge { display: inline-block; padding: 4px 12px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: var(--radius-pill); }
        .badge-amber { background: var(--accent-amber); color: #fff; }
        .badge-warm { background: var(--accent-warm); color: #fff; }
        .badge-sage { background: var(--accent-sage); color: #fff; }
        .badge-outline { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); }

        /* --- CARDS --- */
        .card {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .card-image { width: 100%; aspect-ratio: 3/2; object-fit: cover; background: linear-gradient(135deg, var(--bg-surface) 0%, var(--border) 100%); }
        .card-body { padding: 20px; }
        .card-body .badge { margin-bottom: 8px; }
        .card-title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; margin: 0 0 8px; line-height: 1.3; }
        .card-title a { color: var(--text-primary); text-decoration: none; }
        .card-title a:hover { color: var(--accent-amber); }
        .card-meta { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .card-teaser { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

        /* --- BLOCKQUOTE --- */
        blockquote {
            font-family: 'Fraunces', serif;
            font-style: italic;
            font-size: 18px;
            color: var(--text-primary);
            border-left: 3px solid var(--accent-amber);
            padding: 4px 0 4px 24px;
            margin: 32px 0;
            background: none;
        }

        /* --- HERO (nur Startseite) --- */
        .hero {
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 50%, var(--accent-amber) 100%);
            color: #fff;
            text-align: center;
            padding: 80px 24px 70px;
        }
        .hero h1 {
            font-size: 2.8em;
            margin-bottom: 12px;
            letter-spacing: 3px;
            font-weight: 400;
        }
        .hero p {
            font-size: 1.15em;
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- MAIN --- */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 40px 24px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr var(--sidebar-width);
            gap: 40px;
        }
        @media (max-width: 900px) {
            .content-grid { grid-template-columns: 1fr; }
        }

        /* --- ARTIKELKARTEN (Startseite) --- */
        .article-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            margin-bottom: 28px;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .article-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .article-card .card-body {
            padding: 20px;
        }
        .article-card .card-meta {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            display: flex;
            gap: 16px;
        }
        .article-card .card-meta .cat {
            background: var(--bg-surface);
            color: var(--text-primary);
            padding: 2px 10px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .article-card h2 {
            font-family: 'Fraunces', serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.3;
            padding-left: 0;
        }
        .article-card h2::before { display: none; }
        .article-card h2 a {
            color: var(--text-primary);
            text-decoration: none;
        }
        .article-card h2 a:hover {
            color: var(--accent-amber);
        }
        .article-card .teaser {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 16px;
            line-height: 1.6;
        }
        .read-more {
            font-family: 'Inter', sans-serif;
            color: var(--accent-amber);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }
        .read-more:hover { text-decoration: underline; }

        /* --- ARTIKEL-SEITE --- */
        .article-header {
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 100%);
            color: #fff;
            padding: 60px 24px 50px;
            text-align: center;
        }
        .article-header h1 {
            font-size: 32px;
            max-width: 800px;
            margin: 0 auto 16px;
            line-height: 1.3;
        }
        .article-header .meta-line {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            opacity: 0.75;
        }
        .article-body {
            background: var(--bg-elevated);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            padding: 48px;
            margin-top: -30px;
            position: relative;
        }
        .article-body h2 {
            color: var(--text-primary);
            font-size: 22px;
            margin: 36px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--bg-surface);
        }
        .article-body h3 {
            color: var(--accent-amber);
            font-size: 18px;
            margin: 28px 0 12px;
        }
        .article-body p { margin-bottom: 18px; }
        .article-body ul, .article-body ol {
            margin: 16px 0;
            padding-left: 28px;
        }
        .article-body li { margin-bottom: 8px; }
        .article-body blockquote {
            font-family: 'Fraunces', serif;
            font-style: italic;
            font-size: 18px;
            color: var(--text-primary);
            border-left: 3px solid var(--accent-amber);
            padding: 4px 0 4px 24px;
            margin: 32px 0;
            background: none;
        }
        .article-body a {
            color: var(--accent-amber);
            text-decoration: underline;
            text-decoration-color: var(--accent-amber);
        }
        .article-body a:hover { color: var(--text-primary); }

        .affiliate-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--accent-amber);
            color: #fff !important;
            padding: 3px 10px 3px 8px;
            border-radius: var(--radius-sm);
            text-decoration: none !important;
            border-bottom: none !important;
            font-size: 14px;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            transition: background 0.2s, transform 0.1s;
            white-space: nowrap;
        }
        .affiliate-link::before { content: "→"; font-size: 0.8em; }
        .affiliate-link:hover {
            background: #A67A2E;
            transform: translateY(-1px);
            color: #fff !important;
        }

        /* Produktboxen */
        .product-box {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            margin: 24px 0;
            transition: box-shadow 0.2s;
        }
        .product-box:hover { box-shadow: var(--shadow-hover); }
        .product-info { flex: 1; }
        .product-name {
            font-family: 'Fraunces', serif;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 4px;
            padding-left: 0;
            color: var(--text-primary);
        }
        .product-name::before { display: none; }
        .product-desc {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0 0 6px;
            line-height: 1.4;
        }
        .product-price {
            font-size: 15px;
            font-weight: 700;
            color: var(--accent-amber);
        }
        .product-btn {
            flex-shrink: 0;
            font-size: 13px;
            padding: 10px 18px;
            white-space: nowrap;
        }
        @media (max-width: 600px) {
            .product-box { flex-direction: column; align-items: stretch; text-align: center; }
            .product-btn { align-self: center; }
        }

        .related-box {
            background: var(--bg-surface);
            border-radius: var(--radius-sm);
            padding: 24px;
            margin-top: 36px;
            border: 1px solid var(--border);
        }
        .related-box h3 {
            color: var(--text-primary);
            margin-bottom: 12px;
            border: none;
            padding-left: 0;
        }
        .related-box h3::before { display: none; }

        /* --- SIDEBAR --- */
        .sidebar {
            font-family: 'Inter', sans-serif;
        }
        .sidebar-box {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            padding: 24px;
            margin-bottom: 24px;
        }
        .sidebar-box h3 {
            color: var(--text-primary);
            font-size: 14px;
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--bg-surface);
            font-family: 'Fraunces', Georgia, serif;
            padding-left: 0;
        }
        .sidebar-box h3::before { display: none; }
        .sidebar-box ul { list-style: none; padding: 0; }
        .sidebar-box li { margin-bottom: 10px; }
        .sidebar-box a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
        }
        .sidebar-box a:hover { color: var(--accent-amber); }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .tag {
            background: var(--bg-surface);
            color: var(--text-primary);
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            text-decoration: none;
            transition: background 0.2s;
        }
        .tag:hover {
            background: var(--accent-amber);
            color: #fff;
        }

        .cta-box {
            background: var(--text-primary);
            color: var(--bg-surface);
            border-radius: var(--radius-sm);
            padding: 28px;
            text-align: center;
        }
        .cta-box h3 { color: var(--accent-amber); border: none; padding-left: 0; }
        .cta-box h3::before { display: none; }
        .cta-box p { font-size: 14px; margin: 10px 0 16px; opacity: 0.85; }
        .cta-box a {
            display: inline-block;
            background: var(--accent-amber);
            color: #fff;
            padding: 10px 28px;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
        }
        .cta-box a:hover { background: #A67A2E; }

        /* --- TAGS --- */
        .article-tags {
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        /* --- FOOTER --- */
        .site-footer {
            background: var(--text-primary);
            color: var(--bg-surface);
            padding: 64px 24px 32px;
            margin-top: 80px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 48px;
        }
        .footer-logo { font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; color: var(--bg-primary); margin-bottom: 12px; }
        .footer-tagline { font-size: 14px; color: var(--accent-muted); line-height: 1.6; }
        .footer-nav h4 { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 600; color: var(--bg-primary); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; padding-left: 0; }
        .footer-nav h4::before { display: none; }
        .footer-nav a { display: block; font-size: 14px; color: var(--accent-muted); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
        .footer-nav a:hover { color: var(--accent-amber); }
        .footer-bottom {
            max-width: var(--max-width);
            margin: 48px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(221,213,200,0.2);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--accent-muted);
        }
        .footer-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--accent-muted); }

        /* --- CARD IMAGE --- */
        .card-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-sm) var(--radius-sm) 0 0;
            height: 210px;
        }
        .card-image {
            width: 100%; height: 210px; object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .article-card:hover .card-image {
            transform: scale(1.04);
        }
        .card-image-wrapper::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(42, 37, 32, 0.02) 0%,
                rgba(42, 37, 32, 0.15) 100%
            );
            pointer-events: none;
        }
        .card-image-placeholder {
            width: 100%; height: 210px;
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--border) 100%);
            display: flex; align-items: center; justify-content: center;
            font-size: 3em; color: var(--accent-amber);
            border-radius: var(--radius-sm) var(--radius-sm) 0 0;
        }

        /* --- ARTICLE HERO IMAGE --- */
        .article-hero-image {
            width: 100%; max-height: 480px; object-fit: cover; display: block;
        }
        .article-image-credit {
            font-family: 'Inter', sans-serif;
            font-size: 12px; color: var(--text-secondary);
            text-align: right; padding: 4px 8px; background: var(--bg-surface);
        }
        .article-image-credit a { color: var(--text-secondary); }

        /* --- EMPFEHLUNG BOX --- */
        .empfehlung-box {
            border-left: 4px solid var(--accent-amber);
            background: var(--bg-surface);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            padding: 24px 28px; margin: 32px 0;
            display: flex; align-items: flex-start; gap: 16px;
        }
        .empfehlung-box h3 {
            font-family: 'Fraunces', serif;
            font-size: 16px;
            margin: 0 0 8px;
            padding-left: 0;
        }
        .empfehlung-box h3::before { display: none; }
        .empfehlung-box .emp-icon { font-size: 2em; flex-shrink: 0; margin-top: 2px; }
        .empfehlung-box .emp-content { flex: 1; }
        .empfehlung-box .emp-title {
            font-family: 'Fraunces', serif; font-weight: 600;
            color: var(--text-primary); font-size: 16px; margin-bottom: 6px;
        }
        .empfehlung-box .emp-text {
            font-size: 14px; color: var(--text-secondary); margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
        }
        .empfehlung-box .emp-cta {
            display: inline-block; background: var(--accent-amber);
            color: #fff !important; padding: 8px 20px; border-radius: var(--radius-sm);
            text-decoration: none !important; font-weight: 500; font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: background 0.2s; margin-right: 8px; margin-bottom: 4px;
        }
        .empfehlung-box .emp-cta:hover { background: #A67A2E; color: #fff !important; }

        /* --- SHARE BUTTONS --- */
        .share-bar {
            display: flex; gap: 10px; margin: 28px 0 20px;
            flex-wrap: wrap; align-items: center;
        }
        .share-label {
            font-size: 13px; color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
        }
        .share-btn {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 8px 16px; border-radius: var(--radius-pill);
            text-decoration: none !important; font-size: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 500; transition: opacity 0.2s; color: #fff !important;
        }
        .share-btn:hover { opacity: 0.85; }
        .share-btn-whatsapp { background: #25D366; }
        .share-btn-x { background: #000; }
        .share-btn-pinterest { background: #E60023; }
        .share-btn-email { background: var(--text-primary); }

        /* --- BREADCRUMB --- */
        .breadcrumb {
            background: var(--bg-surface); padding: 10px 24px;
            font-family: 'Inter', sans-serif;
            font-size: 13px; color: var(--text-secondary);
        }
        .breadcrumb-inner { max-width: var(--max-width); margin: 0 auto; }
        .breadcrumb a { color: var(--text-secondary); text-decoration: none; }
        .breadcrumb a:hover { color: var(--accent-amber); }

        /* --- RELATED GRID --- */
        .related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
        .related-item {
            background: var(--bg-primary); border-radius: var(--radius-sm);
            padding: 12px 14px; text-decoration: none !important;
            border-left: 3px solid var(--accent-amber);
            color: var(--text-primary) !important; font-size: 14px;
            line-height: 1.4; transition: background 0.2s, border-color 0.2s; display: block;
        }
        .related-item:hover { background: var(--bg-surface); border-left-color: var(--accent-warm); }

        /* --- PERSONAL PHOTO BADGE --- */
        .personal-photo-wrapper { position: relative; display: block; }
        .personal-photo-badge {
            position: absolute; bottom: 8px; left: 8px;
            background: rgba(42,37,32,0.85); color: var(--accent-amber);
            font-size: 12px; padding: 2px 8px; border-radius: var(--radius-pill);
            font-family: 'Inter', sans-serif;
            pointer-events: none;
        }

        /* --- HERO TEXTURE --- */
        .hero { position: relative; }
        .hero::before {
            content: "";
            position: absolute; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E");
            opacity: 0.15; pointer-events: none;
        }
        .hero > * { position: relative; }

        /* --- TRUST BADGE --- */
        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(91,123,106,0.1);
            color: var(--accent-sage);
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 500;
        }

        /* --- NEWSLETTER CTA --- */
        .newsletter-section {
            background: var(--bg-surface);
            padding: 56px 24px;
            text-align: center;
        }
        .newsletter-inner {
            max-width: 520px;
            margin: 0 auto;
        }
        .newsletter-section h2 {
            text-align: center;
            padding-left: 0;
        }
        .newsletter-section h2::before { display: none; }
        .newsletter-section p { color: var(--text-secondary); margin-bottom: 24px; }
        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 440px;
            margin: 0 auto;
        }
        .newsletter-form input[type="email"] {
            flex: 1;
            padding: 10px 16px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            background: var(--bg-elevated);
        }
        .newsletter-form .btn-primary { white-space: nowrap; }

        /* --- AUTHOR BOX --- */
        .author-box {
            display: flex;
            gap: 20px;
            align-items: center;
            padding: 24px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin: 40px 0;
        }
        .author-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: url('/images/authors-steffen-elmar.jpg') center/cover;
            flex-shrink: 0;
        }
        .author-info h4 { font-family: 'Fraunces', serif; margin: 0 0 4px; font-size: 16px; padding-left: 0; }
        .author-info h4::before { display: none; }
        .author-info p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.5; }

        /* --- ARTICLE 2-COL LAYOUT --- */
        .article-layout {
            display: grid;
            grid-template-columns: 1fr var(--sidebar-width);
            gap: 48px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }
        .article-body { max-width: var(--article-max); }
        .article-sidebar { position: relative; }
        .sidebar-sticky { position: sticky; top: 88px; }
        .tasting-panel {
            background: var(--bg-surface);
            border-radius: var(--radius-sm);
            padding: 24px;
            margin-bottom: 24px;
        }
        .tasting-panel h3 {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-amber);
            margin: 0 0 16px;
            padding-left: 0;
        }
        .tasting-panel h3::before { display: none; }
        .panel-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }
        .panel-row:last-child { border-bottom: none; }
        .panel-label { color: var(--text-secondary); }
        .panel-value { font-weight: 500; color: var(--text-primary); }

        @media (max-width: 900px) {
            .article-layout { grid-template-columns: 1fr; }
            .article-sidebar { order: -1; }
        }

        /* --- TRUST SECTION --- */
        .trust-section {
            text-align: center;
            padding: 48px 24px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        .trust-stat-number { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700; color: var(--accent-amber); }
        .trust-stat-label { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .footer-inner { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
            .site-nav { gap: 16px; }
            .newsletter-form { flex-direction: column; }
            .trust-stats { gap: 24px; }
        }
        @media (max-width: 600px) {
            .hero h1 { font-size: 1.8em; }
            .article-header h1 { font-size: 1.5em; }
            .article-body { padding: 24px; }
            .nav-toggle { display: block; }
            .header-inner { position: relative; }
            .site-nav {
                display: none;
                position: absolute;
                top: 64px;
                left: -24px;
                right: -24px;
                background: var(--bg-elevated);
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-sm);
                flex-direction: column;
                padding: 16px 24px;
                gap: 12px;
                z-index: 99;
            }
            .site-nav.open { display: flex; }
            .site-nav a { margin-left: 0; }
            .site-nav a.active::after { display: none; }
            .card-image-wrapper, .card-image, .card-image-placeholder { height: 160px; }
            .article-hero-image { max-height: 240px; }
            .related-grid { grid-template-columns: 1fr; }
            .empfehlung-box { flex-direction: column; gap: 8px; }
        }

        /* --- ACCESSIBILITY --- */
        a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
            outline: 2px solid var(--accent-amber);
            outline-offset: 2px;
        }
        html { scroll-behavior: smooth; }
        [id] { scroll-margin-top: 80px; }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 16px;
            background: var(--accent-amber);
            color: #fff;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            z-index: 200;
            text-decoration: none;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 8px;
        }

        /* --- CARD FADE-IN ANIMATION --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-card, .card {
            animation: fadeInUp 0.5s ease both;
        }
        .article-card:nth-child(2), .card:nth-child(2) { animation-delay: 0.08s; }
        .article-card:nth-child(3), .card:nth-child(3) { animation-delay: 0.16s; }
        .article-card:nth-child(4), .card:nth-child(4) { animation-delay: 0.24s; }
        .article-card:nth-child(5), .card:nth-child(5) { animation-delay: 0.32s; }
        .article-card:nth-child(6), .card:nth-child(6) { animation-delay: 0.40s; }
