/*
Theme Name: HolisticWow HU 1.2
Theme URI: https://holisticwow.hu
Author: HolisticWow
Description: A minimalist, speedy theme for autoritative herbal content.
Version: 1.2
Text Domain: holisticwow
*/

:root {
    --primary-green: #2F5233;
    --secondary-green: #5C7A60;
    --accent-gold: #D4AF37;
    --bg-cream: #F9F7F2;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-cream);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 0;
    font-synthesis-weight: none;
    font-synthesis-style: none;
}

a {
    color: var(--primary-green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.article a,
.solution-article a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article a:hover,
.solution-article a:hover {
    text-decoration-thickness: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nav */
.site-nav {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    width: 180px;
    min-width: 180px;
    height: 50px;
}

.logo img {
    width: 180px;
    height: 50px;
    display: block;
    aspect-ratio: 180 / 50;
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0;
}

.menu li a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.menu li a:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(47, 82, 51, 0.12);
    border-radius: 999px;
    padding: 8px 10px 8px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(4px);
}

.search-field {
    border: none;
    background: transparent;
    outline: none;
    min-width: 200px;
    font-size: 14px;
    color: var(--text-dark);
}

.search-field::placeholder {
    color: var(--text-light);
}

.search-submit {
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.search-submit:hover {
    background: var(--secondary-green);
    transform: translateY(-1px);
}

.screen-reader-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.herb-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.herb-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
}

.solution-herbs .herb-card {
    content-visibility: auto;
    contain-intrinsic-size: 420px;
}

.media-figure {
    margin: 0;
}

.herb-thumb-figure {
    margin: 0 0 12px;
}

.herb-thumb-figure .herb-thumb {
    display: block;
}

.herb-thumb {
    display: block;
}

.herb-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.herb-card-title {
    margin-top: 15px;
    margin-bottom: 8px;
}

.herb-card-title a {
    color: var(--primary-green);
}

.herb-excerpt {
    font-size: 0.95em;
    color: var(--text-light);
}

/* Pills & buttons */
.pill {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-green);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Secondary inline chip for related herb links inside article content */
.inline-herb-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid rgba(47, 82, 51, 0.28);
    border-radius: 999px;
    background: rgba(47, 82, 51, 0.05);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.92em;
    line-height: 1.2;
    text-decoration: none;
    vertical-align: middle;
}

.inline-herb-chip::before {
    content: "🌿";
    font-size: 0.95em;
    line-height: 1;
}

.article a.inline-herb-chip,
.solution-article a.inline-herb-chip {
    text-decoration: none;
}

.inline-herb-chip:hover {
    background: rgba(47, 82, 51, 0.10);
    border-color: rgba(47, 82, 51, 0.45);
    color: var(--primary-green);
    text-decoration: none;
}

.button {
    display: inline-block;
    padding: 12px 18px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid var(--primary-green);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    background: var(--secondary-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.button-outline {
    background: transparent;
    color: var(--primary-green);
}

.button-outline:hover {
    background: rgba(47, 82, 51, 0.08);
    color: var(--primary-green);
}

.no-results {
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Homepage v1.2 (minimal editorial redesign) */
.home-nova-main {
    padding-bottom: 120px;
}

.home-nova-hero {
    padding: 58px 0 46px;
}

.home-nova-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 112px;
    align-items: center;
}

.home-nova-hero-copy h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.04;
    margin: 10px 0 14px;
}

.home-nova-lead {
    margin: 0;
    color: #3d4f3f;
    max-width: 700px;
    font-size: 20px;
}

.home-nova-hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.home-nova-metrics {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.home-nova-metrics li {
    margin: 0;
    border-radius: 999px;
    border: 1px solid rgba(47, 82, 51, 0.2);
    background: rgba(255, 255, 255, 0.78);
    padding: 7px 12px;
    font-size: 14px;
    color: var(--text-light);
}

.home-nova-metrics strong {
    color: var(--primary-green);
    font-size: 16px;
}

.home-nova-hero-visual {
    position: relative;
}

.home-nova-hero-image-wrap {
    display: block;
    position: relative;
    border-radius: 34% 66% 48% 52% / 44% 40% 60% 56%;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.home-nova-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-nova-hero-media {
    margin: 0;
}

.home-nova-hero-caption {
    margin: 12px 0 0;
    font-size: 14px;
    color: var(--text-light);
}

.home-nova-hero-caption a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-nova-section-head {
    margin-bottom: 34px;
}

.home-nova-section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(32px, 3vw, 46px);
}

.home-nova-section-head p {
    margin: 0;
    color: var(--text-light);
    font-size: 18px;
    max-width: 720px;
}

.home-nova-solutions,
.home-nova-featured,
.home-nova-articles {
    padding-top: 66px;
}

.home-nova-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 30px auto 0;
    color: rgba(47, 82, 51, 0.58);
}

.home-nova-divider::before,
.home-nova-divider::after {
    content: "";
    display: block;
    width: min(320px, 30vw);
    border-top: 1px solid rgba(47, 82, 51, 0.24);
}

.home-nova-divider span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-size: 15px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(47, 82, 51, 0.18);
}

.home-nova-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.home-nova-chip {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border-radius: 999px;
    border: 1px solid rgba(47, 82, 51, 0.2);
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    color: var(--primary-green);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.home-nova-chip:hover {
    text-decoration: none;
    border-color: rgba(47, 82, 51, 0.34);
    background: rgba(47, 82, 51, 0.08);
}

.home-nova-chip em {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(47, 82, 51, 0.1);
    padding: 1px 7px;
}

.home-nova-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 68px;
}

.home-nova-feature-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(47, 82, 51, 0.12);
}

.home-nova-feature-item:last-child,
.home-nova-feature-item:nth-last-child(2) {
    border-bottom: 0;
}

.home-nova-feature-thumb {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.home-nova-feature-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.home-nova-feature-body h3 {
    margin: 2px 0 6px;
    font-size: 29px;
    line-height: 1.2;
}

.home-nova-feature-body h3 a {
    text-decoration: none;
}

.home-nova-feature-body p {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
}

.home-nova-text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-nova-trust-wrap {
    margin-top: 84px;
    background: linear-gradient(120deg, rgba(47, 82, 51, 0.06), rgba(212, 175, 55, 0.12));
    border-top: 1px solid rgba(47, 82, 51, 0.08);
    border-bottom: 1px solid rgba(47, 82, 51, 0.08);
}

.home-nova-trust {
    padding: 56px 20px;
}

.home-nova-trust-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
}

.home-nova-trust-steps article h3 {
    margin: 0 0 7px;
    font-size: 30px;
}

.home-nova-trust-steps article p {
    margin: 0;
    color: #4f5f51;
}

.home-nova-article-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
}

.home-nova-article-item {
    padding: 16px 0 10px;
    border-bottom: 1px solid rgba(47, 82, 51, 0.16);
}

.home-nova-article-item h3 {
    margin: 0 0 6px;
    font-size: 34px;
    line-height: 1.15;
}

.home-nova-article-item h3 a {
    text-decoration: none;
}

.home-nova-article-meta {
    margin: 0 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.6px;
}

.home-nova-article-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
}

.home-nova-articles-footer {
    margin-top: 30px;
}

.home-nova-safety {
    padding-top: 72px;
}

.home-nova-safety p {
    margin: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(47, 82, 51, 0.14);
    padding: 14px 16px;
}

.home-nova-final {
    margin-top: 64px;
    text-align: center;
    padding: 56px 20px 18px;
}

.home-nova-final h2 {
    margin: 0 0 8px;
    font-size: 46px;
}

.home-nova-final p {
    margin: 0 0 14px;
    color: var(--text-light);
    font-size: 18px;
}

@media (max-width: 1024px) {
    .home-nova-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-nova-hero-image-wrap {
        border-radius: 22px;
        aspect-ratio: 16 / 10;
    }

    .home-nova-feature-list,
    .home-nova-trust-steps,
    .home-nova-article-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-nova-main {
        padding-bottom: 64px;
    }

    .home-nova-hero {
        padding-top: 34px;
        padding-bottom: 24px;
    }

    .home-nova-lead {
        font-size: 18px;
    }

    .home-nova-section-head h2 {
        font-size: 35px;
    }

    .home-nova-section-head p {
        font-size: 16px;
    }

    .home-nova-solutions,
    .home-nova-featured,
    .home-nova-articles {
        padding-top: 42px;
    }

    .home-nova-divider {
        margin-top: 20px;
        gap: 20px;
    }

    .home-nova-divider::before,
    .home-nova-divider::after {
        width: min(120px, 26vw);
    }

    .home-nova-divider span {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .home-nova-feature-list,
    .home-nova-trust-steps,
    .home-nova-article-list {
        grid-template-columns: 1fr;
    }

    .home-nova-feature-item {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .home-nova-feature-body h3 {
        font-size: 26px;
    }

    .home-nova-trust {
        padding: 28px 20px;
    }

    .home-nova-final {
        text-align: left;
    }

    .home-nova-final h2 {
        font-size: 36px;
    }
}

/* Search hero */
.search-hero {
    padding: 50px 0 20px;
}

.search-hero-inner {
    background: linear-gradient(135deg, rgba(47, 82, 51, 0.06), rgba(212, 175, 55, 0.12));
    border: 1px solid rgba(47, 82, 51, 0.1);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.search-hero h1 {
    margin: 10px 0;
    font-size: 34px;
}

.search-meta {
    margin: 0;
    color: var(--text-light);
}

.herb-archive-hero {
    padding: 50px 0 16px;
}

.herb-archive-hero-inner {
    background: linear-gradient(135deg, rgba(47, 82, 51, 0.06), rgba(212, 175, 55, 0.12));
    border: 1px solid rgba(47, 82, 51, 0.1);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.herb-archive-hero h1 {
    margin: 10px 0 8px;
    font-size: 42px;
}

.herb-archive-filters-wrap {
    padding: 8px 0;
}

.herb-archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.solution-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(47, 82, 51, 0.2);
    border-radius: 999px;
    background: #fff;
    color: var(--primary-green);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.18s ease;
}

.solution-filter-chip:hover {
    background: rgba(47, 82, 51, 0.08);
    text-decoration: none;
}

.solution-filter-chip span {
    display: inline-block;
    min-width: 24px;
    text-align: center;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(47, 82, 51, 0.12);
    font-size: 12px;
    font-weight: 700;
}

.solution-filter-chip.is-active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.solution-filter-chip.is-active span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.herb-archive-selected-info {
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 18px 22px;
    border-radius: 12px;
    background: rgba(47, 82, 51, 0.05);
    border: 1px solid rgba(47, 82, 51, 0.12);
}

.herb-archive-selected-info h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.herb-archive-selected-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 17px;
}

.herb-archive-grid-wrap {
    padding: 16px 0 60px;
}

.herb-archive-grid {
    align-items: stretch;
}

.herb-warning {
    background: #fff;
    border: 1px solid rgba(192, 57, 43, 0.18);
    border-left: 3px solid #c0392b;
    border-radius: 4px;
    padding: 12px 18px;
    font-size: 18px;
    color: #5a1c1c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.herb-warning strong {
    display: block;
    color: #7f1f1f;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

/* Sources box (collapsible) */
.sources-box {
    border: 1px solid rgba(47, 82, 51, 0.12);
    border-left: 3px solid var(--accent-gold);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    overflow: hidden;
}

.sources-box summary {
    padding: 12px 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sources-box summary::marker {
    content: "";
}

.sources-box summary::before {
    content: "▸";
    font-size: 12px;
    color: var(--primary-green);
    transition: transform 0.2s ease;
}

.sources-box[open] summary::before {
    transform: rotate(90deg);
}

.sources-box .sources-content {
    padding: 0 16px 16px 16px;
}

.sources-box ol,
.sources-box ul {
    margin: 0;
    padding-left: 20px;
}

.sources-box li {
    margin: 6px 0;
    font-size: 16px;
}

.source-marker {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}

.source-marker a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 12px;
    vertical-align: super;
    margin-left: 3px;
}

/* Hero Herb */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
}

.hero-text h1 {
    font-size: 56px;
    margin-bottom: 10px;
    line-height: 1.1;
    min-height: 1.2em;
}

.latin-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #8a6a00;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 30px;
    display: block;
    min-height: 1.2em;
}

.hero-text h1 .latin-name {
    margin: 6px 0 0;
    font-size: 26px;
}

.hero-image {
    background-color: #e0e0e0;
    /* Placeholder color */
    width: 100%;
    height: 500px;
    border-radius: 200px 200px 0 0;
    object-fit: cover;
    position: relative;
    aspect-ratio: 1200 / 628;
}

.hero-image-figure {
    margin: 0;
}

/* Quick Facts Badge */
.badge-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background: #fff;
    padding: 10px 20px;
    border-left: 3px solid var(--accent-gold);
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.badge strong {
    display: block;
    color: var(--text-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

/* Solution (Megoldas) pages */
.solution-hero {
    padding: 50px 0 30px;
    background: linear-gradient(140deg, rgba(47, 82, 51, 0.06), rgba(212, 175, 55, 0.08));
    border-bottom: 1px solid rgba(47, 82, 51, 0.08);
}

.solution-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 30px;
    align-items: center;
}

.solution-hero-text h1 {
    font-size: 44px;
    margin: 10px 0 12px;
    line-height: 1.2;
}

.solution-lead p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

.solution-hero-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.solution-meta {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 8px;
}

.solution-count {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 14px;
}

.solution-reading-time {
    margin: 0 0 14px;
    color: var(--text-light);
    font-size: 14px;
}

.solution-hero-actions {
    display: grid;
    gap: 10px;
}

.solution-body {
    padding: 40px 0 20px;
}

.solution-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}

.solution-intro {
    border-left: 3px solid rgba(212, 175, 55, 0.9);
    padding: 0 0 0 16px;
    margin-bottom: 26px;
}

.solution-intro p:last-child {
    margin-bottom: 0;
}

.solution-block {
    padding: 0;
    margin-bottom: 34px;
}

.solution-block--showcase {
    padding-top: 4px;
}

.solution-block h2 {
    font-size: 30px;
    margin: 0 0 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.6);
    padding-bottom: 8px;
}

.solution-block-content p,
.solution-block-content ul,
.solution-block-content ol {
    font-size: 17px;
    margin-top: 0;
}

.solution-block-content ul,
.solution-block-content ol {
    padding-left: 22px;
}

.solution-block-content li {
    margin-bottom: 8px;
}

.solution-block-content > :last-child {
    margin-bottom: 0;
}

.solution-block-content a {
    font-weight: 700;
}

.solution-block-intro {
    margin-bottom: 6px;
}

.solution-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.solution-mini-card {
    background: #fff;
    border: 1px solid rgba(47, 82, 51, 0.14);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.solution-toc-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    border: 0;
    min-height: 0;
}

.solution-mini-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.solution-mini-card p,
.solution-mini-card ul,
.solution-mini-card ol {
    font-size: 16px;
}

.solution-mini-card p:last-child {
    margin-bottom: 0;
}

.solution-mini-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    margin-bottom: 0;
    border: 1px solid rgba(47, 82, 51, 0.14);
}

.solution-mini-thumb-figure {
    width: 64px;
    margin: 0 0 12px;
}

.solution-mini-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.solution-article th,
.solution-article td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
}

.solution-article th {
    background: rgba(47, 82, 51, 0.08);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-green);
}

.solution-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 110px;
}

.solution-toc-panel h3 {
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(47, 82, 51, 0.15);
    padding-bottom: 8px;
}

.solution-toc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-toc li + li {
    margin-top: 8px;
}

.solution-toc a {
    display: inline-block;
    padding: 2px 0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(47, 82, 51, 0.35);
}

.solution-toc a:hover {
    border-bottom-color: rgba(47, 82, 51, 0.7);
    text-decoration: none;
}

.solution-aside-note {
    margin: 0;
    padding-top: 0;
    border-top: 0;
    color: var(--text-light);
    font-size: 16px;
}

.solution-aside .button {
    width: fit-content;
}

.solution-herbs {
    padding: 20px 0 60px;
}

.solution-section-head {
    margin-bottom: 24px;
}

.solution-section-head h2 {
    font-size: 32px;
    margin-bottom: 6px;
}

.solution-section-head p {
    color: var(--text-light);
    margin: 0;
}

.solution-empty {
    background: var(--white);
    border: 1px dashed rgba(47, 82, 51, 0.2);
    border-radius: 14px;
    padding: 24px;
    color: var(--text-light);
}

/* Megoldasok collection page */
.solutions-index-hero {
    padding: 48px 0 14px;
}

.solutions-index-hero h1 {
    font-size: 46px;
    margin: 10px 0 8px;
}

.solutions-index-hero p {
    margin: 0;
    color: var(--text-light);
    font-size: 18px;
    max-width: 760px;
}

.solutions-index-grid {
    padding: 18px 0 50px;
}

.solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
    column-gap: 24px;
    row-gap: 24px;
}

.solution-index-card {
    background: #fff;
    border: 1px solid rgba(47, 82, 51, 0.12);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

.solution-index-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.solution-index-card h2 {
    font-size: 25px;
    margin: 0;
    min-width: 0;
    line-height: 1.35;
}

.solution-index-card h2 a {
    text-decoration: none;
    display: block;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
}

.solution-index-card h2 a:hover {
    text-decoration: underline;
}

.solution-index-count {
    background: rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.2);
    color: var(--primary-green);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 700;
    align-self: center;
}

.solution-index-card p {
    margin: 0;
    font-size: 16px;
    color: var(--text-light);
}

.solution-index-card .button {
    width: fit-content;
    margin-top: auto;
    align-self: center;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .solution-hero-inner,
    .solution-layout {
        grid-template-columns: 1fr;
    }

    .solution-mini-grid {
        grid-template-columns: 1fr;
    }

    .solution-aside {
        position: static;
    }

    .solution-hero {
        padding-top: 40px;
    }

    .solution-hero-text h1 {
        font-size: 34px;
    }

    .site-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .menu {
        flex-wrap: wrap;
    }

    .nav-right {
        width: 100%;
        gap: 12px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .search-form {
        width: 100%;
    }

    .search-field {
        min-width: 0;
        width: 100%;
    }

    .herb-archive-hero h1 {
        font-size: 34px;
    }
}

/* Static pages (e.g. Rólunk, Kapcsolat) */
.static-page-main {
    padding: 42px 0 70px;
}

.static-page-article {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.static-page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 36px;
    background: linear-gradient(135deg, rgba(47, 82, 51, 0.08), rgba(212, 175, 55, 0.15));
    border: 1px solid rgba(47, 82, 51, 0.12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.static-page-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
}

.static-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.static-page-pill {
    margin-bottom: 14px;
}

.static-page-title {
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.08;
    margin: 0 0 10px;
}

.static-page-intro,
.static-page-intro p {
    margin: 0;
}

.static-page-intro .page-intro {
    margin: 0;
}

.static-page-intro .lead {
    margin: 0;
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-dark);
}

.static-page-intro .lead strong {
    font-weight: 600;
}

.static-page-sections {
    display: grid;
    gap: 20px;
}

.static-page-section {
    background: #fff;
    border: 1px solid rgba(47, 82, 51, 0.12);
    border-left: 5px solid rgba(47, 82, 51, 0.85);
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.static-page-section h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1.15;
    border-bottom: 1px solid rgba(212, 175, 55, 0.6);
    padding-bottom: 10px;
}

.static-page-section-body > :first-child {
    margin-top: 0;
}

.static-page-section-body > :last-child {
    margin-bottom: 0;
}

.static-page-section .article p,
.static-page-section .article ul,
.static-page-section .article ol {
    font-size: 18px;
}

.static-page-section .article ul,
.static-page-section .article ol {
    margin: 0 0 22px;
    padding-left: 22px;
}

.static-page-section .article li {
    margin-bottom: 8px;
}

.about-editors-grid {
    display: grid;
    gap: 16px;
}

.about-editor-card {
    border: 1px solid rgba(47, 82, 51, 0.14);
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, rgba(47, 82, 51, 0.03));
    padding: 16px 18px;
}

.about-editor-card h3 {
    margin: 0 0 10px;
    font-size: 28px;
}

.about-editor-card h4 {
    margin: 14px 0 8px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary-green);
}

.about-editor-card p,
.about-editor-card ul {
    margin-top: 0;
    margin-bottom: 12px;
}

.about-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-left: 20px;
}

.about-faq {
    display: grid;
    gap: 10px;
}

.about-faq details {
    border: 1px solid rgba(47, 82, 51, 0.2);
    border-radius: 10px;
    background: rgba(47, 82, 51, 0.03);
    overflow: hidden;
}

.about-faq summary {
    cursor: pointer;
    padding: 12px 14px;
    font-weight: 700;
    color: var(--primary-green);
}

.about-faq details p {
    margin: 0;
    padding: 0 14px 12px;
}

.contact-form-shell {
    margin-top: 20px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form-field {
    margin: 0;
    min-width: 0;
}

.contact-form-field label {
    display: block;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 6px;
    font-size: 15px;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(47, 82, 51, 0.2);
    border-radius: 10px;
    background: #fff;
    color: var(--text-dark);
    font-size: 16px;
    font-family: inherit;
    line-height: 1.5;
    padding: 11px 12px;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: rgba(47, 82, 51, 0.55);
    box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.12);
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-field-full {
    grid-column: 1 / -1;
}

.contact-form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.contact-form-help {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form-notice {
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 15px;
}

.contact-form-notice-success {
    background: rgba(47, 82, 51, 0.12);
    border: 1px solid rgba(47, 82, 51, 0.24);
    color: var(--primary-green);
}

.contact-form-notice-error {
    background: rgba(175, 56, 56, 0.08);
    border: 1px solid rgba(175, 56, 56, 0.24);
    color: #8a2f2f;
}

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .static-page-main {
        padding: 28px 0 54px;
    }

    .static-page-hero {
        padding: 24px 20px;
    }

    .static-page-intro .lead {
        font-size: 18px;
    }

    .static-page-sections {
        gap: 14px;
    }

    .static-page-section {
        padding: 18px;
        border-left-width: 4px;
    }

    .static-page-section .article p,
    .static-page-section .article ul,
    .static-page-section .article ol {
        font-size: 17px;
    }

    .about-editor-card h3 {
        font-size: 24px;
    }

    .about-editor-card h4 {
        font-size: 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-actions {
        align-items: flex-start;
    }
}

.article p {
    margin-bottom: 25px;
    font-size: 18px;
}

.article h2 {
    font-size: 32px;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 10px;
    margin-top: 40px;
}

.article ul {
    margin-bottom: 25px;
    font-size: 18px;
}

.article table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.article th,
.article td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
}

.article th {
    background: rgba(47, 82, 51, 0.08);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-green);
}

.article a[href*="/megoldas/"],
.article a[href*="/megoldasok/"] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.2);
    font-weight: 700;
    text-decoration: none;
}

.article a[href*="/megoldas/"]:hover,
.article a[href*="/megoldasok/"]:hover {
    background: rgba(47, 82, 51, 0.14);
    text-decoration: none;
}

.tip-box {
    background: linear-gradient(135deg, rgba(47, 82, 51, 0.08), rgba(212, 175, 55, 0.12));
    border: 1px solid rgba(47, 82, 51, 0.18);
    border-left: 6px solid var(--primary-green);
    border-radius: 14px;
    padding: 18px 20px;
    margin: 26px 0 30px;
    box-shadow: 0 16px 30px rgba(47, 82, 51, 0.12);
}

.tip-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 12px;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tip-title::before {
    content: "✳";
    color: var(--accent-gold);
    font-size: 14px;
}

.tip-box p {
    margin: 10px 0 0;
}

.tip-box strong {
    color: var(--primary-green);
}

.sidebar-box {
    background: var(--white);
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-cream);
    padding-bottom: 10px;
}

/* Tudtad Box Specifics */
.box-green .sidebar-title,
.sidebar-box[style*="background-color"] .sidebar-title {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.usage-list {
    list-style: none;
    padding: 0;
}

.usage-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    /* Replaces margin-right on icon */
}

/* Explicitly remove any legacy or inherited ::before content (e.g. herbs) */
.usage-list li::before {
    content: none !important;
    display: none !important;
}

/* 
   We will pass specific icons directly in the HTML content 
   from the Python script.
*/
.usage-list li .icon {
    font-size: 24px;
    line-height: 1;
    color: var(--primary-green);
    flex-shrink: 0;
    /* Prevents icon from shrinking */
    margin-top: 2px;
    /* Optical alignment with text */
}

.usage-list li div {
    flex: 1;
    /* Takes remaining space */
}

.site-footer {
    background: var(--primary-green);
    color: #fff;
    padding: 50px 0;
    margin-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.footer-copy {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 440px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
}

.footer-menu a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-legal {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: grid;
    gap: 12px;
}

.footer-legal p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12.5px;
    line-height: 1.58;
    max-width: 1080px;
}

.footer-legal strong {
    color: rgba(255, 255, 255, 0.93);
    letter-spacing: 0.2px;
}

.articles-index-grid .article-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-card-meta {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.articles-index-grid .herb-card-title {
    margin-top: 0;
    margin-bottom: 6px;
}

.articles-index-grid .herb-excerpt {
    margin-bottom: 0;
}

.articles-index-grid .button {
    margin-top: auto;
    width: fit-content;
}

.articles-pagination {
    margin-top: 26px;
}

.articles-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.articles-pagination li {
    margin: 0;
}

.articles-pagination a,
.articles-pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid rgba(47, 82, 51, 0.25);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-green);
    background: #fff;
    font-size: 14px;
}

.articles-pagination .current {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

/* Single blog post template */
.post-single-main {
    padding: 36px 0 64px;
}

.post-single-hero {
    padding-bottom: 18px;
}

.post-single-hero-inner {
    border-radius: 18px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(47, 82, 51, 0.06), rgba(212, 175, 55, 0.12));
    border: 1px solid rgba(47, 82, 51, 0.1);
}

.post-single-title {
    margin: 10px 0 12px;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.14;
}

.post-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.post-single-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.post-single-cat {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(47, 82, 51, 0.24);
    background: rgba(47, 82, 51, 0.05);
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.post-single-cat:hover {
    text-decoration: none;
    background: rgba(47, 82, 51, 0.1);
}

.post-single-back {
    width: fit-content;
}

.post-single-back-wrap {
    margin-top: 18px;
    margin-bottom: 8px;
}

.post-single-body {
    max-width: 980px;
}

.post-single-article {
    background: #fff;
    border: 1px solid rgba(47, 82, 51, 0.12);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    padding: 24px;
}

.post-single-thumb {
    margin: 0 0 20px;
}

.post-single-thumb img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.post-single-content > :first-child {
    margin-top: 0;
}

.post-single-content > :last-child {
    margin-bottom: 0;
}

.post-single-content .post-related-links {
    margin: 22px 0 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.post-single-content .post-related-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.65;
    font-size: 18px;
}

.post-single-content .post-related-icon {
    line-height: 1;
    transform: translateY(-1px);
}

.post-single-content .takeaways-list {
    list-style: none;
    margin: 14px 0 24px;
    padding-left: 0;
}

.post-single-content .takeaways-list li {
    margin: 0 0 10px;
    padding-left: 0;
}

.post-single-content .recipe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 16px 0 24px;
}

/* Error pages (404 / 410) */
.error-page-main {
    padding: 44px 0 84px;
}

.error-page-shell {
    max-width: 920px;
    border-radius: 18px;
    border: 1px solid rgba(47, 82, 51, 0.14);
    background: linear-gradient(135deg, rgba(47, 82, 51, 0.06), rgba(212, 175, 55, 0.12));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.error-page-shell-gone {
    border-color: rgba(165, 103, 28, 0.24);
}

.error-page-title {
    margin: 12px 0 10px;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.14;
}

.error-page-lead {
    margin: 0;
    color: var(--text-light);
    font-size: 19px;
    max-width: 760px;
}

.error-page-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.error-page-search {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(47, 82, 51, 0.18);
}

.error-page-note {
    margin: 0 0 10px;
    font-size: 15px;
    color: var(--text-light);
}

.error-page-search .search-form {
    max-width: 560px;
}

.post-single-content .recipe-card {
    background: linear-gradient(135deg, rgba(47, 82, 51, 0.05), rgba(212, 175, 55, 0.10));
    border: 1px solid rgba(47, 82, 51, 0.12);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    padding: 18px;
}

.post-single-content .recipe-card > :first-child {
    margin-top: 0;
}

.post-single-content .recipe-card > :last-child {
    margin-bottom: 0;
}

.post-single-content .recipe-card h3 {
    margin-bottom: 10px;
}

.post-single-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.post-single-nav-card {
    background: #fff;
    border: 1px solid rgba(47, 82, 51, 0.14);
    border-radius: 12px;
    padding: 14px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.post-single-nav-card:hover {
    text-decoration: none;
    border-color: rgba(47, 82, 51, 0.24);
    transform: translateY(-1px);
}

.post-single-nav-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-light);
}

.post-single-nav-title {
    display: block;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer {
        padding: 40px 0;
    }

    .footer-legal {
        margin-top: 20px;
    }

    .footer-legal p {
        font-size: 12px;
    }

    .articles-pagination a,
    .articles-pagination span {
        font-size: 13px;
        padding: 7px 10px;
    }

    .post-single-main {
        padding: 24px 0 44px;
    }

    .post-single-hero-inner {
        padding: 20px;
    }

    .post-single-article {
        padding: 16px;
    }

    .post-single-nav {
        grid-template-columns: 1fr;
    }

    .post-single-nav-title {
        font-size: 21px;
    }

    .post-single-content .recipe-grid {
        grid-template-columns: 1fr;
    }

    .error-page-main {
        padding: 24px 0 46px;
    }

    .error-page-shell {
        padding: 20px;
    }

    .error-page-lead {
        font-size: 17px;
    }

    .error-page-search .search-form {
        max-width: none;
    }
}
