/*
Theme Name: szerettelek
Theme URI: https://szerettelek.hu
Author: szerettelek
Author URI: https://szerettelek.hu
Description: Csendes, méltóságteljes téma a szerettelek emlékhely-pluginhez. Mélyzöld accent, krém háttér, Georgia serif címekhez. Kifejezetten kisállat-emlékhelyek szolgáltatáshoz tervezve.
Version: 1.9.6
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.1
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: szerettelek
Tags: minimal, memorial, light, one-column, custom-menu, featured-images, translation-ready
*/

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

:root {
    --sz-text: #2C2C2A;
    --sz-muted: #5F5E5A;
    --sz-soft: #888780;
    --sz-bg: #F5EFE6;
    --sz-surface: #FBF7EF;
    --sz-border: rgba(0, 0, 0, 0.08);
    --sz-accent: #2D4A3E;
    --sz-accent-soft: rgba(45, 74, 62, 0.08);
    --sz-radius: 8px;
    --sz-radius-lg: 12px;
    --sz-font-body: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
    --sz-font-serif: Georgia, 'Iowan Old Style', 'Apple Garamond', 'Times New Roman', serif;
}

body {
    font-family: var(--sz-font-body);
    color: var(--sz-text);
    background: var(--sz-bg);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body.admin-bar {
    min-height: calc(100vh - 32px);
    min-height: calc(100dvh - 32px);
}
@media (max-width: 782px) {
    body.admin-bar {
        min-height: calc(100vh - 46px);
        min-height: calc(100dvh - 46px);
    }
}

a {
    color: var(--sz-accent);
    text-decoration: none;
}
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sz-font-serif);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--sz-text);
}
h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p { margin: 0 0 16px; }
img { max-width: 100%; height: auto; }

.sz-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.sz-container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.sz-header {
    background: var(--sz-surface);
    border-bottom: 1px solid var(--sz-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}
.sz-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.sz-site-title {
    margin: 0;
    font-size: 22px;
    font-family: var(--sz-font-serif);
    font-weight: 500;
}
.sz-site-title a {
    color: var(--sz-text);
    text-decoration: none;
}
.sz-site-title a:hover { color: var(--sz-accent); text-decoration: none; }
.sz-nav { display: flex; }
.sz-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}
.sz-nav a {
    color: var(--sz-muted);
    font-size: 14px;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.15s;
    white-space: nowrap;
}
.sz-nav a:hover { color: var(--sz-accent); text-decoration: none; }
.sz-nav .current-menu-item > a,
.sz-nav .current-page-ancestor > a {
    color: var(--sz-accent);
}

.sz-nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    z-index: 60;
    -webkit-tap-highlight-color: transparent;
}
.sz-nav-toggle:focus-visible {
    outline: 2px solid var(--sz-accent);
    outline-offset: 2px;
    border-radius: 4px;
}
.sz-nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--sz-text);
    border-radius: 2px;
    margin: 4px auto;
    transition: transform 0.2s ease, opacity 0.15s ease;
}
.sz-nav-toggle[aria-expanded="true"] .sz-nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.sz-nav-toggle[aria-expanded="true"] .sz-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.sz-nav-toggle[aria-expanded="true"] .sz-nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

.sz-main {
    flex: 1 0 auto;
    padding: 32px 0 40px;
}

.sz-hero {
    text-align: center;
    padding: 80px 0;
}
.sz-hero h1 {
    font-size: 48px;
    margin: 0 0 16px;
}
.sz-tagline {
    font-size: 18px;
    color: var(--sz-muted);
    max-width: 560px;
    margin: 0 auto 32px;
}
.sz-cta-primary {
    display: inline-block;
    background: var(--sz-accent);
    color: var(--sz-surface);
    padding: 14px 32px;
    border-radius: var(--sz-radius);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.15s;
}
.sz-cta-primary:hover {
    opacity: 0.9;
    color: var(--sz-surface);
    text-decoration: none;
}
.sz-cta-secondary {
    display: inline-block;
    border: 1px solid var(--sz-border);
    color: var(--sz-text);
    padding: 12px 24px;
    border-radius: var(--sz-radius);
    text-decoration: none;
    margin-left: 8px;
    background: var(--sz-surface);
}
.sz-cta-secondary:hover {
    background: var(--sz-accent-soft);
    text-decoration: none;
}

.sz-how-it-works {
    background: var(--sz-surface);
    padding: 56px 0;
    border-top: 1px solid var(--sz-border);
    border-bottom: 1px solid var(--sz-border);
    margin-top: 0;
}
.sz-how-it-works h2 {
    text-align: center;
    margin-bottom: 40px;
}
.sz-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.sz-step {
    text-align: center;
}
.sz-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sz-accent-soft);
    color: var(--sz-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sz-font-serif);
    font-size: 18px;
    margin-bottom: 12px;
}
.sz-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.sz-step p {
    color: var(--sz-muted);
    margin: 0;
}

.sz-posts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.sz-post-card {
    background: var(--sz-surface);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sz-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.sz-post-card a {
    color: var(--sz-text);
    text-decoration: none;
    display: block;
}
.sz-post-card a:hover { text-decoration: none; }
.sz-post-card-photo {
    aspect-ratio: 4/3;
    background: var(--sz-accent-soft);
    overflow: hidden;
    position: relative;
}
.sz-post-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.sz-post-card-text { padding: 16px; }
.sz-post-card-text h3 {
    font-size: 18px;
    margin: 0 0 4px;
}
.sz-post-card-text .sz-meta {
    color: var(--sz-soft);
    font-size: 13px;
    margin: 0;
}

.sz-article,
.sz-page {
    background: var(--sz-surface);
    padding: 48px 32px;
    border-radius: var(--sz-radius-lg);
    border: 1px solid var(--sz-border);
}
.sz-article h1,
.sz-page h1 {
    margin-bottom: 16px;
}
.sz-article-meta {
    color: var(--sz-soft);
    font-size: 13px;
    margin-bottom: 24px;
}
.sz-article-content {
    margin-top: 24px;
}
.sz-article-content img {
    border-radius: var(--sz-radius);
}

.sz-memorial-wrap {
    padding: 24px 24px 64px;
}

:root {
    --pet-plugin-sticky-top-offset: 78px;
}
body.admin-bar {
    --pet-plugin-sticky-top-offset: 110px;
}

.sz-page-header {
    text-align: center;
    margin-bottom: 32px;
}
.sz-page-header h1 {
    margin-bottom: 8px;
}
.sz-page-header p {
    color: var(--sz-muted);
}

.sz-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.sz-pagination a,
.sz-pagination span {
    padding: 8px 14px;
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    text-decoration: none;
    color: var(--sz-text);
    background: var(--sz-surface);
}
.sz-pagination .current {
    background: var(--sz-accent);
    color: var(--sz-surface);
    border-color: var(--sz-accent);
}
.sz-pagination a:hover {
    background: var(--sz-accent-soft);
    text-decoration: none;
}

.sz-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--sz-soft);
    font-style: italic;
}

.sz-footer {
    background: var(--sz-surface);
    border-top: 1px solid var(--sz-border);
    padding: 32px 0 24px;
    margin-top: 24px;
    color: var(--sz-muted);
    font-size: 14px;
    flex-shrink: 0;
}
.sz-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px 32px;
}

.sz-footer-brand {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 10px;
}
.sz-footer-name {
    color: var(--sz-text);
    font-family: var(--sz-font-serif);
    font-size: 16px;
}
.sz-footer-tagline,
.sz-footer-copyright {
    color: var(--sz-muted);
}
.sz-footer-sep {
    color: var(--sz-soft);
    opacity: 0.6;
    user-select: none;
}

.sz-footer-nav ul,
.sz-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.sz-footer a { color: var(--sz-muted); }
.sz-footer a:hover { color: var(--sz-accent); }

.sz-memorial-wrap > article {
    margin: 0 auto;
}

.entry-content,
.sz-page > * {
    max-width: 100%;
}
.wp-block-image { margin: 16px 0; }
.alignwide { margin-left: auto; margin-right: auto; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.search-form { display: flex; gap: 8px; align-items: center; }
.search-form input[type="search"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    font-family: inherit;
    font-size: 14px;
    background: var(--sz-surface);
}
.search-form input[type="submit"] {
    background: var(--sz-accent);
    color: var(--sz-surface);
    border: 0;
    padding: 10px 18px;
    border-radius: var(--sz-radius);
    cursor: pointer;
    font-family: inherit;
}

.admin-bar .sz-header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .sz-header { top: 46px; }
}

@media (max-width: 768px) {
    .sz-hero { padding: 48px 0; }
    .sz-hero h1 { font-size: 32px; }
    .sz-steps { grid-template-columns: 1fr; gap: 24px; }

    /* v1.9.6 — dupla mobil-margó megszüntetése („A" terv, full-bleed).
       EGY vízszintes gutter a konténeren; a kártya-doboz mobilon feloldódik
       (keret/háttér/lekerekítés nélkül, vízszintes padding 0), így a tartalom
       a képernyő teljes szélességét használja egyetlen kényelmes szegéllyel. */
    .sz-container,
    .sz-container-narrow { padding: 0 16px; }
    .sz-memorial-wrap { padding: 24px 16px 64px; }
    .sz-article, .sz-page {
        padding: 28px 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .sz-nav-toggle { display: inline-block; }

    .sz-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: var(--sz-surface);
        border-top: 1px solid var(--sz-border);
        border-bottom: 1px solid var(--sz-border);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        padding: 8px 0;
        z-index: 55;
    }
    .sz-nav[data-open] {
        display: block;
    }
    .sz-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 16px;
    }
    .sz-nav li {
        border-bottom: 1px solid var(--sz-border);
    }
    .sz-nav li:last-child { border-bottom: 0; }
    .sz-nav a {
        display: block;
        padding: 14px 4px;
        font-size: 16px;
    }

    .sz-header { position: relative; }
    .sz-header-inner {
        align-items: center;
    }

    .sz-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .sz-footer-brand {
        justify-content: center;
    }
    .sz-footer-nav ul,
    .sz-footer ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 22px; }
    h2 { font-size: 18px; }
    h3 { font-size: 16px; }

    .sz-container,
    .sz-container-narrow { padding: 0 14px; }
    .sz-memorial-wrap { padding: 20px 14px 56px; }
    .sz-article, .sz-page { padding: 20px 0; }

    .sz-footer-sep { display: none; }
    .sz-footer-brand {
        flex-direction: column;
        gap: 4px;
    }
}

@media (min-width: 481px) and (max-width: 640px) {
    h1 { font-size: 26px; }
    h2 { font-size: 20px; }
    .sz-article, .sz-page { padding: 24px 0; }
}

.sz-candle-stats {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--sz-accent);
    display: flex;
    align-items: center;
    gap: 6px;
}
.sz-candle-icon {
    font-size: 14px;
    opacity: 0.9;
}

/* v1.9.0 — "X órányi gyertyafény" sor a kártyákon. Másodlagos, halványabb a
   gyertya-statnál, de a ✨ ikon meleg hangulatot ad. */
.sz-candle-burn-hours {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--sz-text-muted, rgba(45, 74, 62, 0.62));
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}
.sz-candle-burn-icon {
    font-size: 13px;
    flex-shrink: 0;
    opacity: 0.85;
}

.sz-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 600;
    color: var(--sz-accent);
    margin: 0 0 12px;
    opacity: 0.85;
}

/* v1.9.2 — Tömörebb függőleges ritmus a főoldalon. A .sz-main 32px felső
   paddingje a heró 96px-ével összeadódott (~128px üres a fejléc alatt) — a
   főoldalon nullázzuk a felső main-paddinget, a szekció-paddingeket mérsékeljük. */
body.home .sz-main {
    padding-top: 0;
}
.sz-landing-hero {
    padding: 64px 0 56px;
}
.sz-landing-hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    overflow-wrap: break-word;   /* hosszú magyar szavak nem lógnak ki kis kijelzőn */
    text-wrap: balance;          /* kiegyensúlyozottabb sortörés (progresszív) */
}
/* v1.9.1 — Olvashatóbb hero-bevezető: balra zárt, kimért szélességű blokk,
   erősebb kontraszt, bő sortáv, bekezdésekre bontva + kiemelt idézet.
   A .sz-tagline most KONTÉNER (<div>), benne <p> / <blockquote class="sz-pull">. */
.sz-landing-hero .sz-tagline {
    max-width: 36rem;            /* ~60–65 karakter / sor — ideális olvashatóság */
    margin: 0 auto 36px;
    text-align: left;           /* a hosszú szöveg balra zárva olvasható igazán */
}
.sz-landing-hero .sz-tagline p {
    font-family: var(--sz-font-serif);  /* irodalmi, meleg hatás — csak a hero-ban.
                                            Konzisztens, sans verzió: var(--sz-font-body) */
    font-size: 1.125rem;        /* 18px */
    line-height: 1.8;
    color: var(--sz-text);      /* erős kontraszt; lágyabb verzió: var(--sz-muted) */
    margin: 0 0 1.05em;
}
.sz-landing-hero .sz-tagline p:last-child {
    margin-bottom: 0;
}
.sz-landing-hero .sz-tagline .sz-pull {
    font-family: var(--sz-font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--sz-accent);
    border-left: 2px solid var(--sz-accent);
    padding-left: 1rem;
    margin: 1.4rem 0;
}
.sz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;  /* a gombok a szövegoszloppal egy vonalban, balra */
    max-width: 36rem;
    margin: 0 auto;
}
.sz-hero-actions .sz-cta-secondary {
    margin-left: 0;
}

.sz-mission {
    padding: 56px 0 40px;
    text-align: center;
}
.sz-mission h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.sz-mission-body {
    font-size: 18px;
    color: var(--sz-muted);
    line-height: 1.7;
    margin: 0;
}

.sz-features {
    padding: 56px 0 64px;
}
.sz-features-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.sz-features-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
}
.sz-features-subheading {
    font-size: 16px;
    color: var(--sz-muted);
    margin: 0;
}
.sz-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sz-feature {
    position: relative;
    background: var(--sz-surface);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius-lg);
    padding: 32px 28px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.sz-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 74, 62, 0.08);
    border-color: rgba(45, 74, 62, 0.18);
}
.sz-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sz-accent-soft);
    color: var(--sz-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.sz-feature h3 {
    font-size: 20px;
    margin: 0 0 10px;
}
.sz-feature p {
    color: var(--sz-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}
.sz-feature--premium {
    background: linear-gradient(180deg, var(--sz-surface) 0%, rgba(45, 74, 62, 0.025) 100%);
}
.sz-feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--sz-accent);
    background: var(--sz-accent-soft);
    border: 1px solid rgba(45, 74, 62, 0.15);
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
}

.sz-pledge {
    background: var(--sz-surface);
    border-top: 1px solid var(--sz-border);
    border-bottom: 1px solid var(--sz-border);
    padding: 64px 0;
    text-align: center;
}
.sz-pledge h2 {
    font-size: 32px;
    margin-bottom: 24px;
}
.sz-pledge p {
    font-size: 17px;
    color: var(--sz-muted);
    line-height: 1.7;
    margin: 0 auto 20px;
    max-width: 640px;
}
.sz-pledge-points {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
}
.sz-pledge-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--sz-text);
    font-weight: 500;
}
.sz-pledge-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--sz-accent);
    color: var(--sz-surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sz-final-cta {
    padding: 72px 0;
    text-align: center;
}
.sz-final-cta h2 {
    font-size: 34px;
    margin-bottom: 16px;
}
.sz-final-cta p {
    font-size: 17px;
    color: var(--sz-muted);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.sz-discovery-page {
    padding: 8px 0 24px;
}
.sz-discovery-subheading {
    color: var(--sz-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.55;
    text-align: center;
}
.sz-discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.sz-discovery-empty {
    text-align: center;
    color: var(--sz-muted);
    font-size: 15px;
    padding: 32px 16px;
    line-height: 1.6;
}
.sz-discovery-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}
.sz-discovery-badge-anniversary {
    background: #fff4e0;
    color: #a16207;
}

@media (max-width: 900px) {
    .sz-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sz-landing-hero {
        padding: 56px 0 40px;
    }
    .sz-landing-hero h1 {
        font-size: 34px;
    }
    .sz-landing-hero .sz-tagline {
        max-width: 100%;
        text-align: left;
    }
    .sz-landing-hero .sz-tagline p {
        font-size: 1.0625rem;   /* 17px — kényelmes mobil olvasás */
        line-height: 1.72;
    }
    .sz-landing-hero .sz-tagline .sz-pull {
        font-size: 1.05rem;
        padding-left: 0.85rem;
        margin: 1.2rem 0;
    }
    .sz-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    .sz-hero-actions .sz-cta-primary,
    .sz-hero-actions .sz-cta-secondary {
        width: 100%;
        text-align: center;
        margin-left: 0;
        padding-top: 14px;       /* egységes, ≥44px magas tap-felület */
        padding-bottom: 14px;
    }
    .sz-mission {
        padding: 56px 0 24px;
    }
    .sz-mission h2 {
        font-size: 26px;
    }
    .sz-mission-body {
        font-size: 16px;
    }
    .sz-features {
        padding: 48px 0 56px;
    }
    .sz-features-header {
        margin-bottom: 32px;
    }
    .sz-features-header h2 {
        font-size: 26px;
    }
    .sz-feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sz-feature {
        padding: 26px 22px;
    }
    .sz-feature h3 {
        font-size: 18px;
    }
    .sz-pledge {
        padding: 56px 0;
    }
    .sz-pledge h2 {
        font-size: 26px;
    }
    .sz-pledge p {
        font-size: 16px;
    }
    .sz-pledge-points {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
        margin-top: 28px;
        padding: 0 8px;
    }
    .sz-final-cta {
        padding: 64px 0;
    }
    .sz-final-cta h2 {
        font-size: 26px;
    }
    .sz-final-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sz-landing-hero h1 {
        font-size: 28px;
    }
    .sz-eyebrow {
        font-size: 11px;
    }
    .sz-feature-icon {
        width: 48px;
        height: 48px;
    }
    .sz-feature-icon svg {
        width: 26px;
        height: 26px;
    }
}

.pet-plugin-garden {
    background: var(--sz-surface);
}

.pet-plugin-eternal-candles {
    background: var(--sz-surface);
}

.pet-plugin-condolences {
    background: var(--sz-surface);
}

.pet-plugin-gallery {
    background: var(--sz-surface);
}

.pet-plugin-eulogy {
    background: var(--sz-surface);
}

.pet-plugin-memorial-sticky {
    background: var(--sz-surface);
}

.pet-plugin-auth-wrap,
.pet-plugin-auth-card {
    background: var(--sz-surface);
}

.pet-plugin-dashboard-account,
.pet-plugin-account-details {
    background: var(--sz-surface);
}

.pp-purchase-package-table,
.pp-purchase-quantity-control,
.pp-purchase-thank-you-next-steps {
    background: var(--sz-surface);
}

.pet-plugin-share-btn,
.pet-plugin-vanity-input-wrap {
    background: var(--sz-surface);
}

.pet-plugin-file-preview-item {
    background: var(--sz-surface);
}

.sz-archive-search {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto 24px;
    align-items: center;
}
.sz-archive-search input[type="search"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    background: var(--sz-surface);
    font-family: inherit;
    font-size: 14px;
    color: var(--sz-text);
}
.sz-archive-search input[type="search"]:focus {
    outline: 2px solid var(--sz-accent);
    outline-offset: 1px;
}
.sz-archive-search button {
    background: var(--sz-accent);
    color: var(--sz-surface);
    border: 0;
    padding: 10px 18px;
    border-radius: var(--sz-radius);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.15s ease;
}
.sz-archive-search button:hover {
    background: #1d3a2e;
}

.sz-search-summary {
    text-align: center;
    color: var(--sz-muted);
    margin: 0 0 24px;
    font-size: 14px;
}
.sz-search-summary a {
    margin-left: 12px;
    color: var(--sz-accent);
    font-weight: 500;
}

.sz-card-extra-stats {
    display: flex;
    gap: 14px;
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--sz-muted);
    flex-wrap: wrap;
    line-height: 1.4;
}
.sz-card-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.sz-card-decay-low  { color: #4d7a48; }
.sz-card-decay-mid  { color: #a67a2c; }
.sz-card-decay-high { color: #a8472b; }

.sz-card-stat-eternal {
    color: #6b5212;
    background: rgba(204, 155, 80, 0.14);
    border: 1px solid rgba(204, 155, 80, 0.28);
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 500;
}
.sz-card-stat-eternal-count {
    font-weight: 700;
    font-size: 13px;
    color: #4f3b0a;
    font-variant-numeric: tabular-nums;
}
.sz-card-stat-eternal-icon {
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 480px) {
    .sz-archive-search {
        flex-direction: column;
        gap: 8px;
    }
    .sz-archive-search input[type="search"],
    .sz-archive-search button {
        width: 100%;
    }
}

.sz-feature-grid--compact {
    margin: 0 auto;
    max-width: 1040px;
}

.sz-features-more {
    margin: 36px 0 0;
    text-align: center;
}
.sz-features-more-link {
    color: var(--sz-accent);
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.18s ease;
}
.sz-features-more-link:hover {
    border-bottom-color: var(--sz-accent);
}

.sz-ismerteto {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}
.sz-ismerteto-hero {
    text-align: center;
    margin-bottom: 56px;
}
.sz-ismerteto-hero h1 {
    font-size: 36px;
    line-height: 1.2;
    margin: 8px 0 24px;
}
.sz-ismerteto-intro {
    font-size: 17px;
    line-height: 1.65;
    color: var(--sz-muted);
    margin: 0;
}
.sz-ismerteto-section {
    margin-bottom: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--sz-border);
}
.sz-ismerteto-section:first-of-type {
    border-top: none;
    padding-top: 0;
}
.sz-ismerteto-section h2 {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 16px;
}
.sz-ismerteto-subheading {
    font-size: 18px;
    margin: 32px 0 12px;
    color: var(--sz-text);
}
.sz-ismerteto-section p {
    line-height: 1.7;
    color: var(--sz-text);
    margin: 0 0 16px;
}
.sz-ismerteto-final {
    text-align: center;
    padding: 40px 28px;
    margin-top: 56px;
    background: var(--sz-accent-soft);
    border-radius: var(--sz-radius-lg);
}
.sz-ismerteto-final h2 {
    margin: 0 0 12px;
    font-size: 24px;
}
.sz-ismerteto-final p {
    margin: 0 0 20px;
    color: var(--sz-text);
}

@media (max-width: 720px) {
    .sz-ismerteto {
        padding: 32px 16px 60px;
    }
    .sz-ismerteto-hero h1 {
        font-size: 28px;
    }
    .sz-ismerteto-section h2 {
        font-size: 20px;
    }
}
