/* ==========================================================================
   Heal Now Ministries International — base stylesheet
   Vanilla CSS, no frameworks. Brand values per /BRAND.md.
   ========================================================================== */

:root {
    --color-primary: #0274be;
    --color-primary-light: #70bbed;
    --color-primary-dark: #045c96;
    --color-text: #3a3a3a;
    --color-muted: #4b4f58;
    --color-bg-light: #f5f5f5;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-tint: #c5d7e3;

    --font-heading: "Poppins", sans-serif;
    --font-body: "Source Sans Pro", sans-serif;

    --container-width: 1200px;
    --container-narrow: 750px;
    --radius: 14px;
    --radius-sm: 8px;

    --shadow-sm: 0 2px 10px rgba(3, 30, 54, 0.06);
    --shadow-md: 0 12px 32px rgba(3, 30, 54, 0.12);

    --space-section: clamp(3.5rem, 6vw, 7rem);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.icon { width: 20px; height: 20px; flex-shrink: 0; }

a { color: var(--color-primary); text-decoration: none; }
a:hover, a:focus-visible { color: var(--color-primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.6em;
    color: var(--color-text);
}

h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

ul { padding-left: 1.25em; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 0; top: -3rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.75em 1.25em;
    z-index: 1000;
    transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---- Layout ------------------------------------------------------------ */

.wrap {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.wrap--narrow { max-width: var(--container-narrow); }

section { padding-block: var(--space-section); }

.section-head {
    max-width: 720px;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1em;
}

.lede {
    font-size: 1.2rem;
    color: var(--color-muted);
}

.bg-light { background: var(--color-bg-light); }

/* ---- Buttons ------------------------------------------------------------ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9em 1.9em;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn__arrow {
    width: 1.05em;
    height: 1.05em;
    transition: transform 0.25s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn--primary:hover, .btn--primary:focus-visible {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover, .btn--outline:focus-visible {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn--sm { padding: 0.6em 1.4em; font-size: 0.9rem; }

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
    background: #fff;
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ---- Header / Nav ------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(3, 30, 54, 0.06);
    transition: box-shadow 0.3s var(--ease);
}

/* backdrop-filter lives on a pseudo-element, not .site-header itself —
   filter/backdrop-filter on an ancestor creates a new containing block
   for fixed-position descendants, which broke the fixed mobile nav panel. */
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(180%) blur(10px);
    transition: background-color 0.3s var(--ease);
}
.site-header--scrolled { box-shadow: var(--shadow-sm); }
.site-header--scrolled::before { background: rgba(255, 255, 255, 0.97); }

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.9rem;
    transition: padding 0.3s var(--ease);
}
.site-header--scrolled .site-header__inner { padding-block: 0.6rem; }

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}
.site-logo:hover { transform: translateY(-1px); }
.site-logo img { border-radius: 8px; }
.site-logo__text { font-size: 1.15rem; line-height: 1.2; max-width: 15ch; }

.nav-toggle {
    display: none;
    position: relative;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    margin-left: auto;
}
.nav-toggle__bar {
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.site-nav ul {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: clamp(0.75rem, 1.6vw, 1.75rem);
}

.site-nav a {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding-block: 0.25rem;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--color-primary);
    transition: right 0.25s var(--ease);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--color-primary); }

@media (max-width: 1010px) {
    .nav-toggle { display: flex; order: 2; }
    .site-nav {
        position: fixed;
        inset: 0 0 0 30%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2rem;
        background: var(--color-white);
        padding: 6rem 1.75rem 2rem;
        transform: translateX(100%);
        transition: transform 0.35s var(--ease);
        box-shadow: var(--shadow-md);
    }
    .site-nav.is-open { transform: translateX(0); }
    .site-nav ul { flex-direction: column; gap: 1.25rem; width: 100%; }
    .site-nav a { font-size: 1.1rem; }
    .site-nav__cta { width: 100%; justify-content: center; }
}

/* ---- Hero --------------------------------------------------------------- */

.hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: min(94vh, 820px);
    overflow: hidden;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3vw), 0 100%);
}

.hero__bg {
    position: absolute;
    inset: -2%;
    object-fit: cover;
    width: 104%;
    height: 104%;
    animation: hero-ken-burns 22s ease-in-out infinite alternate;
}

@keyframes hero-ken-burns {
    from { transform: scale(1); }
    to { transform: scale(1.09); }
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 15% 20%, rgba(2, 116, 190, 0.35) 0%, transparent 55%),
        linear-gradient(200deg, rgba(3, 18, 31, 0.88) 5%, rgba(4, 24, 41, 0.66) 40%, rgba(2, 74, 122, 0.78) 100%);
}

.hero__content {
    position: relative;
    max-width: 46rem;
    padding-block: 6rem;
}

.hero__content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5em 1.1em 0.5em 0.9em;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
.hero__content .eyebrow::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background: var(--color-primary-light);
    box-shadow: 0 0 0 4px rgba(112, 187, 237, 0.25);
    flex-shrink: 0;
}

.hero__content h1 {
    color: #fff;
    margin-bottom: 0.5em;
    margin-top: 0.7em;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.25rem;
}

.hero__scroll-cue {
    position: absolute;
    left: 50%;
    bottom: clamp(1.25rem, 3vw, 2.5rem);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero__scroll-cue .icon {
    width: 18px;
    height: 18px;
    animation: hero-scroll-bounce 2s var(--ease) infinite;
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(6px); opacity: 1; }
}

.hero__tagline-badge {
    position: absolute;
    top: clamp(5.5rem, 14vw, 9rem);
    right: clamp(1.5rem, 6vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px dashed rgba(255, 255, 255, 0.55);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0.01em;
    backdrop-filter: blur(4px);
    transform: rotate(-8deg);
    animation: hero-badge-float 6s ease-in-out infinite;
}

@keyframes hero-badge-float {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-8px); }
}

@media (max-width: 900px) {
    .hero__tagline-badge { display: none; }
}

/* Floating "focus areas" strip that overlaps the hero's bottom edge */
.hero-quicklinks {
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-top: clamp(-3.5rem, -6vw, -2.5rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
}

.hero-quicklinks__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1 1 190px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
}

.hero-quicklinks__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-tint);
    color: var(--color-primary);
    flex-shrink: 0;
}
.hero-quicklinks__icon .icon { width: 1.2rem; height: 1.2rem; }

@media (prefers-reduced-motion: reduce) {
    .hero__bg { animation: none; }
    .hero__scroll-cue .icon { animation: none; }
    .hero__tagline-badge { animation: none; }
}

@media (max-width: 640px) {
    .hero { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%); }
}

/* ---- Cards / grids -------------------------------------------------------- */

.grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    border: 1px solid rgba(3, 30, 54, 0.05);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.card:hover .card__icon {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.08) rotate(-4deg);
}
.card h3 { color: var(--color-primary); }

.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--color-tint);
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card__icon .icon { width: 1.4rem; height: 1.4rem; }

.media-split {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .media-split { grid-template-columns: 1fr 1fr; }
    .media-split--reverse .media-split__media { order: 2; }
}

.media-split__media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-strip {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 2.5rem;
}
.photo-strip img {
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s var(--ease);
}
.photo-strip a:hover img,
.photo-strip img:hover { transform: scale(1.03); }

/* ---- CTA band ------------------------------------------------------------ */

.cta-band {
    position: relative;
    background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 90% at 90% 0%, rgba(255, 255, 255, 0.16) 0%, transparent 60%),
        radial-gradient(50% 70% at 5% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 55ch; margin-inline: auto; }
.cta-band .btn--primary { background: #fff; color: var(--color-primary); }
.cta-band .btn--primary:hover { background: var(--color-bg-light); color: var(--color-primary-dark); }

/* ---- Footer --------------------------------------------------------------- */

.site-footer {
    background: #0b1f30;
    color: rgba(255,255,255,0.82);
    padding-block: var(--space-section) 2rem;
}

.site-footer h2 {
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.1em;
}

.site-footer__grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    grid-template-columns: 1.3fr 1fr 1fr;
}
@media (max-width: 780px) {
    .site-footer__grid { grid-template-columns: 1fr; }
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6em; }
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: #fff; }

.site-footer .site-logo { color: #fff; margin-bottom: 1rem; }

.social-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem !important; }
.social-list li { margin: 0; }
.social-list a,
.social-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.8);
    transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-list a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}
.social-list span { color: rgba(255, 255, 255, 0.25); }
.social-list .icon { width: 1.15rem; height: 1.15rem; }

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
}
.site-footer__bottom p { margin: 0; }

/* ---- Scroll reveal --------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---- Forms --------------------------------------------------------------- */

.form-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.form-grid .field--full { grid-column: 1 / -1; }

.field label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.4em;
    color: var(--color-muted);
}

.field input,
.field textarea {
    width: 100%;
    font: inherit;
    padding: 0.85em 1em;
    border-radius: var(--radius-sm);
    border: 1.5px solid #dde3e8;
    background: #fff;
    color: var(--color-text);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(2, 116, 190, 0.14);
}
.field textarea { min-height: 140px; resize: vertical; }

.form-status {
    padding: 1em 1.25em;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.form-status--success { background: #e6f6ec; color: #1c6b3a; }
.form-status--error { background: #fdecec; color: #9c2b2b; }

/* ---- Misc page bits -------------------------------------------------------- */

.icon-list { list-style: none; padding: 0; margin: 0; }
.icon-list li {
    padding-left: 1.75em;
    position: relative;
    margin-bottom: 0.85em;
}
.icon-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.5em;
    width: 0.55em; height: 0.55em;
    border-radius: 50%;
    background: var(--color-primary);
}

blockquote {
    border-left: 4px solid var(--color-primary);
    margin: 0 0 1.5em;
    padding: 0.25em 0 0.25em 1.5em;
    font-style: italic;
    color: var(--color-muted);
}

.page-header {
    position: relative;
    padding-block: clamp(4rem, 7vw, 6rem) clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, #fff 100%);
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -25%;
    right: -8%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(2, 116, 190, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.page-header::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -35%;
    left: -10%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(112, 187, 237, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 1rem;
}
.contact-details li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}
.contact-details__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--color-tint);
    color: var(--color-primary);
    flex-shrink: 0;
}
.contact-details__icon .icon { width: 1.05rem; height: 1.05rem; }

.post-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16/9; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.post-card__category { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); font-weight: 700; }
.post-card__excerpt { color: var(--color-muted); font-size: 0.98rem; }
.post-card__link { margin-top: auto; font-weight: 700; }

.post-body h2 { margin-top: 1.6em; }
.post-body p { color: var(--color-text); }

.qr-block {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.qr-block img { width: 140px; height: 140px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }

.radio-player {
    max-width: 480px;
    margin-inline: auto;
    text-align: center;
    background: var(--color-bg-light);
    border-radius: var(--radius);
    padding: clamp(2rem, 4vw, 3rem);
}
.radio-player img { margin-inline: auto; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.radio-player audio { width: 100%; margin-top: 1rem; }
