/* ─── READING PROGRESS BAR ─── */
.rp-bar {
    position: fixed; top: 0; left: 0; z-index: 200;
    height: 3px; width: 0%; background: var(--terra);
    transition: width .1s linear;
    pointer-events: none;
}

/* ─── HERO ─── */
.rg-hero {
    position: relative; background: var(--forest); overflow: hidden;
    padding: 130px 0 5rem; min-height: 70vh;
    display: flex; align-items: center;
}
.rg-hero__noise {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: .04;
}
.rg-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.rg-hero__eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--sans); font-size: .7rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--sage-mid); margin-bottom: 1.5rem;
}
.rg-hero__eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--terra);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(200,113,74,.5); }
    50% { box-shadow: 0 0 0 6px rgba(200,113,74,0); }
}
.rg-hero__title {
    font-family: var(--sans); font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800; line-height: 1.05; color: var(--white); margin-bottom: .5rem;
}
.rg-hero__title em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--sage-mid); }
.rg-hero__subtitle {
    font-family: var(--serif); font-style: italic; font-size: 1.125rem;
    line-height: 1.8; color: rgba(255,255,255,.6); max-width: 620px; margin-bottom: 2.5rem;
}
.rg-hero__subtitle > p { margin: 0 0 1.15rem; }
.rg-hero__subtitle > p:last-child { margin-bottom: 0; }
.rg-hero__facts {
    display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem;
}
.rg-fact {
    display: flex; flex-direction: column; gap: .2rem;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: .9rem 1.25rem;
    backdrop-filter: blur(8px);
    transition: background .2s, border-color .2s;
}
.rg-fact:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.rg-fact__value {
    font-family: var(--sans); font-size: 1.5rem; font-weight: 800;
    color: var(--white); line-height: 1;
}
.rg-fact__value--terra { color: var(--terra-light); }
.rg-fact__label { font-family: var(--sans); font-size: .72rem; color: rgba(255,255,255,.45); }
.rg-hero__jumps { display: flex; flex-wrap: wrap; gap: .6rem; }
.rg-jump {
    display: inline-flex; align-items: center; gap: .4rem;
    font-family: var(--sans); font-size: .82rem; font-weight: 600;
    color: rgba(255,255,255,.65); background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15); border-radius: 9999px;
    padding: .45rem 1.1rem; text-decoration: none;
    transition: color .15s, background .15s, border-color .15s;
}
.rg-jump:hover { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
.rg-jump svg { flex-shrink: 0; }
.rg-hero__img {
    position: absolute; right: 0; bottom: 0; top: 0;
    width: 38%; overflow: hidden; pointer-events: none;
}
.rg-hero__img img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: .18; filter: saturate(0);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 40%, rgba(0,0,0,.6) 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 40%, rgba(0,0,0,.6) 100%);
}
@media (max-width: 900px) {
    .rg-hero__img { width: 100%; }
    .rg-hero__img img {
        opacity: .2;
        mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.7) 30%, rgba(0,0,0,.7) 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.7) 30%, rgba(0,0,0,.7) 100%);
    }
}

/* Hero-Hintergrundfoto + luftigerer Hero (Schuppen-Kopfhaut / Schuppen-Gesicht) */
.rg-hero--photo { padding-top: 160px; padding-bottom: 6.5rem; min-height: 78vh; }
.rg-hero--photo .rg-hero__breadcrumb { margin-bottom: 2rem; }
.rg-hero--photo .rg-hero__title { margin-bottom: 1.5rem; }
.rg-hero--photo .rg-hero__subtitle { margin-bottom: 2.75rem; }
.rg-hero--photo .rg-meta { margin-top: 2rem; }
.rg-hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.rg-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 30%; }
.rg-hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(103deg, rgba(22,46,37,.96) 0%, rgba(22,46,37,.9) 44%, rgba(22,46,37,.66) 74%, rgba(22,46,37,.5) 100%),
        linear-gradient(to top, rgba(22,46,37,.78) 0%, rgba(22,46,37,0) 52%);
}
@media (max-width: 900px) {
    .rg-hero__bg img { object-position: 64% 26%; }
    .rg-hero__bg::after {
        background:
            linear-gradient(to right, rgba(22,46,37,.93) 0%, rgba(22,46,37,.86) 100%),
            linear-gradient(to top, rgba(22,46,37,.82) 0%, rgba(22,46,37,.15) 62%);
    }
}
@media (max-width: 768px) {
    .rg-hero { padding: 100px 0 3rem; min-height: auto; }
    .rg-hero__subtitle { font-size: .95rem; margin-bottom: 1.75rem; }
    .rg-hero__subtitle > p { margin-bottom: .9rem; }
    .rg-hero__facts { display: none; }
    .rg-hero__jumps { gap: .4rem; }
    .rg-jump { font-size: .75rem; padding: .38rem .85rem; }
    .rg-hero--photo { padding-top: 116px; padding-bottom: 3.5rem; min-height: auto; }
    .rg-hero--photo .rg-hero__breadcrumb { margin-bottom: 1.5rem; }
    .rg-hero--photo .rg-hero__title { margin-bottom: 1rem; }
    .rg-hero--photo .rg-hero__subtitle { margin-bottom: 2rem; }
    .rg-hero--photo .rg-meta { margin-top: 1.5rem; }
}

/* ─── STICKY SECTION NAV ─── */
.rg-nav {
    /* top must match the fixed header height (.nav__inner in styles.css) */
    position: sticky; top: 88px; z-index: 80;
    background: rgba(250,248,243,.92); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    overflow-x: auto; scrollbar-width: none;
}
.rg-nav::-webkit-scrollbar { display: none; }
.rg-nav__inner {
    display: flex; align-items: center; justify-content: center; gap: 0;
    padding: 0 1.5rem; min-height: 48px;
    max-width: 1200px; margin: 0 auto;
}
@media (max-width: 768px) {
    .rg-nav__inner { justify-content: flex-start; padding: 0 1rem; }
}
.rg-nav__link {
    font-family: var(--sans); font-size: .8rem; font-weight: 600; flex-shrink: 0;
    color: var(--ink-muted); padding: .5rem 1rem;
    border-radius: 9999px;
    white-space: nowrap; text-decoration: none;
    transition: color .15s var(--ease-out), background-color .15s var(--ease-out);
}
.rg-nav__link:hover { color: var(--forest); }
.rg-nav__link.is-active {
    color: var(--forest);
    background-color: rgba(74, 124, 111, .14); /* --sage at low opacity: transparent green pill */
}

/* ─── GENERAL SECTION ─── */
.rg-section { padding: 5rem 0; }
.rg-section--alt { background: var(--cream-dark); }
.rg-section--dark { background: var(--forest); }
.rg-section-head { margin-bottom: 3rem; }
.rg-section-head__eyebrow { margin-bottom: .9rem; }
.rg-h2 {
    font-family: var(--sans); font-size: clamp(1.65rem, 3vw, 2.5rem);
    font-weight: 800; line-height: 1.15; color: var(--ink); margin-bottom: .75rem;
}
.rg-h2 em { font-family: var(--serif); font-style: italic; font-weight: 500; }
.rg-h2--light { color: var(--white); }
.rg-lead {
    font-family: var(--serif); font-size: 1.0625rem; line-height: 1.8;
    color: var(--ink-muted); max-width: 680px;
}
.rg-lead--light { color: rgba(255,255,255,.6); }

/* ─── WHAT IS IT (was-ist) ─── */
.rg-was-grid {
    display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}
.rg-was-grid__text p {
    font-family: var(--serif); font-size: 1.0625rem; line-height: 1.85;
    color: var(--ink-muted); margin-bottom: 1.5rem;
}
.rg-was-grid__text p:last-child { margin-bottom: 0; }
.rg-was-grid__text strong { font-weight: 700; color: var(--ink); }
.rg-alias-list {
    display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0;
}
.rg-alias {
    font-family: var(--sans); font-size: .75rem; font-weight: 600;
    color: var(--forest); background: var(--sage-pale);
    border: 1px solid rgba(74,124,111,.2); border-radius: 9999px;
    padding: .3rem .9rem;
}
.rg-stat-bar {
    display: flex; flex-direction: column; gap: .35rem; margin: 2rem 0;
}
.rg-stat-bar__label {
    display: flex; justify-content: space-between;
    font-family: var(--sans); font-size: .78rem; font-weight: 600; color: var(--ink-mid);
}
.rg-stat-bar__track {
    height: 8px; background: var(--border); border-radius: 99px; overflow: hidden;
}
.rg-stat-bar__fill {
    height: 100%; border-radius: 99px; background: var(--sage);
    width: 0%; transition: width 1.2s var(--ease-out);
}
.rg-stat-bar__fill--terra { background: var(--terra); }
.rg-was-img {
    border-radius: 20px; overflow: hidden; position: relative;
    box-shadow: var(--shadow-lg);
}
.rg-was-img img { width: 100%; height: 360px; object-fit: cover; display: block; }
.rg-was-img__caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(28,58,47,.9) 0%, transparent 100%);
    font-family: var(--sans); font-size: .72rem; color: rgba(255,255,255,.7);
}
@media (max-width: 900px) { .rg-was-grid { grid-template-columns: 1fr; } }

/* ─── INFOKARTE ─── */
.rg-infobox {
    background: var(--sage-pale); border: 1px solid rgba(74,124,111,.2);
    border-left: 4px solid var(--sage); border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem; margin: 2rem 0;
}
.rg-infobox__title {
    font-family: var(--sans); font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: var(--sage);
    margin-bottom: .6rem; display: flex; align-items: center; gap: .45rem;
}
.rg-infobox p {
    font-family: var(--serif); font-size: .95rem; line-height: 1.7; color: var(--ink-mid);
}

/* ─── SYMPTOME (area tabs) ─── */
.rg-area-tabs {
    display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
}
.rg-area-tab {
    font-family: var(--sans); font-size: .82rem; font-weight: 600;
    color: var(--ink-muted); background: var(--white);
    border: 1.5px solid var(--border); border-radius: 9999px;
    padding: .5rem 1.15rem; cursor: pointer;
    transition: color .15s, background .15s, border-color .15s, transform .15s;
}
.rg-area-tab:hover { border-color: var(--sage-mid); color: var(--forest); }
.rg-area-tab.is-active {
    background: var(--forest); color: var(--white);
    border-color: var(--forest);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28,58,47,.25);
}
.rg-area-panel { display: none; }
.rg-area-panel.is-active { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.rg-symptoms-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .65rem; }
.rg-symptom {
    display: flex; align-items: flex-start; gap: .85rem;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: .9rem 1.1rem;
    transition: box-shadow .2s, transform .2s;
}
.rg-symptom:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.rg-symptom__icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--sage-pale); color: var(--sage);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rg-symptom__body { flex: 1; }
.rg-symptom__name { font-family: var(--sans); font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .15rem; }
.rg-symptom__desc { font-family: var(--serif); font-size: .85rem; line-height: 1.5; color: var(--ink-muted); }
.rg-area-visual { position: sticky; top: 130px; }
.rg-area-visual img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-md); }
.rg-area-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; width: 100%; aspect-ratio: 4/3; border-radius: 16px; background: var(--border-pale); color: var(--text-muted); font-size: .85rem; }
.rg-area-visual__caption {
    font-family: var(--sans); font-size: .72rem; color: var(--ink-faint);
    text-align: center; margin-top: .65rem;
}
@media (max-width: 860px) {
    .rg-area-panel.is-active { grid-template-columns: 1fr; }
    .rg-area-visual { position: static; order: -1; margin-bottom: 1.5rem; }
    .rg-area-visual img { max-width: 280px; margin: 0 auto; }
}

/* ─── URSACHEN ─── */
.rg-cause-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.rg-cause-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.5rem;
    transition: box-shadow .25s, transform .25s;
    position: relative; overflow: hidden;
}
.rg-cause-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--sage);
}
.rg-cause-card--terra::before { background: var(--terra); }
.rg-cause-card--forest::before { background: var(--forest); }
.rg-cause-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.rg-cause-card__icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--sage-pale); color: var(--sage);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.rg-cause-card--terra .rg-cause-card__icon { background: rgba(200,113,74,.1); color: var(--terra); }
.rg-cause-card--forest .rg-cause-card__icon { background: rgba(28,58,47,.08); color: var(--forest); }
.rg-cause-card__title { font-family: var(--sans); font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: .5rem; }
.rg-cause-card__text { font-family: var(--serif); font-size: .88rem; line-height: 1.65; color: var(--ink-muted); }
@media (max-width: 760px) { .rg-cause-grid { grid-template-columns: 1fr; } }

/* ─── TRIGGER METER ─── */
.rg-trigger-list { display: flex; flex-direction: column; gap: 1rem; max-width: 640px; }
.rg-trigger-row { display: grid; grid-template-columns: 160px 1fr 3rem; gap: 1rem; align-items: center; }
.rg-trigger-name { font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--ink); }
.rg-trigger-track { height: 10px; background: var(--border); border-radius: 99px; overflow: hidden; }
.rg-trigger-fill {
    height: 100%; border-radius: 99px;
    background: linear-gradient(90deg, var(--sage) 0%, var(--forest) 100%);
    width: 0%; transition: width 1.3s var(--ease-out);
}
.rg-trigger-fill--high { background: linear-gradient(90deg, var(--terra-light) 0%, var(--terra-dark) 100%); }
.rg-trigger-pct { font-family: var(--sans); font-size: .8rem; font-weight: 700; color: var(--ink-muted); text-align: right; }

/* ─── BEHANDLUNG TABS ─── */
.rg-treat-tabs { display: flex; background: var(--border-pale); border-radius: 12px; padding: .3rem; gap: .2rem; margin-bottom: 2.5rem; width: fit-content; }
.rg-treat-tab {
    font-family: var(--sans); font-size: .85rem; font-weight: 600;
    color: var(--ink-muted); background: transparent; border: none;
    padding: .6rem 1.4rem; border-radius: 9px; cursor: pointer;
    transition: color .2s, background .2s, box-shadow .2s;
}
.rg-treat-tab.is-active { color: var(--forest); background: var(--white); box-shadow: var(--shadow-sm); }
.rg-treat-panel { display: none; }
.rg-treat-panel.is-active { display: block; }
.rg-treat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.rg-treat-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.5rem 1.75rem;
    display: flex; flex-direction: column; gap: .6rem;
    transition: box-shadow .25s, transform .25s;
}
.rg-treat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.rg-treat-card__head { display: flex; align-items: center; gap: .75rem; }
.rg-treat-card__icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--sage-pale); color: var(--sage);
}
.rg-treat-card__title { font-family: var(--sans); font-size: 1rem; font-weight: 800; color: var(--ink); }
.rg-treat-card__wirkstoff { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); }
.rg-treat-card__text { font-family: var(--serif); font-size: .88rem; line-height: 1.65; color: var(--ink-muted); }
.rg-treat-card__badge {
    align-self: flex-start; font-family: var(--sans); font-size: .68rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; padding: .2rem .7rem;
    border-radius: 9999px; background: var(--sage-pale); color: var(--sage);
}
.rg-treat-card__badge--gold { background: rgba(200,160,74,.12); color: #8a6a1a; }
.rg-treat-card__badge--red { background: rgba(200,74,74,.1); color: #922; }
.rg-treat-intro {
    margin-bottom: 1.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--white); border: 1px solid var(--border); border-radius: 14px;
    font-family: var(--serif); font-size: .975rem; line-height: 1.8; color: var(--ink-muted);
    border-left: 4px solid var(--sage);
}
.rg-treat-card__img {
    width: 100%; height: auto; display: block;
    border-radius: 10px; margin-bottom: 0;
    box-shadow: var(--shadow-sm);
}
.rg-treat-card__img:not(:last-child) { margin-bottom: 1.25rem; }
.rg-treat-img-placeholder {
    width: 100%; aspect-ratio: 16/9;
    background: var(--cream-dark); border: 2px dashed var(--border);
    border-radius: 10px; margin-bottom: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .6rem; color: var(--ink-faint);
}
.rg-treat-img-placeholder svg { opacity: .4; }
.rg-treat-img-placeholder span { font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .5; }
.rg-treat-card__list {
    display: flex; flex-direction: column; gap: .65rem;
    padding-left: 1.1rem; margin: 0;
    list-style: disc;
}
.rg-treat-card__list li {
    font-family: var(--serif); font-size: .88rem; line-height: 1.65; color: var(--ink-muted);
}
.rg-treat-card__list li::marker { color: var(--sage); }
.rg-treat-card__list a,
.rg-treat-card__text a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.rg-treat-disclaimer {
    margin-top: 2rem; padding: 1rem 1.25rem;
    background: rgba(200,113,74,.07); border: 1px solid rgba(200,113,74,.18);
    border-radius: 10px; font-family: var(--sans); font-size: .8rem;
    color: var(--ink-muted); display: flex; align-items: flex-start; gap: .65rem;
}
.rg-treat-disclaimer svg { color: var(--terra); flex-shrink: 0; margin-top: 1px; }
@media (max-width: 640px) { .rg-treat-grid { grid-template-columns: 1fr; } }

/* ─── LEBEN ─── */
.rg-leben-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-template-areas: "img header" "img tips";
    column-gap: 4rem; row-gap: 2rem;
    align-items: start;
}
.rg-leben-img-wrap { grid-area: img; }
.rg-leben-header   { grid-area: header; }
.rg-leben-tips-wrap { grid-area: tips; }
.rg-leben-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.rg-leben-img img { width: 100%; height: 420px; object-fit: cover; object-position: center top; display: block; }
.rg-leben-tips { display: flex; flex-direction: column; gap: 1.25rem; }
.rg-tip {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; transition: background .2s;
}
.rg-tip:hover { background: rgba(255,255,255,.12); }
.rg-tip__num {
    font-family: var(--sans); font-size: 1.3rem; font-weight: 800;
    color: var(--sage-mid); line-height: 1; flex-shrink: 0; width: 2rem;
}
.rg-tip__body {}
.rg-tip__title { font-family: var(--sans); font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.rg-tip__text { font-family: var(--serif); font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.55); }
@media (max-width: 900px) {
    .rg-leben-grid {
        display: flex; flex-direction: column; gap: 2rem;
    }
    .rg-leben-header    { order: 1; }
    .rg-leben-img-wrap  { order: 2; }
    .rg-leben-tips-wrap { order: 3; }
    .rg-leben-img img { height: 260px; }
    .rg-leben-tips-wrap > div:last-child { justify-content: center; }
}

/* ─── FAQ ─── */
.rg-faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 780px; }
.rg-faq-item {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
}
.rg-faq-btn {
    width: 100%; text-align: left; padding: 1.25rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    font-family: var(--sans); font-size: .95rem; font-weight: 700; color: var(--ink);
    background: none; border: none; cursor: pointer;
    transition: color .15s;
}
.rg-faq-btn:hover { color: var(--forest); }
.rg-faq-btn[aria-expanded="true"] { color: var(--forest); }
.rg-faq-icon {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: var(--sage-pale); color: var(--sage);
    display: flex; align-items: center; justify-content: center;
    transition: transform .3s var(--ease-out), background .2s;
}
.rg-faq-btn[aria-expanded="true"] .rg-faq-icon { transform: rotate(45deg); background: var(--forest); color: var(--white); }
.rg-faq-body {
    max-height: 0; overflow: hidden;
    transition: max-height .4s var(--ease-out), padding .3s;
    padding: 0 1.5rem;
}
.rg-faq-body.is-open { max-height: 60rem; padding-bottom: 1.25rem; }
.rg-faq-body p { font-family: var(--serif); font-size: .95rem; line-height: 1.8; color: var(--ink-muted); }

/* ─── QUELLENANGABEN ─── */
.rg-sources-note { font-family: var(--sans); font-size: .72rem; color: var(--ink-faint); margin-top: 2rem; padding-top: .85rem; border-top: 1px solid var(--border); }
.rg-sources-note a { color: var(--ink-faint); text-decoration: none; font-weight: 700; }
.rg-sources-note a:hover { color: var(--sage); }
.rg-sources-note--light { color: rgba(255,255,255,.3); border-top-color: rgba(255,255,255,.1); }
.rg-sources-note--light a { color: rgba(255,255,255,.3); }
.rg-sources-note--light a:hover { color: rgba(255,255,255,.7); }

/* ─── QUIZ ─── */
.rg-quiz {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-sm);
    max-width: 680px; margin: 0 auto;
}
.rg-quiz__header { margin-bottom: 2rem; }
.rg-quiz__title { font-family: var(--sans); font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: .4rem; }
.rg-quiz__sub { font-family: var(--serif); font-size: .9rem; color: var(--ink-muted); }
.rg-quiz__step { display: none; }
.rg-quiz__step.is-active { display: block; }
.rg-quiz__q { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 1.25rem; }
.rg-quiz__options { display: flex; flex-direction: column; gap: .6rem; }
.rg-quiz__opt {
    display: flex; align-items: center; gap: .85rem;
    font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--ink-mid);
    background: var(--cream); border: 1.5px solid var(--border); border-radius: 10px;
    padding: .85rem 1.1rem; cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
.rg-quiz__opt:hover { background: var(--sage-pale); border-color: var(--sage-mid); color: var(--forest); }
.rg-quiz__opt.is-correct { background: rgba(74,124,111,.12); border-color: var(--sage); color: var(--forest); }
.rg-quiz__opt.is-wrong { background: rgba(200,74,74,.07); border-color: rgba(200,74,74,.35); color: #922; }
.rg-quiz__opt-marker {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: var(--border); display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 700; color: var(--ink-faint);
    transition: background .15s, color .15s;
}
.rg-quiz__opt.is-correct .rg-quiz__opt-marker { background: var(--sage); color: #fff; }
.rg-quiz__opt.is-wrong .rg-quiz__opt-marker { background: #c44; color: #fff; }
.rg-quiz__feedback {
    margin-top: 1rem; padding: .85rem 1.1rem;
    border-radius: 10px; font-family: var(--serif); font-size: .9rem; line-height: 1.65;
    display: none;
}
.rg-quiz__feedback.is-correct { background: rgba(74,124,111,.1); color: var(--forest); }
.rg-quiz__feedback.is-wrong { background: rgba(200,74,74,.07); color: #922; }
.rg-quiz__next {
    margin-top: 1.25rem; display: none;
    font-family: var(--sans); font-size: .88rem; font-weight: 700;
    color: var(--white); background: var(--forest); border: none; border-radius: 9999px;
    padding: .65rem 1.5rem; cursor: pointer; transition: background .15s;
}
.rg-quiz__next:hover { background: var(--forest-mid); }
.rg-quiz__result { display: none; text-align: center; padding: 1rem 0; }
.rg-quiz__result-score { font-family: var(--sans); font-size: 3rem; font-weight: 800; color: var(--forest); line-height: 1; margin-bottom: .4rem; }
.rg-quiz__result-label { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--ink-muted); margin-bottom: 1rem; }
.rg-quiz__progress { height: 4px; background: var(--border); border-radius: 99px; overflow: hidden; margin-bottom: 2rem; }
.rg-quiz__progress-fill { height: 100%; background: var(--sage); border-radius: 99px; transition: width .4s var(--ease-out); }

/* ─── HUB LINKS ─── */
.rg-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.rg-hub-card {
    display: flex; flex-direction: column; gap: .75rem;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 18px; padding: 1.75rem; text-decoration: none; color: inherit;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative; overflow: hidden;
}
.rg-hub-card::after {
    content: '→'; position: absolute; top: 1.5rem; right: 1.5rem;
    font-size: 1.1rem; color: var(--sage); opacity: 0;
    transition: opacity .2s, transform .2s;
}
.rg-hub-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--sage-mid); }
.rg-hub-card:hover::after { opacity: 1; transform: translateX(3px); }
.rg-hub-card__num {
    font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--sage);
}
.rg-hub-card__title { font-family: var(--sans); font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.rg-hub-card__desc { font-family: var(--serif); font-size: .88rem; line-height: 1.65; color: var(--ink-muted); flex: 1; }
.rg-hub-card__count {
    font-family: var(--sans); font-size: .78rem; font-weight: 600; color: var(--ink-faint);
    padding-top: .75rem; border-top: 1px solid var(--border);
}
@media (max-width: 640px) { .rg-hub-grid { grid-template-columns: 1fr; } }

/* ─── FIGURE / PLATZHALTER ─── */
.rg-figure { margin: 2rem 0; }
.rg-figure__img { display: block; width: 100%; height: auto; border-radius: 12px; }
.rg-figure__ph {
    aspect-ratio: var(--rg-fig-ratio, 16 / 9);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
    border: 2px dashed var(--border); border-radius: 12px; background: var(--white, #fff);
    padding: 1.5rem; text-align: center;
}
.rg-figure__ph-label { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.rg-figure__ph-note  { font-family: var(--serif); font-size: .9rem; color: var(--ink-muted); max-width: 32ch; }
.rg-figure__cap { margin-top: .6rem; font-family: var(--sans); font-size: .8rem; color: var(--ink-faint); }

/* ─── QUELLEN-LISTE ─── */
.rg-quellen-list { display: flex; flex-direction: column; gap: 1rem; max-width: 860px; list-style: decimal; padding-left: 1.5rem; }
.rg-quellen-item { font-family: var(--sans); font-size: .85rem; line-height: 1.65; color: var(--ink-muted); }
.rg-quellen-autoren { color: var(--ink); font-weight: 600; }
.rg-quellen-item em { font-style: italic; }
.rg-quellen-link { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; margin-left: .3rem; }
.rg-quellen-disclaimer { margin-top: 2rem; font-family: var(--sans); font-size: .75rem; color: var(--ink-faint); max-width: 860px; }

/* ─── DIFFERENZIALDIAGNOSE-KARTEN ─── */
.rg-dd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.rg-dd-card { border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; background: var(--cream); display: flex; flex-direction: column; gap: .6rem; }
.rg-dd-card--flag { border-color: #d9a441; background: #fdf6e9; }
.rg-dd-card__name { font-family: var(--sans); font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.rg-dd-card__row { font-family: var(--sans); font-size: .85rem; line-height: 1.55; color: var(--ink-muted); }
.rg-dd-card__row strong { color: var(--ink); font-weight: 600; }
.rg-dd-flag-box { margin-top: 1.5rem; border-left: 3px solid #d9a441; background: #fdf6e9; padding: 1rem 1.25rem; border-radius: 0 10px 10px 0; font-family: var(--sans); font-size: .9rem; line-height: 1.6; color: var(--ink); }

/* ─── ABGRENZUNGSTABELLE ─── */
.rg-compare-wrap { overflow-x: auto; margin: 1.5rem 0; }
.rg-compare { border-collapse: collapse; width: 100%; min-width: 560px; font-family: var(--sans); font-size: .85rem; }
.rg-compare th, .rg-compare td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; }
.rg-compare thead th { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); background: var(--cream-dark, #f2ede3); }
.rg-compare tbody th, .rg-compare td:first-child { font-weight: 600; color: var(--ink); }

/* ─── FLIESSTEXT-INHALT (Pillar-Seiten) ─── */
.rg-prose { max-width: 720px; font-family: var(--serif); font-size: 1.0625rem; line-height: 1.8; color: var(--ink-muted); }
.rg-prose p { margin: 0 0 1.1rem; }
.rg-prose p:last-child { margin-bottom: 0; }
.rg-prose strong { color: var(--ink); font-weight: 700; }
.rg-prose a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.rg-prose h3 { font-family: var(--sans); font-size: 1.15rem; font-weight: 800; color: var(--ink); margin: 2rem 0 .6rem; }
.rg-prose ul, .rg-prose ol { margin: 0 0 1.1rem; padding-left: 1.3rem; }
.rg-prose ul { list-style: disc; }
.rg-prose ol { list-style: decimal; }
.rg-prose li { margin: 0 0 .4rem; }
.rg-list { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .6rem; max-width: 720px; }
.rg-list li { position: relative; padding-left: 1.6rem; font-family: var(--sans); font-size: .92rem; line-height: 1.6; color: var(--ink-muted); }
.rg-list li strong { color: var(--ink); font-weight: 600; }
.rg-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--sage); font-weight: 700; }

/* ─── VERWANDTE ARTIKEL / WEITERE RATGEBER ─── */
.rg-verwandte-grid, .rg-weitere-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }

.rg-weitere-card { border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; background: var(--cream); display: flex; flex-direction: column; gap: .5rem; text-decoration: none; transition: border-color .15s, transform .15s; }
.rg-weitere-card:hover { border-color: var(--sage); transform: translateY(-2px); }
.rg-weitere-card__title { font-family: var(--sans); font-size: 1rem; font-weight: 800; color: var(--ink); }
.rg-weitere-card__sub { font-family: var(--serif); font-size: .85rem; line-height: 1.6; color: var(--ink-muted); flex: 1; }
.rg-weitere-card__more { font-family: var(--sans); font-size: .8rem; font-weight: 600; color: var(--sage); }

.rg-verwandte-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--cream); display: flex; flex-direction: column; text-decoration: none; transition: border-color .15s, transform .15s; }
.rg-verwandte-card:hover { border-color: var(--sage); transform: translateY(-2px); }
.rg-verwandte-card--ph { border-style: dashed; opacity: .7; }
.rg-verwandte-card__media { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--cream-dark); }
.rg-verwandte-card__media--ph { background:
    var(--cream-dark) center / 28px 28px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='none'%3E%3Crect width='40' height='40' rx='6' fill='rgba(0,0,0,.05)'/%3E%3Cpath d='M10 30l7-10 5 7 4-6 7 9H10z' fill='rgba(0,0,0,.12)'/%3E%3Ccircle cx='14' cy='16' r='3' fill='rgba(0,0,0,.12)'/%3E%3C/svg%3E"); }
.rg-verwandte-card__body { display: flex; flex-direction: column; gap: .5rem; flex: 1; padding: 1.35rem; }
.rg-verwandte-card__title { font-family: var(--sans); font-size: 1rem; font-weight: 800; color: var(--ink); line-height: 1.35; }
.rg-verwandte-card__teaser { font-family: var(--serif); font-size: .85rem; line-height: 1.6; color: var(--ink-muted); flex: 1; }
.rg-verwandte-card__more { font-family: var(--sans); font-size: .8rem; font-weight: 600; color: var(--sage); }

/* ─── HERO-META / PRÜFZEILE ─── */
.rg-meta { display: flex; flex-wrap: wrap; gap: .35rem .9rem; margin-top: 1.25rem; font-family: var(--sans); font-size: .78rem; color: rgba(255,255,255,.55); }
.rg-meta--footer { color: var(--ink-faint); margin: 2.5rem 0 0; }
.rg-hero__breadcrumb { font-family: var(--sans); font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.rg-hero__breadcrumb a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 3px; }
.rg-hero__breadcrumb a:hover { color: #fff; }
.rg-hero__breadcrumb span { color: rgba(255,255,255,.4); }
.rg-hero__breadcrumb [aria-current="page"] { color: rgba(255,255,255,.6); }
@media (max-width: 640px) { .rg-dd-grid, .rg-verwandte-grid, .rg-weitere-grid { grid-template-columns: 1fr; } }
