/* ==========================================================================
   Digital Wellness — Style
   Farbschema: Sunrise / Blue Topaz / Cerulean / Icicle
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --color-primary: #006C84;
    --color-primary-dark: #005468;
    --color-primary-light: #6EB5C0;
    --color-primary-bg: #edf5f7;
    --color-accent: #e8956f;
    --color-accent-dark: #d47a54;
    --color-accent-light: #fff0ea;
    --color-sunrise: #FFCCBB;
    --color-topaz: #6EB5C0;
    --color-cerulean: #006C84;
    --color-icicle: #E2E8E4;
    --color-text: #1e293b;
    --color-text-light: #5a6b7a;
    --color-text-lighter: #8a9baa;
    --color-bg: #ffffff;
    --color-bg-alt: #f3f6f4;
    --color-bg-soft: #E2E8E4;
    --color-bg-dark: #005468;
    --color-bg-footer: #004d61;
    --color-border: #d5ddd8;
    --color-border-light: #edf0ee;
    --color-success: #10b981;
    --color-warning: #e8956f;
    --color-danger: #ef4444;
    --color-info: #6EB5C0;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --section-pad: 64px;
    --content-width: 1200px;
    --article-width: 800px;
    --sidebar-width: 280px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,.1), 0 4px 10px rgba(0,0,0,.06);
    --transition: .2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-cerulean); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.3; color: var(--color-text); }
h1 { font-size: 2.2rem; font-weight: 800; }
h2 { font-size: 1.6rem; font-weight: 700; margin: 2rem 0 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 .75rem; }
h4 { font-size: 1.1rem; font-weight: 600; margin: 1.25rem 0 .5rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.5rem; }
li { margin-bottom: .35rem; }

/* --- Content Images --- */
.content-img {
    margin: 2rem 0;
}
.content-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}
.content-img figcaption {
    font-size: .85rem;
    color: var(--color-text-light);
    margin-top: 8px;
    text-align: center;
}

/* --- Layout --- */
.container { max-width: var(--content-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--color-bg-alt); }

/* Article Layout — Sidebar neben Content */
.article-layout {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 30px 24px 0;
}
.article-layout > .container {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 48px;
    align-items: start;
    max-width: 100%;
    padding: 0;
}
.article-content { min-width: 0; }

/* --- Header (weicher, freundlicher) --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, #004d61 0%, #006C84 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0,60,80,.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: var(--content-width);
    margin: 0 auto;
    height: 64px;
}
.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.logo span { color: var(--color-sunrise); }
.logo:hover { color: #fff; }

/* Desktop Nav — vertikal zentriert */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    height: 64px;
    margin: 0;
    padding: 0;
}
.nav-desktop > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-desktop > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    color: #d4eef3;
    font-size: .92rem;
    font-weight: 500;
    transition: color var(--transition);
}
.nav-desktop > li > a:hover,
.nav-desktop > li > a.active { color: #fff; }

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    z-index: 200;
}
.nav-desktop > li:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: .9rem;
}
.dropdown-menu a:hover { background: var(--color-primary-bg); color: var(--color-primary); }

/* Mobile Nav */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}
.nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #004d61 0%, #006C84 100%);
    padding: 24px;
    overflow-y: auto;
    z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile-group { margin-bottom: 20px; }
.nav-mobile-group-title {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--color-topaz);
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav-mobile a {
    display: block;
    padding: 10px 0;
    color: #d4eef3;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-mobile a:hover { color: #fff; }

/* --- Ad Disclosure Bar --- */
.ad-disclosure-bar {
    background: var(--color-accent-light);
    padding: 8px 24px;
    font-size: .82rem;
    color: var(--color-text-light);
    text-align: center;
    border-bottom: 1px solid var(--color-sunrise);
}

/* --- Breadcrumb (inline, keine Nummern) --- */
.breadcrumb {
    padding: 16px 0;
    font-size: .85rem;
    color: var(--color-text-lighter);
}
.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before {
    content: "›";
    margin: 0 8px;
    color: var(--color-text-lighter);
}
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-primary); }

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, #004d61 0%, #006C84 60%, #6EB5C0 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: #fff;
}
.hero p {
    font-size: 1.2rem;
    color: #e8f4f7;
    max-width: 640px;
    margin: 0 auto 32px;
}
.hero-article {
    padding: 48px 0 32px;
    text-align: left;
}
.hero-article h1 { font-size: 2.2rem; }
.hero-article p { margin: 0; max-width: none; color: #e8f4f7; }
.article-meta { font-size: .9rem; opacity: .8; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn small { font-weight: 400; opacity: .7; font-size: .8em; }
.btn-primary {
    background: var(--color-accent);
    color: #fff;
}
.btn-primary:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
    background: var(--color-primary);
    color: #fff;
}
.btn-secondary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }

/* --- Cards Grid --- */
.cards-grid {
    display: grid;
    gap: 24px;
}
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--color-bg-alt);
}
.card-body { padding: 24px; }
.card-body h3 { margin-top: 0; font-size: 1.15rem; }
.card-body p { color: var(--color-text-light); font-size: .95rem; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: .95rem;
}
.card-link:hover { gap: 8px; }

/* ==========================================================================
   AFFILIATE COMPONENTS — Prominente Darstellung
   ========================================================================== */

/* --- Partner Banner (Full-width, auffaellig) --- */
.partner-banner {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, #fff5f0 50%, #fdf8f5 100%);
    border: 2px solid var(--color-sunrise);
    border-radius: var(--radius);
    padding: 32px;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 28px;
}
.partner-banner-logo {
    width: 160px;
    height: 80px;
    background: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.partner-banner-logo img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}
.partner-banner-content h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    color: var(--color-text);
}
.partner-banner-content p {
    margin: 0;
    color: var(--color-text-light);
    font-size: .95rem;
}
.partner-banner-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

/* --- Product Highlight Card (mit Bild, Features, Preis) --- */
.product-highlight {
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    transition: border-color var(--transition);
}
.product-highlight:hover { border-color: var(--color-primary-light); }
.product-highlight-featured { border-color: var(--color-accent); }
.product-highlight-featured .product-highlight-badge { background: var(--color-accent); }

.product-highlight-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 6px 16px;
    letter-spacing: .03em;
}
.product-highlight-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
}
.product-highlight-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.product-highlight-img img {
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
}
.product-highlight-body {
    padding: 24px 28px;
}
.product-highlight-body h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
}
.product-highlight-body > p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}
.product-features li {
    font-size: .9rem;
    color: var(--color-text);
    padding-left: 22px;
    position: relative;
    margin: 0;
}
.product-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}
.product-highlight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
}
.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
}
.product-price small {
    font-size: .8rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* --- Partner Box (Inline, innerhalb Content — gefixt) --- */
.partner-box {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, #fff5f0 100%);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 24px 28px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.partner-box-content { flex: 1; min-width: 200px; }
.partner-box-content h4 { margin: 0 0 4px; font-size: 1.05rem; }
.partner-box-content p { margin: 0; color: var(--color-text-light); font-size: .92rem; }
.partner-box .btn { flex-shrink: 0; }

/* --- Comparison Table --- */
.compare-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
}
.compare-table th {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
.compare-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--color-border-light);
    vertical-align: middle;
}
.compare-table tr:nth-child(even) { background: var(--color-bg-alt); }
.compare-table tr:hover { background: var(--color-primary-bg); }
.compare-table .check { color: var(--color-success); font-weight: 700; }
.compare-table .cross { color: var(--color-danger); }
.compare-table .btn { padding: 8px 18px; font-size: .85rem; white-space: nowrap; }

/* --- Sidebar (sticky) --- */
.sidebar {
    position: sticky;
    top: 88px;
}

.sidebar-cta {
    background: linear-gradient(180deg, var(--color-accent-light) 0%, #fff 100%);
    border: 2px solid var(--color-sunrise);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}
.sidebar-cta-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.sidebar-cta-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    background: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.sidebar-cta-logo img { max-width: 60px; max-height: 60px; }
.sidebar-cta h4 { margin: 0 0 8px; font-size: 1rem; }
.sidebar-cta p { font-size: .85rem; color: var(--color-text-light); margin-bottom: 16px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* --- Table of Contents (Sidebar) --- */
.toc {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 20px;
}
.toc h3, .toc h4 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--color-text-lighter);
    margin: 0 0 12px;
}
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { margin-bottom: 0; }
.toc a {
    display: block;
    padding: 6px 0;
    font-size: .88rem;
    color: var(--color-text-light);
    border-left: 3px solid transparent;
    padding-left: 12px;
    transition: all var(--transition);
}
.toc a:hover { color: var(--color-primary); border-left-color: var(--color-primary-light); }
.toc a.active { color: var(--color-primary); border-left-color: var(--color-primary); font-weight: 600; }

/* --- Info Boxes --- */
.info-box {
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 1.5rem 0;
    font-size: .95rem;
}
.info-box-title {
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-box.tip { background: #edf5f7; border-left: 4px solid var(--color-topaz); }
.info-box.tip .info-box-title { color: var(--color-cerulean); }
.info-box.warning { background: var(--color-accent-light); border-left: 4px solid var(--color-accent); }
.info-box.warning .info-box-title { color: #8b4a2c; }
.info-box.danger { background: #fef2f2; border-left: 4px solid var(--color-danger); }
.info-box.danger .info-box-title { color: #991b1b; }
.info-box.expert { background: #eff6ff; border-left: 4px solid var(--color-info); }
.info-box.expert .info-box-title { color: #1e40af; }

/* --- FAQ Accordion --- */
.faq-section { margin: 2rem 0; }
.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    transition: background var(--transition);
}
.faq-question:hover { background: var(--color-bg-alt); }
.faq-question::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--color-text-lighter);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item.open .faq-question::after { content: "\2212"; }
.faq-answer {
    display: none;
    padding: 0 20px 16px;
    color: var(--color-text-light);
    font-size: .95rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* --- Ad Disclosure (Bottom) --- */
.ad-disclosure-section {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 2rem 0;
    font-size: .85rem;
    color: var(--color-text-light);
}
.ad-disclosure-section strong { color: var(--color-text); }

/* --- Footer (weicher, freundlicher) --- */
.site-footer {
    background: linear-gradient(180deg, #005468 0%, #004050 100%);
    color: #9cc3cc;
    padding: 48px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 12px; }
.footer-col h4 {
    color: #c0e0e8;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #9cc3cc; font-size: .9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    padding: 20px 0;
    font-size: .82rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-disclaimer {
    padding: 16px 0 24px;
    font-size: .78rem;
    color: #7a9eaa;
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 16px;
}

/* --- Cluster Overview (Homepage) --- */
.cluster-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--color-primary);
    transition: transform var(--transition), box-shadow var(--transition);
}
.cluster-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cluster-card-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.cluster-card h3 { margin-top: 0; }
.cluster-card p { color: var(--color-text-light); font-size: .95rem; }
.cluster-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    font-size: .9rem;
}
.cluster-card ul li {
    padding: 4px 0;
    border-bottom: 1px solid var(--color-border-light);
}
.cluster-card ul li:last-child { border: none; }
.cluster-card ul a { color: var(--color-text-light); }
.cluster-card ul a:hover { color: var(--color-primary); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    :root { --section-pad: 48px; }
    .article-layout > .container { grid-template-columns: 1fr; }
    .article-layout { padding: 0 24px; }
    .sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .partner-banner { grid-template-columns: 120px 1fr; }
    .partner-banner .btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 768px) {
    :root { --section-pad: 36px; }
    body { font-size: 16px; }
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.35rem; }
    .hero { padding: 48px 0; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1.05rem; }
    .nav-desktop { display: none; }
    .hamburger { display: block; }
    .product-highlight-inner { grid-template-columns: 1fr; }
    .product-highlight-img { min-height: 160px; }
    .product-features { grid-template-columns: 1fr; }
    .product-highlight-footer { flex-direction: column; align-items: flex-start; }
    .partner-banner { grid-template-columns: 1fr; text-align: center; }
    .partner-banner-logo { margin: 0 auto; }
    .partner-box { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cards-3, .cards-4 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .article-layout { padding: 0 16px; }
    .btn { padding: 12px 20px; font-size: .92rem; }
    .btn-lg { padding: 14px 24px; font-size: 1rem; }
}
