.natural-components-guide {
    --natural-leaf: #0f766e;
    --natural-leaf-strong: #064e3b;
    --natural-leaf-soft: rgba(15, 118, 110, 0.1);
    --natural-gold: #c69a2d;
    --natural-gold-soft: rgba(198, 154, 45, 0.14);
    --natural-berry: #9f3a4a;
    --natural-berry-soft: rgba(159, 58, 74, 0.1);
    background:
        radial-gradient(900px 520px at 8% -10%, rgba(15, 118, 110, 0.16), transparent 56%),
        radial-gradient(780px 480px at 92% 4%, rgba(198, 154, 45, 0.16), transparent 58%),
        linear-gradient(180deg, #f7fbf7 0%, #fffaf0 42%, #f4faf8 100%);
}

.natural-components-guide .meridian-guide__hero-copy {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--natural-leaf-soft), var(--natural-gold-soft));
}

.natural-components-guide .meridian-guide__eyebrow {
    background: var(--natural-leaf-soft);
    color: var(--natural-leaf-strong);
}

.natural-components-guide__hero-visual {
    margin: 0;
    padding: 18px;
    border: 1px solid var(--guide-border);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    box-shadow: var(--guide-shadow);
}

.natural-components-guide__collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.natural-components-guide__collage img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    background: #eef2f0;
}

.natural-components-guide__hero-visual figcaption,
.natural-components-guide__component-card figcaption,
.natural-components-guide__image-card figcaption {
    margin-top: 14px;
    color: var(--guide-muted);
    font-size: 13px;
    line-height: 1.65;
}

.natural-components-guide__quote {
    margin: 0 0 18px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(198, 154, 45, 0.28);
    background: linear-gradient(135deg, var(--natural-gold-soft), rgba(255, 255, 255, 0.88));
    color: var(--guide-ink);
    font-size: 17px;
    line-height: 1.72;
}

.natural-components-guide__quote strong {
    color: var(--natural-leaf-strong);
}

.natural-components-guide__component-grid,
.natural-components-guide__mini-grid,
.natural-components-guide__formula-grid {
    display: grid;
    gap: 18px;
}

.natural-components-guide__component-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.natural-components-guide__mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.natural-components-guide__formula-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.natural-components-guide__component-card,
.natural-components-guide__mini-card,
.natural-components-guide__image-card,
.natural-components-guide__formula-card {
    border: 1px solid var(--guide-border);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.96));
    box-shadow: var(--guide-shadow);
}

.natural-components-guide__component-card {
    overflow: hidden;
}

.natural-components-guide__component-card figure,
.natural-components-guide__image-card {
    margin: 0;
}

.natural-components-guide__component-card img,
.natural-components-guide__image-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    background: #f4f7f5;
}

.natural-components-guide__component-card img {
    height: 260px;
}

.natural-components-guide__component-card div,
.natural-components-guide__mini-card,
.natural-components-guide__formula-card,
.natural-components-guide__image-card {
    padding: 22px;
}

.natural-components-guide__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--natural-leaf-soft);
    color: var(--natural-leaf-strong);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.natural-components-guide__badge--gold {
    background: var(--natural-gold-soft);
    color: #805f12;
}

.natural-components-guide__badge--berry {
    background: var(--natural-berry-soft);
    color: var(--natural-berry);
}

.natural-components-guide__component-card h3,
.natural-components-guide__mini-card h3,
.natural-components-guide__formula-card h3,
.natural-components-guide__image-card h3 {
    margin: 0 0 12px;
    color: var(--guide-ink);
    line-height: 1.28;
}

.natural-components-guide__component-card p,
.natural-components-guide__mini-card p,
.natural-components-guide__formula-card p {
    margin: 0 0 14px;
    color: var(--guide-text);
    line-height: 1.76;
}

.natural-components-guide__component-card ul,
.natural-components-guide__mini-card ul,
.natural-components-guide__formula-card ul {
    margin: 0;
    padding-left: 20px;
}

.natural-components-guide__component-card li,
.natural-components-guide__mini-card li,
.natural-components-guide__formula-card li {
    margin-bottom: 10px;
    color: var(--guide-text);
    line-height: 1.68;
}

.natural-components-guide__image-card img {
    height: auto;
    border-radius: 18px;
}

.natural-components-guide__note {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 18px;
    background: rgba(15, 118, 110, 0.07);
    color: var(--guide-text);
    line-height: 1.7;
}

.natural-components-guide__table-note {
    color: var(--guide-muted);
    font-size: 14px;
}

html[data-effective-theme="dark"] body.natural-components-guide {
    --natural-leaf: #9be7dc;
    --natural-leaf-strong: #56cfc1;
    --natural-leaf-soft: rgba(155, 231, 220, 0.1);
    --natural-gold: #f8d36b;
    --natural-gold-soft: rgba(248, 211, 107, 0.14);
    --natural-berry: #f0a0ad;
    --natural-berry-soft: rgba(240, 160, 173, 0.12);
    background:
        radial-gradient(900px 520px at 8% -10%, rgba(155, 231, 220, 0.12), transparent 56%),
        radial-gradient(780px 480px at 92% 4%, rgba(248, 211, 107, 0.10), transparent 58%),
        linear-gradient(180deg, #041a15 0%, #071711 48%, #061510 100%);
}

html[data-effective-theme="dark"] body.natural-components-guide :is(
    .natural-components-guide__hero-visual,
    .natural-components-guide__component-card,
    .natural-components-guide__mini-card,
    .natural-components-guide__image-card,
    .natural-components-guide__formula-card
) {
    background: var(--theme-surface) !important;
    border-color: var(--theme-border) !important;
}

html[data-effective-theme="dark"] body.natural-components-guide .natural-components-guide__quote {
    background: linear-gradient(135deg, rgba(248, 211, 107, 0.12), rgba(10, 42, 35, 0.92)) !important;
    border-color: rgba(248, 211, 107, 0.2) !important;
}

html[data-effective-theme="dark"] body.natural-components-guide .natural-components-guide__note {
    background: rgba(155, 231, 220, 0.08) !important;
    border-color: rgba(155, 231, 220, 0.16) !important;
}

@media (max-width: 1020px) {
    .natural-components-guide__component-grid,
    .natural-components-guide__mini-grid,
    .natural-components-guide__formula-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .natural-components-guide__component-grid,
    .natural-components-guide__mini-grid,
    .natural-components-guide__formula-grid,
    .natural-components-guide__collage {
        grid-template-columns: 1fr;
    }

    .natural-components-guide__component-card img {
        height: 220px;
    }

    .natural-components-guide__component-card div,
    .natural-components-guide__mini-card,
    .natural-components-guide__formula-card,
    .natural-components-guide__image-card {
        padding: 18px;
    }
}
