/* =====================================================================
   PhilForNature – Landingpage (Seite 1566)
   CI: Grün #3FA535 / #538135, Blau #2E74B5, Schrift Calibri.
   Alles unter .pfn gescoped, damit Theme/Bootstrap-Styles nicht kollidieren.
   ===================================================================== */

.pfn {
    --green: #3FA535;
    --green-d: #2E7D32;
    --green-title: #4a7a30;
    --blue: #2E74B5;
    --ink: #1B2A20;
    --muted: #5c6b60;
    --paper: #F4F8F1;
    --surface: #FFFFFF;
    --line: #E1E9DB;
    --sand: #EEF3E8;

    font-family: Calibri, "Segoe UI", "Helvetica Neue", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.6;
}
.pfn *, .pfn *::before, .pfn *::after { box-sizing: border-box; }

/* Kompletten Theme-Header (Bildband + Branding) auf PhilForNature-Seiten
   entfernen – nur die Navigation bleibt, das eigene Hero folgt direkt darunter. */
.page-template-page-philfornature .custom-header,
.page-template-page-pfn-projekt .custom-header,
.page-template-page-pfn-partner .custom-header,
.page-template-page-philvomfass .custom-header { display: none !important; }
.page-template-page-philfornature #masthead,
.page-template-page-pfn-projekt #masthead { margin: 0 !important; padding: 0 !important; }
.page-template-page-philfornature .navigation-top,
.page-template-page-pfn-projekt .navigation-top { margin: 0 !important; }
.page-template-page-philfornature .site-content,
.page-template-page-pfn-projekt .site-content { padding-top: 0 !important; }
.page-template-page-philfornature #content .wrap,
.page-template-page-pfn-projekt #content .wrap { max-width: none; margin: 0; padding: 0; }
.page-template-page-philfornature .entry-header,
.page-template-page-philfornature .entry-title,
.page-template-page-pfn-projekt .entry-header,
.page-template-page-pfn-projekt .entry-title { display: none; }
.page-template-page-philfornature .site-content-contain,
.page-template-page-pfn-projekt .site-content-contain { background: var(--paper); }

.pfn-section { padding: 0 24px; }
.pfn-wrap { max-width: 1120px; margin: 0 auto; }
.pfn-narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------------- Hero ---------------- */
.pfn-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background-size: cover;
    background-position: center 35%;
    color: #fff;
}
.pfn-hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(18,36,22,.62) 0%, rgba(18,40,25,.42) 45%, rgba(18,42,26,.72) 100%),
        radial-gradient(120% 80% at 50% 30%, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 70%);
}
.pfn-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.pfn-hero::after { z-index: 1; }

/* Ken-Burns-Bildrotation im Hero */
.pfn-hero__slides { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.pfn-hero__slide {
    position: absolute; inset: 0; background-size: cover;
    background-position: center;               /* Standard: Baum-/Landschaftsmotive (wie ursprünglich optimal) */
    opacity: 0; will-change: transform, opacity;
    animation: pfnKenBurns 32s infinite;       /* kräftiger Zoom + Schwenk oben-links für die Landschaftsbilder */
}
.pfn-hero__slide:nth-child(2) { animation-delay: 8s; }
.pfn-hero__slide:nth-child(3) { animation-delay: 16s; }
.pfn-hero__slide:nth-child(4) { animation-delay: 24s; }

/* Slide 1 = Gruppenfoto (gruppe-dach) NUR auf der PhilForNature-Landing:
   eigener Ausschnitt + eigener Ken-Burns, höher ausgerichtet und sanfter Schwenk
   nach UNTEN, damit keine Köpfe angeschnitten werden. (Fass-Hero bleibt unberührt.) */
.page-template-page-philfornature .pfn-hero__slide:nth-child(1) {
    animation-delay: 0s;
    animation-name: pfnKenBurnsGruppe;
    background-position: center 20%;
}

/* Landschaft/Bäume – kräftiger Zoom, Schwenk nach oben-links (ursprüngliche Variante) */
@keyframes pfnKenBurns {
    0%   { opacity: 0; transform: scale(1.05) translate(0, 0); }
    3%   { opacity: 1; }
    22%  { opacity: 1; transform: scale(1.16) translate(-2%, -2%); }
    26%  { opacity: 0; transform: scale(1.16) translate(-2%, -2%); }
    100% { opacity: 0; transform: scale(1.05); }
}
/* Gruppenfoto – sanfter Zoom, Schwenk nach unten (Köpfe bleiben im Bild) */
@keyframes pfnKenBurnsGruppe {
    0%   { opacity: 0; transform: scale(1.04) translateY(0); }
    3%   { opacity: 1; }
    22%  { opacity: 1; transform: scale(1.11) translateY(2.5%); }
    26%  { opacity: 0; transform: scale(1.11) translateY(2.5%); }
    100% { opacity: 0; transform: scale(1.04) translateY(0); }
}
/* Fass-Hero – 3 Slides (Timing auf 24s/8s abgestimmt, lückenlose Überblendung) */
@keyframes pfnKenBurnsFass {
    0%   { opacity: 0; transform: scale(1.05) translate(0, 0); }
    4%   { opacity: 1; }
    34%  { opacity: 1; transform: scale(1.14) translate(-1.5%, -1.5%); }
    38%  { opacity: 0; transform: scale(1.14) translate(-1.5%, -1.5%); }
    100% { opacity: 0; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .pfn-hero__slide { animation: none; }
    .pfn-hero__slide:nth-child(1) { opacity: 1; }
}

/* Story-Sektion (z. B. 350 Bäume) */
.pfn-story { padding: 56px 24px; }
.pfn-story__grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 820px; margin: 24px auto 0; }
.pfn-story p { font-size: 17.5px; color: var(--ink); }
.pfn-story .pfn-lead { font-size: 20px; }

/* Selbstgehostetes Video (Ackerkonzert unter Bio-Stiftung) */
.pfn-video-embed { max-width: 820px; margin: 8px auto 0; }
.pfn-video-embed video {
    width: 100%; height: auto; display: block; border-radius: 12px;
    box-shadow: 0 8px 28px rgba(20,40,25,.14); background: #000;
}
.pfn-video-embed figcaption { text-align: center; color: var(--muted); font-size: 14px; margin-top: 12px; }
.pfn-hero__logo { width: min(560px, 82vw); height: auto; margin: 0 auto 26px; display: block; filter: drop-shadow(0 2px 10px rgba(0,0,0,.35)); }
.pfn-hero__tagline {
    font-size: clamp(26px, 4.4vw, 46px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -.01em;
    margin: 0 0 16px;
    text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.pfn-hero__sub { font-size: clamp(17px, 2vw, 21px); max-width: 620px; margin: 0 auto; color: #eef5ea; text-shadow: 0 1px 8px rgba(0,0,0,.45); }

/* ---------------- Mission ---------------- */
.pfn-mission { padding: 64px 24px 40px; }
.pfn-eyebrow {
    font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--green-d); font-weight: 700; margin: 0 0 14px;
}
.pfn-h2 {
    font-size: clamp(25px, 3.4vw, 34px); line-height: 1.18; letter-spacing: -.01em;
    color: var(--green-title); font-weight: 700; margin: 0 0 18px;
}
.pfn-lead { font-size: clamp(18px, 2vw, 21px); color: var(--ink); }
.pfn-lead b { color: var(--green-d); }

.pfn-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
    margin: 40px auto 0; max-width: 900px;
}
.pfn-stat { background: var(--surface); padding: 26px 20px; text-align: center; }
.pfn-stat__n { font-size: 34px; font-weight: 800; color: var(--green); line-height: 1; letter-spacing: -.02em; }
.pfn-stat__l { font-size: 14.5px; color: var(--muted); margin-top: 8px; line-height: 1.4; }
@media (max-width: 620px){ .pfn-stats{ grid-template-columns: 1fr; } }

/* ---------------- Projekte (Fokus-Karten) ---------------- */
.pfn-projects { padding: 56px 24px; }
.pfn-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 28px;
}
@media (max-width: 780px){ .pfn-grid{ grid-template-columns: 1fr; } }

.pfn-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 1px 2px rgba(20,40,25,.04);
    transition: transform .18s ease, box-shadow .18s ease;
}
.pfn-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(20,40,25,.10); }
.pfn-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.pfn-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pfn-card__badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--blue); color: #fff; font-size: 13px; font-weight: 700;
    padding: 5px 12px; border-radius: 999px; letter-spacing: .02em;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.pfn-card__badge.is-past { background: #6b7f5f; }
.pfn-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pfn-card__cat { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-d); font-weight: 700; margin-bottom: 8px; }
.pfn-card__title { font-size: 22px; line-height: 1.22; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.pfn-card__text { font-size: 16.5px; color: var(--muted); margin: 0 0 14px; }
.pfn-card__partner {
    margin-top: auto; font-size: 14px; color: var(--green-d);
    border-top: 1px solid var(--line); padding-top: 12px;
}
.pfn-card__partner b { color: var(--ink); font-weight: 700; }

/* ---------------- Weitere Termine ---------------- */
.pfn-more { padding: 8px 24px 56px; }
.pfn-more__list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.pfn-more__item {
    display: flex; gap: 18px; align-items: baseline;
    background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 16px 20px;
}
.pfn-more__date { flex: 0 0 auto; color: var(--blue); font-weight: 700; font-size: 15px; min-width: 110px; }
.pfn-more__txt { color: var(--ink); }
.pfn-more__txt b { display: block; }
.pfn-more__txt span { color: var(--muted); font-size: 15.5px; }

/* ---------------- Partner ---------------- */
.pfn-partners { padding: 60px 24px; background: var(--sand); }
.pfn-quote {
    max-width: 760px; margin: 22px auto 40px; text-align: center;
    font-size: clamp(19px, 2.4vw, 25px); line-height: 1.4; color: var(--green-d); font-weight: 600;
}
.pfn-quote span { color: var(--muted); font-weight: 400; font-size: 16px; display: block; margin-top: 12px; }
.pfn-partner-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px;
}
.pfn-partner {
    background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
    padding: 22px 22px; display: flex; flex-direction: column; gap: 6px;
}
.pfn-partner__name { font-weight: 700; color: var(--ink); font-size: 17px; }
.pfn-partner__name .tag { display: inline-block; font-size: 12px; color: var(--blue); font-weight: 700; margin-left: 6px; }
.pfn-partner__desc { font-size: 15px; color: var(--muted); line-height: 1.45; }

/* ---------------- Testimonial (Joana Mallwitz) ---------------- */
.pfn-testimonial { padding: 20px 24px 8px; }
.pfn-testimonial figure {
    max-width: 860px; margin: 0 auto; border-radius: 14px; overflow: hidden;
    box-shadow: 0 8px 28px rgba(20,40,25,.12);
}
.pfn-testimonial img { width: 100%; height: auto; display: block; }
.pfn-testimonial figcaption {
    text-align: center; color: var(--muted); font-size: 14px; margin-top: 12px;
}

/* ---------------- Partner: große Bildkarten ---------------- */
.pfn-feature-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 30px 0 40px;
}
@media (max-width: 860px){ .pfn-feature-grid{ grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.pfn-feature {
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
    display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(20,40,25,.05);
    transition: transform .18s ease, box-shadow .18s ease;
}
.pfn-feature:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(20,40,25,.12); }
.pfn-feature__media { aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.pfn-feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pfn-feature__body { padding: 22px 24px 26px; }
.pfn-feature__role { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin: 0 0 6px; }
.pfn-feature__name { font-size: 21px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.pfn-feature__desc { font-size: 16.5px; color: var(--muted); margin: 0; line-height: 1.5; }
.pfn-feature__person { margin-top: 10px; font-size: 15px; color: var(--green-d); font-weight: 600; }

.pfn-partners-more { margin-top: 8px; }
.pfn-partners-more h3 { text-align: center; font-size: 18px; color: var(--green-d); font-weight: 700; margin: 0 0 18px; }

/* ---------------- Archiv (frühere Projekte) ---------------- */
.pfn-archive { padding: 8px 24px 56px; }
.pfn-archive__wrap { max-width: 820px; margin: 0 auto; }
.pfn-archive__intro { text-align: center; color: var(--muted); margin: 0 auto 24px; max-width: 560px; }
.pfn-archive__table {
    width: 100%; border-collapse: collapse; background: var(--surface);
    border: 1px solid var(--line); border-radius: 10px; overflow: hidden; font-size: 16px;
}
.pfn-archive__table tr { border-bottom: 1px solid var(--line); }
.pfn-archive__table tr:last-child { border-bottom: 0; }
.pfn-archive__table tr:nth-child(even) { background: #fafcf8; }
.pfn-archive__table td { padding: 12px 18px; vertical-align: baseline; }
.pfn-archive__year { color: var(--blue); font-weight: 700; white-space: nowrap; width: 90px; font-variant-numeric: tabular-nums; }
.pfn-archive__name { color: var(--ink); }
.pfn-archive__name span { color: var(--muted); }
.pfn-archive__name a { color: var(--green-d); text-decoration: none; }
.pfn-archive__name a:hover { text-decoration: underline; }
.pfn-archive__name a::after { content: "\00a0\2192"; font-weight: 400; }

/* ---------------- CTA ---------------- */
.pfn-cta { padding: 64px 24px; }
.pfn-cta__box {
    max-width: 900px; margin: 0 auto; text-align: center;
    background: linear-gradient(135deg, #3FA535 0%, #2E7D32 100%);
    color: #fff; border-radius: 16px; padding: 48px 32px;
}
.pfn-cta__box h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin: 0 0 14px; font-weight: 700; }
.pfn-cta__box p { color: #eaf5e6; font-size: 18px; max-width: 560px; margin: 0 auto 26px; }
.pfn-btn {
    display: inline-block; background: #fff; color: var(--green-d); font-weight: 700;
    padding: 14px 30px; border-radius: 8px; text-decoration: none; font-size: 17px;
    transition: transform .15s ease, background .15s ease;
}
.pfn-btn:hover { transform: translateY(-2px); background: #f0f7ec; color: var(--green-d); }
.pfn-btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); margin-left: 10px; }
.pfn-btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
/* Ghost-Button auf dem farbigen CTA weiß halten – schlägt die Theme-Linkfarbe (a:link).
   Scoped auf die CTA-Box, damit der grüne „Zur Website“-Button auf weißem Grund lesbar bleibt. */
.pfn-cta__box .pfn-btn--ghost,
.pfn-cta__box .pfn-btn--ghost:link,
.pfn-cta__box .pfn-btn--ghost:visited { color: #fff; }
.pfn-cta__box .pfn-btn--ghost:hover { color: #fff; }

/* =====================================================================
   Theme-Variante „Philharmonie vom Fass" – gleiches Grunddesign, Teal-CI
   (aus dem Original-Flyer: #2882A5). Nur die Farb-Variablen werden getauscht.
   ===================================================================== */
.pfn.pfn-fass {
    --green: #2882A5;        /* Primär (Teal) */
    --green-d: #1F6685;      /* dunkel */
    --green-title: #1B5E7C;  /* Überschriften */
    --blue: #C8860D;         /* Sekundärakzent: warmes Bernstein (Termine/Badges) */
    --sand: #EAF1F4;
    --paper: #F4F7F8;
}
.pfn-fass .pfn-cta__box { background: linear-gradient(135deg, #2882A5 0%, #1F6685 100%); }
.pfn-fass .pfn-hero {
    background-color: #1F6685;   /* Fallback, falls das Foto fehlt */
    color: #fff;
}
/* Neutraler schwarzer Overlay über dem Foto (wie bei PhilForNature),
   damit der weiße Text auf der Bildrotation gut lesbar bleibt */
.pfn-fass .pfn-hero::after {
    display: block;
    background:
        linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.40) 45%, rgba(0,0,0,.70) 100%),
        radial-gradient(120% 80% at 50% 30%, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 70%);
}
/* Fass-Bildrotation: eigenes Timing für genau 3 Motive */
.pfn-fass .pfn-hero__slide {
    animation-name: pfnKenBurnsFass;
    animation-duration: 24s;
    background-position: center 40%;
}

/* ---------------- Fotogalerie + Lightbox ---------------- */
.pfn-gallery-section { padding: 8px 24px 56px; }
.pfn-gallery {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 26px;
}
@media (max-width: 900px){ .pfn-gallery{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .pfn-gallery{ grid-template-columns: repeat(2, 1fr); } }
.pfn-gallery a {
    display: block; aspect-ratio: 3/2; overflow: hidden; border-radius: 8px; background: var(--sand);
    cursor: zoom-in;
}
.pfn-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.pfn-gallery a:hover img { transform: scale(1.05); }
.pfn-gallery-credit { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 16px; }

.pfn-lb {
    position: fixed; inset: 0; z-index: 99999; display: none;
    background: rgba(10,25,32,.92); align-items: center; justify-content: center;
}
.pfn-lb.is-open { display: flex; }
.pfn-lb img { max-width: 92vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.pfn-lb__btn {
    position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0;
    width: 52px; height: 52px; border-radius: 50%; font-size: 26px; cursor: pointer; line-height: 1;
    display: flex; align-items: center; justify-content: center;
}
.pfn-lb__btn:hover { background: rgba(255,255,255,.28); }
.pfn-lb__prev { left: 3vw; } .pfn-lb__next { right: 3vw; }
.pfn-lb__close { top: 3vh; right: 3vw; width: 46px; height: 46px; font-size: 22px; }
@media (max-width: 560px){ .pfn-lb__prev{ left: 8px; } .pfn-lb__next{ right: 8px; } .pfn-lb__btn{ width:44px;height:44px; } }
.pfn-fass .pfn-hero__eyebrow { color: #cfe6ef; font-family: var(--mono, inherit); letter-spacing: .16em; text-transform: uppercase; font-size: 13px; font-weight: 700; margin: 0 0 16px; }
.pfn-fass .pfn-hero__facts {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin-top: 24px;
}
.pfn-fass .pfn-hero__facts span {
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
    padding: 7px 15px; border-radius: 999px; font-weight: 600; font-size: 15px;
}

/* Orte / Locations */
.pfn-venues { padding: 8px 24px 40px; }
.pfn-venues__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 26px;
}
.pfn-venue {
    background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
    border-left: 3px solid var(--green); padding: 18px 20px;
}
.pfn-venue__name { font-weight: 700; color: var(--ink); font-size: 17px; }
.pfn-venue__type { font-size: 14px; color: var(--muted); margin-top: 3px; }
.pfn-venue__ens { font-size: 14.5px; color: var(--green-d); font-weight: 600; margin-top: 8px; }
.pfn-venue__ens::before { content: "\266A\00a0"; }
.pfn-map { max-width: 560px; margin: 34px auto 0; border-radius: 12px; overflow: hidden; }
.pfn-map img { border-radius: 12px; }
.pfn-map img { width: 100%; height: auto; display: block; }

/* Ablauf-Schritte */
.pfn-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 26px; }
.pfn-step { text-align: center; padding: 8px; }
.pfn-step__n {
    width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; margin: 0 auto 14px;
}
.pfn-step__t { font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.pfn-step__d { font-size: 15.5px; color: var(--muted); }

/* Fein-Anpassungen */
.pfn a { color: var(--green-d); }
@media (prefers-reduced-motion: reduce){ .pfn * { transition: none !important; } }

/* =====================================================================
   Projekt-Detailseiten (Template page-pfn-projekt.php)
   ===================================================================== */
.pfn-detail-hero {
    position: relative; padding: 70px 24px; color: #fff; text-align: center;
    background-size: cover; background-position: center;
}
.pfn-detail-hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(18,36,22,.55) 0%, rgba(18,42,26,.78) 100%);
}
.pfn-detail-hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.pfn-detail-hero .pfn-card__badge { position: static; display: inline-block; margin-bottom: 14px; }
.pfn-detail-hero__cat { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: #cfe8c4; margin: 0 0 10px; }
.pfn-detail-hero__title { font-size: clamp(28px, 4.4vw, 46px); line-height: 1.12; font-weight: 700; margin: 0; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.pfn-detail-hero__date { margin-top: 14px; font-size: 17px; color: #eaf5e4; }

.pfn-detail-body { padding: 52px 24px; }
.pfn-detail-body .pfn-prose { max-width: 720px; margin: 0 auto; }
.pfn-prose h2, .pfn-prose h3 { color: var(--green-title); line-height: 1.2; margin: 1.6em 0 .5em; }
.pfn-prose h2 { font-size: 26px; } .pfn-prose h3 { font-size: 21px; color: var(--green-d); }
.pfn-prose p { margin: 0 0 1.1em; }
.pfn-prose ul { margin: 0 0 1.1em 1.2em; } .pfn-prose li { margin-bottom: .4em; }
.pfn-prose a { color: var(--green-d); text-decoration: underline; text-underline-offset: 2px; }

/* Video-Karte (verlinkt in die Mediathek) */
.pfn-video {
    max-width: 720px; margin: 32px auto; display: block; text-decoration: none;
    border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--surface);
    transition: box-shadow .18s ease, transform .18s ease;
}
.pfn-video:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(20,40,25,.12); }
.pfn-video__thumb {
    position: relative; aspect-ratio: 16/9; background: #1B2A20 center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
}
.pfn-video__thumb::after { content: ""; position: absolute; inset: 0; background: rgba(18,36,22,.35); }
.pfn-video__play {
    position: relative; z-index: 1; width: 74px; height: 74px; border-radius: 50%;
    background: rgba(63,165,53,.95); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.pfn-video__play svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
.pfn-video__meta { padding: 16px 20px; }
.pfn-video__label { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.pfn-video__title { font-size: 18px; font-weight: 700; color: var(--ink); margin: 4px 0 2px; }
.pfn-video__src { font-size: 14px; color: var(--muted); }

/* Ausblick-Callout */
.pfn-ausblick {
    max-width: 720px; margin: 36px auto 0; padding: 26px 28px;
    background: var(--sand); border-left: 4px solid var(--green); border-radius: 10px;
}
.pfn-ausblick__label { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--green-d); font-weight: 700; margin: 0 0 8px; }
.pfn-ausblick__text { font-size: 18px; color: var(--ink); margin: 0; }
.pfn-ausblick__text b { color: var(--green-d); }

/* Zurück-Link + Karten-Verlinkung */
.pfn-back { max-width: 720px; margin: 40px auto 0; }
.pfn-back a { font-weight: 600; text-decoration: none; }
.pfn-back a::before { content: "\2190\00a0"; }
.pfn-card__more { margin-top: 12px; font-weight: 700; color: var(--green-d); font-size: 15px; }
.pfn-card__more::after { content: "\00a0\2192"; }
a.pfn-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
a.pfn-card-link:hover .pfn-card__title { color: var(--green-d); }

/* ===== Klickbare Partner-Karten (Landing) ===== */
a.pfn-feature-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
a.pfn-feature-link:hover .pfn-feature__name { color: var(--green-d); }
.pfn-feature__more { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--green-d); font-size: 14.5px; }
.pfn-feature__more::after { content: "\00a0\2192"; }
a.pfn-partner-link { text-decoration: none; color: inherit; display: block; transition: transform .18s ease, box-shadow .18s ease; }
a.pfn-partner-link:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,40,25,.10); }
a.pfn-partner-link:hover .pfn-partner__name { color: var(--green-d); }
.pfn-partner__more { display: inline-block; margin-top: 8px; font-size: 13.5px; font-weight: 700; color: var(--green-d); }
.pfn-partner__more::after { content: "\00a0\2192"; }
.pfn-partner__awards { display: block; margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--green-d); background: #eef4e8; border: 1px solid #d8e6cf; border-radius: 10px; padding: 6px 12px; line-height: 1.35; }

/* ===== Story-Teaser (Landing → Wandertag-Unterseite) ===== */
.pfn-story__preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 820px; margin: 26px auto 0; }
.pfn-story__preview a { display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 3/2; box-shadow: 0 6px 18px rgba(20,40,25,.10); }
.pfn-story__preview img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.pfn-story__preview a:hover img { transform: scale(1.05); }
.pfn-story__cta { text-align: center; margin: 26px 0 0; }
@media (max-width: 620px){ .pfn-story__preview { grid-template-columns: 1fr 1fr; } .pfn-story__preview a:nth-child(3){ display:none; } }

/* ===== Auszeichnungs-Highlight (Orchester des Wandels) auf der Landing ===== */
.pfn-award-hl__logo { width: 96px; height: 96px; object-fit: contain; display: block; margin: 0 auto 18px; background: #fff; border-radius: 18px; padding: 9px; box-shadow: 0 6px 18px rgba(20,40,25,.12); }
.pfn-award-hl__imgs { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: center; margin: 34px auto 0; max-width: 1000px; }
.pfn-award-hl__imgs img { height: 240px; width: auto; max-width: 100%; border-radius: 16px; box-shadow: 0 12px 30px rgba(20,40,25,.18); }
.pfn-award-hl__cta { text-align: center; margin: 34px 0 0; }
@media (max-width: 760px){
    .pfn-award-hl__imgs { gap: 20px; }
    .pfn-award-hl__imgs img { height: 150px; }
}

/* ===== Partner-Detailseite ===== */
.pfn-partner-hero--plain { background: linear-gradient(135deg, var(--green-d), var(--green)); }
.pfn-partner-web { max-width: 720px; margin: 28px auto 0; }
.pfn-partner-facts { max-width: 720px; margin: 30px auto 0; padding: 22px 24px; background: var(--sand); border-radius: 14px; }
.pfn-partner-facts h3 { font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-d); margin: 0 0 12px; }
.pfn-partner-facts ul { margin: 0; padding-left: 20px; }
.pfn-partner-facts li { font-size: 16.5px; color: var(--ink); margin: 6px 0; line-height: 1.5; }

/* Partner-Logo im Hero + Auszeichnungs-Band */
.pfn-detail-hero__logo { width: 96px; height: 96px; object-fit: contain; display: block; margin: 0 auto 18px; background: #fff; border-radius: 16px; padding: 8px; box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.pfn-awards { background: var(--paper, #f4f7f8); padding: 32px 24px; border-bottom: 1px solid #e7eee2; }
.pfn-awards__wrap { max-width: 780px; margin: 0 auto; text-align: center; }
.pfn-awards__label { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--green-d); margin: 0 0 20px; }
.pfn-awards__imgs { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px; }
.pfn-awards__imgs img { height: 152px; width: auto; max-width: 100%; border-radius: 12px; box-shadow: 0 8px 22px rgba(20,40,25,.14); }
@media (max-width: 560px){ .pfn-awards__imgs img { height: 112px; } .pfn-awards__imgs { gap: 18px; } }
