/* 
   GOLFCLUB – Latest Posts */
.wp-block-latest-posts {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.wp-block-latest-posts>ul.golf-news-grid {
    width: min(75%, 1250px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 1) UL: Grid + volle Breite + Abstand */
ul.golf-news-grid.wp-block-latest-posts__list.is-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2rem !important;

    width: min(75%, 1250px) !important;
    margin-left: auto !important;
    margin-right: auto !important;

    list-style: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 2) LI: weiße Kacheln */
ul.golf-news-grid.wp-block-latest-posts__list.is-grid>li {
    background: #FFFFFF !important;
    border: 1px solid #E4DDCF !important;
    border-radius: 12px !important;

    padding: 1.75rem 1.5rem 1.5rem !important;
    margin: 0 !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;

    /* dezente Tiefe */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06) !important;

    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Hover */
ul.golf-news-grid.wp-block-latest-posts__list.is-grid>li:hover {
    transform: translateY(-3px);
    border-color: #1F6A4A !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10) !important;
}

/* 3) Titel */
ul.golf-news-grid .wp-block-latest-posts__post-title {
    color: #1F6A4A !important;
    text-decoration: none;

    font-size: 1.2rem;
    font-weight: 650;
    line-height: 1.3;

    margin: 0 0 0.6rem 0 !important;

    /* verhindert "Buchstaben untereinander" */
    overflow-wrap: anywhere;
}

ul.golf-news-grid .wp-block-latest-posts__post-title:hover {
    color: #7A1E2B !important;
    text-decoration: underline;
}

/* 4) Datum – als kleines Badge */
ul.golf-news-grid .wp-block-latest-posts__post-date {
    display: inline-block !important;
    align-self: flex-start !important;

    font-size: 0.85rem;
    color: #5F5F5F !important;

    padding: 0.35rem 0.75rem !important;
    margin: 0 0 1rem 0 !important;

    background: #F3EFE6 !important;
    border: 1px solid #E4DDCF !important;
    border-radius: 999px !important;
}

/* 5) Excerpt */
ul.golf-news-grid .wp-block-latest-posts__post-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #1E1E1E !important;

    margin: 0 !important;
    flex-grow: 1;
}

/* 6) Dezenter Akzent unten */
ul.golf-news-grid.wp-block-latest-posts__list.is-grid>li::after {
    content: "";
    display: block;

    width: 60px;
    height: 3px;
    margin-top: 1.5rem;

    background: #AFC7B7;
    border-radius: 2px;
}

/* 7) Mobile: untereinander */
@media (max-width: 768px) {
    ul.golf-news-grid.wp-block-latest-posts__list.is-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        width: 95% !important;
    }

    ul.golf-news-grid.wp-block-latest-posts__list.is-grid>li {
        padding: 1.5rem 1.25rem 1.25rem !important;
    }
}

/* 
   HERO Overlap Card
   Bild: figure.golf-hero
   Box:  div.golf-hero-card
    */

/* 1) Hero-Bild "sauber" blockig machen */
figure.golf-hero {
    position: relative;
    margin: 0 !important;
    height: clamp(220px, 26vw, 340px);
    /* <-- HÖHE HIER */
    overflow: hidden;
}

/* Damit das Bild wirklich über die ganze Breite geht */
figure.golf-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

/* 2) Überlappende Box direkt unter dem Bild */
.wp-site-blocks main .golf-hero-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);

    /* Card-Breite wie bei Premium-Seiten */
    max-width: 760px;
    width: calc(100% - 2rem);
    margin: -110px auto 0 !important;
    /* <- überlappt das Bild */

    position: relative;
    z-index: 5;

    /* wichtig: sonst übernimmt WP Group-Block manchmal Standard-Padding */
    box-sizing: border-box;
}

.wp-site-blocks main .golf-hero-card::before {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    background: var(--wp--preset--color--custom-akzent-2, #b08d57);
    /* Gold/Brass */
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* Typo in der Box */
.golf-hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wp--preset--color--custom-text-mute, #5f5f5f);
    margin: 0 0 0.75rem 0;
}

.golf-hero-title {
    margin: 0 0 0.75rem 0;
    line-height: 1.05;
    color: var(--wp--preset--color--custom-text-prim, #1e1e1e);
}

.golf-hero-subtitle {
    margin: 0 0 1.5rem 0;
    font-size: 1.05rem;
    color: var(--wp--preset--color--custom-text-mute, #5f5f5f);
}


/* 3) Mobile: weniger Überlappung */
@media (max-width: 768px) {
    .wp-site-blocks main .golf-hero-card {
        width: 100% !important;
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }

    .golf-hero-title {
        font-size: 2rem;
        /* falls dein Theme das H1 riesig macht */
    }
}




*/

/* Beitragsseite */

.news-template-block .wp-block-post-template {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .news-template-block .wp-block-post-template {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .news-template-block .wp-block-post-template {
        grid-template-columns: 1fr;
    }
}

/* Card */
.news-template-block li.wp-block-post {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;

    padding: 22px 22px 18px;
    min-height: 170px;
}

@media (hover:hover) {
    .news-template-block li.wp-block-post:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
        transition: transform 160ms ease, box-shadow 160ms ease;
    }
}

/* Title */
.news-template-block .wp-block-post-title {
    margin: 0 0 10px;
    line-height: 1.2;
}


.news-template-block .wp-block-post-date {
    display: inline-flex;
    align-items: center;

    padding: 0;
    /* Wrapper nicht selbst paddingen */
    margin: 0 0 14px;

    background: transparent;
    /* Wrapper ohne Hintergrund */
    border: 0 !important;
    /* <- entfernt 1. Rand */
    outline: 0 !important;
    box-shadow: none !important;
}

.news-template-block .wp-block-post-date time {
    display: inline-block;

    padding: 7px 14px;
    font-size: 13px;
    line-height: 1;

    background: #F3EFE6;
    border: 1px solid rgba(0, 0, 0, 0.10);
    /* nur EIN Rand */
    border-radius: 999px;

    color: rgba(0, 0, 0, 0.60);

    box-shadow: none !important;
    /* <- verhindert "zweite" Kante durch shadow */
    outline: 0 !important;
}

.news-template-block .wp-block-post-date,
.news-template-block .wp-block-post-date * {
    filter: none !important;
}


.news-template-block .wp-block-post-excerpt {
    margin: 0;
    color: rgba(0, 0, 0, 0.78);
}

/* Original-Linktext unsichtbar machen, aber Link bleibt klickbar */
.news-template-block .wp-block-post-excerpt__more-link {
    font-size: 0 !important;
    line-height: 0 !important;
    text-decoration: none;
    color: var(--golf-accent, #7a1e2b);
}

/* Deutscher Text als Pseudo-Content */
.news-template-block .wp-block-post-excerpt__more-link::after {
    content: "Weiterlesen →";
    font-size: 15px;
    line-height: 1.2;

    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    color: var(--golf-accent, #7a1e2b);
}

.news-template-block li.wp-block-post::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    border-radius: 99px;
    margin-top: 16px;
    background: rgba(122, 30, 43, 0.35);
}

/* Standardseite */

.page-hero__card.wp-block-cover {
    position: relative;
    min-height: clamp(260px, 32vw, 420px);
    overflow: hidden;
}

.page-hero__card.wp-block-cover .wp-block-cover__image-background {
    object-fit: cover;
    object-position: center;
}

.page-hero__card.wp-block-cover .wp-block-cover__background {
    opacity: 0.35;
}

/* HERO CARD POSITION + LOOK */

.page-hero__card.wp-block-cover .wp-block-cover__inner-container {
    position: absolute;

    /* Card leicht links (nicht mittig) */
    left: clamp(40px, 8vw, 160px);
    bottom: clamp(24px, 4vw, 48px);

    /* Mindestbreite für kurze Titel */
    min-width: min(560px, calc(100% - 80px));
    max-width: min(980px, calc(100% - 80px));
    width: fit-content;

    background: #F3EFE6;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);

    padding: 28px 44px 30px;

    /* Text IN der Card zentriert */
    text-align: center;

    /* für den Akzent-Strich */
    --hero-accent: #7a1e2b;
}

/* Akzent-Strich oben links (wie Startseite) */
.page-hero__card.wp-block-cover .wp-block-cover__inner-container::before {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--hero-accent) 55%, transparent);
    margin: 0 auto 14px 0;
    /* links ausgerichtet, Rest bleibt zentriert */
}

/* TITLE TYPO (startseiten-näher) */

.page-hero__card.wp-block-cover .wp-block-post-title {
    margin: 0;

    font-family: inherit;
    font-weight: 600;
    /* startseiten-ähnlich (nicht zu fett) */
    line-height: 1.12;
    letter-spacing: -0.01em;

    font-size: clamp(30px, 3.2vw, 44px);
    color: #1f1f1f;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

/* MOBILE */

@media (max-width: 650px) {

    .page-hero__card .wp-block-cover__inner-container {
        margin-left: auto !important;
        margin-right: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;

        width: calc(100% - 32px) !important;
        /* 16px links + 16px rechts */
        max-width: 520px;
        /* nicht zu breit */
        box-sizing: border-box;
    }


    .page-hero__card .wp-block-post-title {
        text-align: center;
    }

    .page-hero__card.wp-block-cover .wp-block-cover__inner-container {
        /* Card mobil zentriert */
        left: 50%;
        transform: translateX(-50%);
        right: auto;

        /* Breite kontrollieren */
        width: 92%;
        max-width: 320px;
        min-width: 0;

        bottom: 20px;

        padding: 22px 20px 22px;
        border-radius: 16px;
    }

    .page-hero__card.wp-block-cover .wp-block-post-title {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.15;
    }

    /* Akzent-Strich etwas kleiner */
    .page-hero__card.wp-block-cover .wp-block-cover__inner-container::before {
        width: 48px;
        margin-bottom: 12px;
    }
}


/* ========
Standardseiten Inhaltslayout 
======= */

/* 1) Außen-Wrapper: Breite + Zentrierung */
.default-content-block {
    width: min(75vw, 1180px);
    margin-left: auto !important;
    margin-right: auto !important;

    /* verhindert "nach rechts gerutscht" durch evtl. WP paddings */
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
}

/* Mobile Breite */
@media (max-width: 768px) {
    .default-content-block {
        width: 95vw;
    }
}

/* 2) Innen: WP Post-Content im Wrapper sauber halten */
.default-content-block .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box;
}

/* 3) Alles im Content untereinander, auch wenn WP is-layout-flex/is-nowrap setzt */
.default-content-block .wp-block-post-content,
.default-content-block .wp-block-group {
    flex-wrap: wrap !important;
}

.default-content-block .wp-block-post-content.is-layout-flex,
.default-content-block .wp-block-group.is-layout-flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px;
}

/* 4) Intro-Headline (dezent, mittig wie Startseite) */
.default-content-block h4 {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 6px !important;
    line-height: 1.35;
}

/* 5) Abschnitts-Cards: Wir stylen die inhaltlichen "Blöcke"
      -> Da dein HTML keine extra Wrapper pro Teil hat, machen wir es pragmatisch:
         - HR trennt optisch
         - Überschriften/Absätze bekommen passende Abstände
         - Listen kommen "clean" ohne Boxen
*/

/* Typo-Abstände (sauber, nicht zu luftig) */
.default-content-block p {
    margin: 0 !important;
    line-height: 1.65;
}

/* Titel-Zeilen (Starterpaket Teil 1/2 + Untertitel) */
.default-content-block p>strong {
    display: inline-block;
}

/* Mehr Luft zwischen logischen Blöcken (nach Titel/Untertitel) */
.default-content-block p:has(> strong) {
    margin-top: 6px !important;
}

/* 6) Listen: keine unnötigen Boxen, klassische Bullet-List wie im Screenshot 2 */
.default-content-block ul.wp-block-list {
    list-style: disc !important;
    padding-left: 1.25rem !important;
    margin: 10px 0 0 !important;

    display: block !important;
    /* killt ggf. grid-styles aus anderem CSS */
    gap: 0 !important;
}

.default-content-block ul.wp-block-list li {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;

    padding: 0 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.6;
    position: static !important;
}

/* falls irgendwo ::before Punkte reingedrückt wurden */
.default-content-block ul.wp-block-list li::before {
    content: none !important;
}

/* 7) HR/Separator als stilvolle Section-Trennung (Startseiten-Akzent) */
.default-content-block hr.wp-block-separator {
    border: 0 !important;
    height: 1px !important;
    background: rgba(0, 0, 0, 0.10) !important;
    margin: 22px 0 !important;
}

/* Dots-Style (WP): hübscher, aber nicht zu dominant */
.default-content-block hr.wp-block-separator.is-style-dots {
    height: auto !important;
    background: transparent !important;
    border: 0 !important;
    margin: 26px 0 !important;
    text-align: center;
    opacity: 1 !important;
}

.default-content-block hr.wp-block-separator.is-style-dots::before {
    content: "• • •" !important;
    letter-spacing: 10px;
    color: rgba(122, 30, 43, 0.45);
    /* Golf-Akzent */
    font-size: 18px;
}

/* 8) Button-Bereich: wie Startseite (zentriert, sauber) */
.default-content-block .wp-block-buttons {
    justify-content: center !important;
}

.default-content-block .wp-block-button__link {
    border-radius: 999px !important;
    padding: 14px 22px !important;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

/* etwas Luft über dem Button-Block */
.default-content-block .wp-block-buttons {
    margin-top: 8px !important;
}

/* =========================================
   Wiederverwendbare Content-Card 
   ========================================= */

.content-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;

    padding: clamp(22px, 2.6vw, 36px);

    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);

    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        border-color 200ms ease;

    box-sizing: border-box;
}

/* Hover – identisch zu Beitragskarten */
@media (hover:hover) {
    .content-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
        border-color: rgba(31, 106, 74, 0.45);
    }
}

/* Fokus / Accessibility */
.content-card:focus-within {
    border-color: rgba(31, 106, 74, 0.6);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

/* Mobile Feinschliff */
@media (max-width: 650px) {
    .content-card {
        padding: 20px 18px;
        border-radius: 16px;
    }
}


/* =========================================
   Golfclub – Content Banner
   ========================================= */

.golf-banner {
    /* Look wie Hero-Card / Aktuelles */
    background: #F3EFE6;
    /* warmes Beige */
    color: #1E1E1E;

    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 18px;

    padding: clamp(22px, 3vw, 44px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);

    position: relative;
    overflow: hidden;
    box-sizing: border-box;

    /* sanfte Animation */
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

/* Akzent-Strich oben links (wie bei Cards) */
.golf-banner::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 22px;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
    /* #7A1E2B */
}

/* etwas "Luft" wegen Akzentlinie */
.golf-banner>*:first-child {
    margin-top: 10px;
}

/* Typo im Banner */
.golf-banner h1,
.golf-banner h2,
.golf-banner h3,
.golf-banner h4 {
    color: #1E1E1E;
    margin-top: 0;
}

.golf-banner p {
    color: rgba(0, 0, 0, 0.78);
}

/* Links */
.golf-banner a {
    color: #7A1E2B;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* Buttons im Banner*/
.golf-banner .wp-block-button__link {
    background: #7A1E2B;
    color: #fff;

    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 700;

    border: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);

    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

@media (hover:hover) {
    .golf-banner:hover {
        transform: translateY(-2px);
        border-color: rgba(122, 30, 43, 0.35);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    }

    .golf-banner .wp-block-button__link:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
        filter: brightness(1.03);
    }
}

/* Mobile */
@media (max-width: 650px) {
    .golf-banner {
        border-radius: 16px;
        padding: 20px 18px;
    }

    .golf-banner::before {
        left: 18px;
        top: 16px;
        width: 56px;
    }
}

/* ================

Banner Ende 

============== */


/* ========
Standardseiten Inhaltslayout Ende
======= */

/* =========================================
   CF7 – Robust Layout (nur innerhalb .wpcf7)
   Nutzt .cf7-row / .cf7-col
   ========================================= */

/* Form insgesamt etwas freundlicher + "Card"-Look */
.wpcf7 {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.wpcf7 form.wpcf7-form {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 18px;
    padding: clamp(18px, 2.2vw, 28px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

/* ===== Layout-Helfer (NUR unsere Klassen) ===== */
.wpcf7 .cf7-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 14px;
    align-items: start;
}

.wpcf7 .cf7-col {
    min-width: 0;
    /* verhindert "zu schmal / Umbruch" */
}

/* Straße / Hausnummer & PLZ / Ort feinsteuern */
.wpcf7 .cf7-col-wide {
    grid-column: span 1;
}

.wpcf7 .cf7-col-narrow {
    grid-column: span 1;
}

/* Block-Elemente volle Breite */
.wpcf7 .cf7-block {
    margin: 0 0 14px;
}

.wpcf7 .cf7-note {
    margin: 6px 0 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(243, 239, 230, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Submit-Zeile */
.wpcf7 .cf7-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
}

/* ===== Labels sauber & klickbar ===== */
.wpcf7 label {
    display: block;
    font-weight: 650;
    color: rgba(0, 0, 0, 0.82);
    margin: 0;
}

/* Checkbox/Radio Labels von CF7 nicht "kaputt stylen" */
.wpcf7 .wpcf7-list-item {
    margin: 0.35rem 0.9rem 0.35rem 0 !important;
}

.wpcf7 .wpcf7-list-item label {
    font-weight: 550;
}

/* ===== Inputs ===== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    box-sizing: border-box;

    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.14);

    background: #F3EFE6;
    padding: 12px 14px;

    font-size: 16px;
    line-height: 1.25;
    color: rgba(0, 0, 0, 0.84);

    outline: none;
    transition: box-shadow 160ms ease, border-color 160ms ease, transform 160ms ease;
}

/* Textarea */
.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

/* Fokus: moderner, freundlich */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: rgba(31, 106, 74, 0.55);
    /* Golf-Grün */
    box-shadow: 0 0 0 4px rgba(31, 106, 74, 0.16);
}

/* Placeholder dezenter */
.wpcf7 ::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

/* ===== Buttons ===== */
.wpcf7 .wpcf7-submit {
    appearance: none;
    border: 0;
    border-radius: 999px;

    padding: 12px 18px;
    font-weight: 750;
    font-size: 16px;

    cursor: pointer;
    background: #7a1e2b;
    /* Akzent */
    color: #fff;

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

@media (hover:hover) {
    .wpcf7 .wpcf7-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
        filter: brightness(1.03);
    }
}

/* ===== Feedback / Errors ===== */
.wpcf7 .wpcf7-spinner {
    vertical-align: middle;
    margin-left: 10px;
}

.wpcf7 .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(243, 239, 230, 0.75);
    color: rgba(0, 0, 0, 0.80);
}

.wpcf7 form.invalid .wpcf7-response-output {
    border-color: rgba(122, 30, 43, 0.45);
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: rgba(31, 106, 74, 0.40);
}

.wpcf7 .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(122, 30, 43, 0.95);
}

.wpcf7 .wpcf7-form-control.wpcf7-not-valid {
    border-color: rgba(122, 30, 43, 0.60);
    box-shadow: 0 0 0 4px rgba(122, 30, 43, 0.12);
}

/* ===== Mobile: automatisch untereinander ===== */
@media (max-width: 720px) {
    .wpcf7 .cf7-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wpcf7 form.wpcf7-form {
        border-radius: 16px;
        padding: 18px;
    }
}


.cf7-block>p {
    margin: 0 0 14px !important;
}

.cf7-block>p>label {
    display: block;
    margin: 0 0 6px !important;
    /* weniger Abstand nach unten */
    font-weight: 700;
}

.cf7-block>p>br {
    display: none;
}


.cf7-block .wpcf7-form-control-wrap[data-name="radio-previous-club"],
.cf7-block .wpcf7-form-control-wrap[data-name="radio-membership"] {
    display: block;
    margin-top: 0 !important;
}


.cf7-block .wpcf7-form-control-wrap[data-name="radio-previous-club"] .wpcf7-radio,
.cf7-block .wpcf7-form-control-wrap[data-name="radio-membership"] .wpcf7-radio {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.cf7-block .wpcf7-form-control-wrap[data-name="radio-previous-club"] .wpcf7-list-item,
.cf7-block .wpcf7-form-control-wrap[data-name="radio-membership"] .wpcf7-list-item {
    display: block !important;
    margin: 0 !important;
}


/* -> wir machen die ganze Zeile klickbar/sauber, indem wir das Item wie ein „Row“ stylen */
.cf7-block .wpcf7-form-control-wrap[data-name="radio-previous-club"] .wpcf7-list-item {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

/* das Radio selbst */
.cf7-block .wpcf7-form-control-wrap[data-name="radio-previous-club"] input[type="radio"] {
    margin: 2px 0 0 0 !important;
    flex: 0 0 auto;
}

/* Text neben dem Radio */
.cf7-block .wpcf7-form-control-wrap[data-name="radio-previous-club"] .wpcf7-list-item-label {
    display: block;
    line-height: 1.35;
}

.cf7-block .wpcf7-form-control-wrap[data-name="radio-membership"] .wpcf7-list-item>label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 0 !important;
    font-weight: 550;
}

/* Radio im label */
.cf7-block .wpcf7-form-control-wrap[data-name="radio-membership"] .wpcf7-list-item>label input[type="radio"] {
    margin: 2px 0 0 0 !important;
    flex: 0 0 auto;
}

/* Text im label */
.cf7-block .wpcf7-form-control-wrap[data-name="radio-membership"] .wpcf7-list-item-label {
    display: block;
    line-height: 1.35;
}


/* =======
neues Latest posts css evtl. entfernen
========*/

/* Latest Posts – Mobile Breite wirklich 95% */
@media (max-width: 768px) {

    .wp-block-latest-posts {
        width: 95% !important;
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* manche Themes targeten das UL direkt */
    .wp-block-latest-posts>ul.golf-news-grid {
        width: 95% !important;
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* dein Grid selbst */
    ul.golf-news-grid.wp-block-latest-posts__list.is-grid {
        width: 95% !important;
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
}

/* Partnerlogos – einheitliche Logo-Kacheln */
.partner-logos .wp-block-image {
    /* Kachelgröße */
    width: clamp(190px, 18vw, 260px);
    height: 120px;

    /* saubere Anordnung */
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 !important;
    padding: 10px;

    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;
}

/* Das Bild selbst: immer gleich groß, ohne Verzerrung */
.partner-logos .wp-block-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    /* wichtig */
    object-position: center;
    display: block;
}

/* Falls Logos verlinkt sind: Link füllt die Kachel */
.partner-logos .wp-block-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* dezenter Hover */
@media (hover:hover) {
    .partner-logos .wp-block-image:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
        transition: transform 160ms ease, box-shadow 160ms ease;
    }
}

/* Mobil: etwas größere Kacheln + sauberer Umbruch */
@media (max-width: 768px) {
    .partner-logos .wp-block-image {
        width: calc(60% - 10px);
        height: 100px;
    }
}

@media (max-width: 420px) {
    .partner-logos .wp-block-image {
        width: 100%;
        height: 84px;
    }
}

/* verhindert horizontales Überlaufen */
html,
body {
    overflow-x: hidden;
}

.default-content-block {
    max-width: 100%;
}

.default-content-block img,
.default-content-block video,
.default-content-block iframe {
    max-width: 100%;
    height: auto;
}

/* lange Wörter/Links umbrechen */
.default-content-block {
    overflow-wrap: anywhere;
}

/* Der Partner-Logos-Block soll die Kacheln in Reihen umbrechen */
.partner-logos {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    /* Abstand zwischen Kacheln */
    width: 100%;
}

/* Falls WP/Theme “is-layout-flex” auf dem Container nutzt und irgendwo
   flex-direction: column erzwingt -> hier hart auf ROW zurücksetzen */
.partner-logos.is-layout-flex {
    flex-direction: row !important;
}

/* Wenn du in WordPress zusätzlich "Zeile" / Row-Blöcke innerhalb nutzt:
   auch diese Reihen wieder horizontal machen */
.partner-logos .wp-block-group.is-layout-flex,
.partner-logos .wp-block-columns {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    gap: 16px;
    justify-content: center;
    width: 100%;
}

/* Kacheln nicht schrumpfen lassen, sauber wrappen */
.partner-logos .wp-block-image {
    flex: 0 0 auto;
}

/* ===============================

Trennstrich .golf-divider

============================== */

.wp-block-separator.golf-divider {
    border: none;
    height: 1px;

    width: min(100%, 680px);
    margin: clamp(36px, 6vw, 64px) auto;

    /* dezenter Verlauf statt harter Linie */
    background: linear-gradient(to right,
            transparent,
            rgba(122, 30, 43, 0.45),
            /* Akzentfarbe */
            transparent);
}

.wp-block-separator.golf-divider.is-strong {
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            rgba(122, 30, 43, 0.75),
            transparent);
}

/* Mobile Feintuning */
@media (max-width: 650px) {
    .wp-block-separator.golf-divider {
        width: 100%;
        margin: 28px auto;
    }
}

/* === GLOBAL: Inhaltsbreite aller Seiten & Beiträge === */
:where(.page, .single) .entry-content.wp-block-post-content {
    max-width: 75vw;
    /* Desktop: 75% */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Große Screens  begrenzen */
@media (min-width: 1600px) {
    :where(.page, .single) .entry-content.wp-block-post-content {
        max-width: 1200px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    :where(.page, .single) .entry-content.wp-block-post-content {
        max-width: 95vw;
        /* Mobil: 95% */
        padding-left: 0;
        padding-right: 0;
    }
}


/* ================

Überschriften richtig formatieren

==================== */

h1 {
    hyphens: auto;
}

h2 {
    hyphens: auto;
}

.h-contact-form {
    color: #7A1E2B;
}

h3 {
    hyphens: auto;
}

h4 {
    hyphens: auto;
}

h5 {
    hyphens: auto;
}

h6 {
    hyphens: auto;
}

p {
    hyphens: auto;
}

/* /* =========================================
   Download-Kacheln – Modern & Theme-konform
   Wirkt NUR auf .download-tiles
   ========================================= */

/* Container */
.download-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    width: 100%;
    box-sizing: border-box;
}

/* Einzelne Kachel (kompletter Button) */
.download-tile {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px 22px;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;

    text-decoration: none;
    color: inherit;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;

    box-sizing: border-box;
}

/* Hover – wie Karten / Beiträge */
@media (hover:hover) {
    .download-tile:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
        border-color: rgba(31, 106, 74, 0.45);
        /* Golf-Grün */
    }
}

/* PDF-Icon links */
.download-icon {
    flex-shrink: 0;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f3efe6;
    color: #1f6a4a;
    /* Golf-Grün */
}

/* Textbereich */
.download-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Titel */
.download-title {
    font-size: 1.05rem;
    font-weight: 650;
    line-height: 1.3;
    color: #1f1f1f;
}

/* Meta / Hinweis */
.download-meta {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
}

/* Fokus (Accessibility / Keyboard) */
.download-tile:focus-visible {
    outline: none;
    border-color: rgba(31, 106, 74, 0.65);
    box-shadow: 0 0 0 3px rgba(31, 106, 74, 0.18);
}

/* Mobile Feinschliff */
@media (max-width: 650px) {
    .download-tiles {
        gap: 14px;
    }

    .download-tile {
        padding: 16px 16px;
    }

    .download-icon {
        width: 42px;
        height: 42px;
    }

    .download-title {
        font-size: 1rem;
    }
}

/* ===========================
Geschichte & Philosophie Galerie
============================= */

.story-slider {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    user-select: none;

    --gc-wine: #6b1f2a;
    --gc-green: #1f4d3a;

    --swiper-navigation-color: var(--gc-wine);
    --swiper-pagination-color: var(--gc-wine);
}

/* ================= SLIDES ================= */

.story-slider .swiper-slide {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 3rem;
    align-items: center;

    min-height: 540px;
    padding: 10px 0;
    box-sizing: border-box;
}

/* wichtig gegen „weißer Bereich/Overflow“ bei Grid */
.story-slider .swiper-slide>* {
    min-width: 0;
}

.story-slider .story-image {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
}

.story-slider .story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.story-slider .story-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 2.75rem;
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
    user-select: text;
}

/* ================= CONTROLS ================= */

.story-slider-controls {
    margin-top: 18px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    width: 100%;
}

/* Pfeile ganz außen */
.story-slider-controls .swiper-button-prev {
    justify-self: start;
}

.story-slider-controls .swiper-button-next {
    justify-self: end;
}

/* Swiper-Defaults neutralisieren + Design: NUR Pfeile */
.story-slider .swiper-button-prev,
.story-slider .swiper-button-next {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    margin: 0 !important;

    width: 44px;
    height: 44px;

    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;

    display: grid;
    place-items: center;

    opacity: 0.95;
}

/* Pfeil-Icon */
.story-slider .swiper-button-prev::after,
.story-slider .swiper-button-next::after {
    font-size: 22px;
    font-weight: 800;
    color: var(--swiper-navigation-color);
}

/* Hover dezenter Boost */
@media (hover:hover) {

    .story-slider .swiper-button-prev:hover,
    .story-slider .swiper-button-next:hover {
        opacity: 1;
    }
}

/* Disabled (z.B. erster/letzter Slide): sichtbar aber inaktiv */
.story-slider .swiper-button-disabled {
    opacity: 0.25 !important;
    pointer-events: none;
    cursor: default;
}

/* Pagination exakt mittig */
.story-slider .swiper-pagination {
    position: static !important;
    transform: none !important;
    margin: 0 !important;

    justify-self: center;
    width: auto;
    min-width: 64px;
    text-align: center;

    font-size: 0.95rem;
    font-weight: 600;

    background: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);

    color: var(--swiper-pagination-color);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .story-slider .swiper-slide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
    }

    .story-slider .story-image img {
        height: 280px;
    }

    .story-slider .story-card {
        padding: 1.6rem;
    }
}

@media (max-width: 480px) {

    .story-slider .swiper-button-prev,
    .story-slider .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .story-slider .swiper-button-prev::after,
    .story-slider .swiper-button-next::after {
        font-size: 18px;
    }
}


/* ===== SECTION PANEL ===== */
.story-section {
    width: min(92vw, 1320px);
    margin: 0 auto;
    padding: clamp(26px, 3.5vw, 44px) clamp(20px, 3.5vw, 44px);

    background: #f7f4ee;
    /* sehr dezentes, warmes Panel */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 26px;

    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.06);
}

/* Abstand zwischen Geschichte & Philosophie */
.story-section+.story-section {
    margin-top: clamp(40px, 7vw, 80px);
}

/* feine Trennlinie zwischen Panels */
.story-section+.story-section::before {
    content: "";
    display: block;
    width: min(140px, 32vw);
    height: 2px;
    margin: 0 auto clamp(18px, 3vw, 30px);
    background: rgba(107, 31, 42, 0.45);
    border-radius: 999px;
}

/* ===== HEADER ===== */
.story-section-head {
    margin-bottom: clamp(22px, 4vw, 36px);
    text-align: center;
}

/* Hauptüberschrift */
.story-section-title {
    margin: 0;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.12;
    font-weight: 650;
    letter-spacing: -0.015em;
    color: #1f1f1f;
}

/* Akzentlinie unter der Headline */
.story-section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: rgba(107, 31, 42, 0.75);
}

/* Untertitel */
.story-section-subtitle {
    margin: 14px auto 0;
    max-width: 68ch;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.62);
}

/* Mobile Feinschliff */
@media (max-width: 650px) {
    .story-section {
        border-radius: 18px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    }

    .story-section-title::after {
        width: 56px;
    }
}

/* Story-Slider soll immer die volle verfügbare Breite nutzen */
.story-section,
.story-slider {
    width: 100% !important;
    max-width: 1320px;
    /* dein gewünschtes Limit */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Wichtig gegen Flex/Grid Shrink in WP-Group/Container */
.story-section {
    display: block !important;
}

.story-slider {
    min-width: 0 !important;
}

/* Falls ein WP-Wrapper den Slider zentriert und schrumpfen lässt */
.story-section>* {
    max-width: none;
}

/* =========================================
   Story Download (Prospekt) – passend zum Slider
   ========================================= */

.story-download {
    max-width: 1320px;
    margin: 18px auto 0;
    box-sizing: border-box;
}

.story-download__btn {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    box-sizing: border-box;

    padding: 16px 18px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);

    text-decoration: none;
    color: inherit;

    /* ruhiger “Card”-Look */
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.story-download__icon {
    flex: 0 0 auto;

    width: 46px;
    height: 46px;
    border-radius: 14px;

    display: grid;
    place-items: center;

    background: rgba(243, 239, 230, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);

    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 0.85rem;

    color: var(--gc-wine, #6b1f2a);
}

.story-download__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    /* verhindert Umbruch-Probleme */
}

.story-download__title {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
}

.story-download__meta {
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.62);
}

.story-download__arrow {
    margin-left: auto;
    flex: 0 0 auto;

    font-size: 1.2rem;
    font-weight: 700;

    color: var(--gc-wine, #6b1f2a);
}

@media (hover:hover) {
    .story-download__btn:hover {
        transform: translateY(-2px);
        border-color: rgba(107, 31, 42, 0.28);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
    }
}

/* Mobile */
@media (max-width: 650px) {
    .story-download {
        margin-top: 14px;
    }

    .story-download__btn {
        padding: 14px 14px;
        border-radius: 16px;
    }

    .story-download__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .story-download__title {
        font-size: 1rem;
    }
}

/* 

/* =========================================
   Naturverbundenheit – Card Section
   ========================================= */

.nature-card {
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Große Section-Card */
.nature-card__inner {
    background: #ffffff;
    /* warmes Beige wie bei dir */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    padding: clamp(22px, 3vw, 44px);
    box-sizing: border-box;
}

/* Header */
.nature-card__header {
    max-width: 820px;
    margin: 0 auto 36px;
    text-align: center;
}

.nature-card__header h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.nature-card__header p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.72);
}

/* Content: Logo + Video */
.nature-card__content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 44px;
    align-items: center;
}

/* Logo */
.nature-card__logo {
    display: flex;
    justify-content: center;
}

.nature-card__logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
}

/* Video Wrapper 16:9, ohne "doppelte" Schatten */
.nature-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    /* falls Video lädt */
}

.nature-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* : Video als eigene Mini-Card innerhalb der großen Card */
.nature-card__video {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    padding: px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* ================= Responsive ================= */

@media (max-width: 900px) {
    .nature-card {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .nature-card__content {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .nature-card__logo img {
        max-width: 220px;
    }

    .nature-card__video {
        padding: 10px;
    }
}

@media (hover:hover) {
    .nature-card__inner {
        transition:
            transform 220ms ease,
            box-shadow 220ms ease,
            border-color 220ms ease;
    }

    .nature-card__inner:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
        border-color: rgba(31, 106, 74, 0.35);
        /* dezenter Golf-Grün-Akzent */
    }
}

@media (hover:hover) {
    .nature-card__inner:hover .nature-card__video {
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
        transition: box-shadow 220ms ease;
    }
}

.nature-card__thanks {
    margin-top: 1.75rem;
    text-align: center;

    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65);

    /* kleine optische Abgrenzung */
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nature-card__thanks strong {
    font-weight: 600;
    color: #1f4d3a;
    /* Golf-Grün */
}

/* =========================================
   Card: Blühpakt / Auszeichnung (weiß)
   ========================================= */

.golf-card.golf-award-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;

    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.golf-award-card .golf-card-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.golf-award-card .golf-card-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

/* feine Akzentlinie */
.golf-award-card .golf-card-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

/* Layout: Text links, Bild rechts */
.golf-award-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.golf-award-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-award-text p:last-child {
    margin-bottom: 0;
}

/* Media */
.golf-award-media {
    margin: 0;
}

.golf-award-media img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

/* Namen unter dem Bild */
.golf-award-caption {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.65);
}

/* Button unten (zentriert) */
.golf-award-footer {
    margin-top: clamp(18px, 2.5vw, 26px);
    display: flex;
    justify-content: center;
}

.golf-award-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 22px;
    border-radius: 999px;

    background: #7A1E2B !important;
    color: #F3EFE6 !important;
    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

@media (hover:hover) {
    .golf-award-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
        filter: brightness(1.03);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .golf-award-grid {
        grid-template-columns: 1fr;
    }

    .golf-award-card {
        border-radius: 18px;
    }

    .golf-award-media img {
        border-radius: 16px;
    }
}

/* =========================
   Hover-Effekt für Award-Card
   ========================= */

@media (hover:hover) {
    .golf-card.golf-award-card {
        transition:
            transform 220ms ease,
            box-shadow 220ms ease;
    }

    .golf-card.golf-award-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
    }
}

/* ===========================
   Golf & Natur – Galerie (Card Look)
   =========================== */

.golf-gallery-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 5vw, 60px) auto 0;

    padding: clamp(22px, 3.5vw, 40px);

    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 26px;

    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {
    .golf-gallery-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
        border-color: rgba(122, 30, 43, 0.20);
    }
}

/* Header */
.golf-gallery-head {
    text-align: center;
    margin-bottom: clamp(18px, 3vw, 30px);
}

.golf-gallery-title {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.12;
    font-weight: 650;
    letter-spacing: -0.015em;
    color: #1f1f1f;
}

.golf-gallery-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-gallery-subtitle {
    margin: 12px auto 0;
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

/* Grid */
.golf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.4vw, 18px);
}

/* Items */
.golf-gallery-item {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    transform: translateZ(0);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.golf-gallery-item img {
    width: 100%;
    height: 210px;
    display: block;
    object-fit: cover;
}

@media (hover:hover) {
    .golf-gallery-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
        border-color: rgba(31, 106, 74, 0.30);
        filter: brightness(1.02);
    }
}

.golf-gallery-item:focus-visible {
    outline: none;
    border-color: rgba(31, 106, 74, 0.55);
    box-shadow: 0 0 0 4px rgba(31, 106, 74, 0.16), 0 18px 42px rgba(0, 0, 0, 0.14);
}

/* Responsive */
@media (max-width: 1100px) {
    .golf-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .golf-gallery-item img {
        height: 200px;
    }
}

@media (max-width: 780px) {
    .golf-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .golf-gallery-item img {
        height: 190px;
    }
}

@media (max-width: 480px) {
    .golf-gallery-card {
        border-radius: 18px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    }

    .golf-gallery-grid {
        grid-template-columns: 1fr;
    }

    .golf-gallery-item img {
        height: 220px;
    }
}

/* =========================
   Golfregion – Cards Tiles
   ========================= */

.coop-section {
    width: min(92vw, 1320px);
    margin: clamp(28px, 5vw, 60px) auto;
    box-sizing: border-box;
}

/* Card-Panel */
.coop-card {
    width: 100%;
    margin: 0 auto;
    padding: clamp(26px, 3.5vw, 44px) clamp(20px, 3.5vw, 44px);

    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 26px;

    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

/* Abstand zwischen den beiden Cards */
.coop-card+.coop-card {
    margin-top: clamp(40px, 7vw, 80px);
}

/* feine Trennlinie zwischen Cards */
.coop-card+.coop-card::before {
    content: "";
    display: block;
    width: min(140px, 32vw);
    height: 2px;
    margin: 0 auto clamp(18px, 3vw, 30px);
    background: rgba(122, 30, 43, 0.45);
    border-radius: 999px;
}

/* Card Hover (dezent) */
@media (hover:hover) {
    .coop-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
        border-color: rgba(122, 30, 43, 0.20);
    }
}

/* Header */
.coop-head {
    margin-bottom: clamp(22px, 4vw, 36px);
    text-align: center;
}

.coop-title {
    margin: 0;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.12;
    font-weight: 650;
    letter-spacing: -0.015em;
    color: #1f1f1f;
}

.coop-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.coop-subtitle {
    margin: 14px auto 0;
    max-width: 68ch;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.62);
}

/* Beschreibungstext */
.coop-text {
    max-width: 90ch;
    margin: 0 auto clamp(18px, 3vw, 28px);
    color: rgba(0, 0, 0, 0.78);
    line-height: 1.65;
}

.coop-text p {
    margin: 0 0 12px;
}

.coop-text p:last-child {
    margin-bottom: 0;
}

/* =========================
   Tiles Grid
   ========================= */

.coop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

/* Tile */
.coop-tile {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    min-height: 290px;

    text-decoration: none;
    color: inherit;

    cursor: pointer;

    transform: translateZ(0);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

/* WICHTIG */
.coop-tile>* {
    min-width: 0;
}

/* Bildbereich */
.coop-tile-media {
    margin: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.coop-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body */
.coop-tile-body {
    display: flex;
    flex-direction: column;
    padding: 14px;
    height: 50%;
}

/* Benefit*/
.coop-benefit {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 12px;

    font-weight: 600;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.78);
}

.coop-club-wrap {
    margin-top: auto;
    /* DAS ist der Schlüssel */
    padding-top: 14px;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
    /* dezenter Trennstrich */
}

/* Clubname Ort */
.coop-club {
    margin: 0;
    font-weight: 700;
    line-height: 1.35;
    color: #1f1f1f;
}

.coop-loc {
    margin: 4px 0 0;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.55);
}

/* Tile Hover */
@media (hover:hover) {
    .coop-tile:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
        border-color: rgba(31, 106, 74, 0.35);
        filter: brightness(1.01);
    }
}

.coop-tile:focus-within {
    border-color: rgba(31, 106, 74, 0.55);
    box-shadow: 0 0 0 4px rgba(31, 106, 74, 0.16), 0 18px 42px rgba(0, 0, 0, 0.14);
}

/* Logo-Kachel */
.coop-tile.is-logo {
    grid-template-rows: 1fr;
    min-height: 290px;
    display: grid;
    place-items: center;
    padding: 18px;
    background: #F9EACB !important;
}

.coop-tile.is-logo .coop-tile-media {
    height: auto;
    width: 100%;
    display: grid;
    place-items: center;
}

.coop-tile.is-logo .coop-tile-media img {
    width: min(88%, 260px);
    height: auto;
    object-fit: contain;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1100px) {
    .coop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .coop-card {
        border-radius: 18px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    }

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

/* =========================
   Image-heavy Tiles (Golfregion)
   ========================= */

.coop-tile.is-image-heavy {
    display: flex;
    flex-direction: column;
}

/* Bild bekommt mehr Raum */
.coop-tile.is-image-heavy .coop-tile-media {
    height: 260px;
    /* ← größer als normal */
}

/* Textbereich kompakt unten */
.coop-tile.is-image-heavy .coop-tile-body {
    padding: 14px 18px 16px;
    margin-top: auto;
    /* klebt unten */
    background: #fff;
}

/* Trennlinie über Clubname */
.coop-tile.is-image-heavy .coop-tile-body::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.08);
}

/* Typografie unten */
.coop-tile.is-image-heavy .coop-club {
    font-weight: 700;
    margin: 0;
}

.coop-tile.is-image-heavy .coop-loc {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
    .coop-tile.is-image-heavy .coop-tile-media {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .coop-tile.is-image-heavy .coop-tile-media {
        height: 190px;
    }
}

/* =========================
   Universelle Wrapper-Card
   ========================= */

.golf-wrapper-card {

    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;

    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

/* Hover-Effekt */
@media (hover:hover) {
    .golf-wrapper-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
    }
}

/* Mobile leicht kompakter */
@media (max-width:900px) {
    .golf-wrapper-card {
        border-radius: 18px;
    }
}

/*Iframe*/
/* Gesamte Card */
.golf-wrapper-card {
    align-items: stretch;
    /* wichtig: gleiche Höhe für Spalten */
}

/* Rechte Spalte (Map-Spalte) */
.golf-wrapper-card>.wp-block-column:last-child {
    position: relative;
    min-height: 100%;
}

/* Google Maps iframe */
.golf-wrapper-card iframe {
    position: absolute;
    inset: 0;
    /* top/right/bottom/left = 0 */
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}

/* ===========================
   Preis-Kacheln (Overview)
   =========================== */

.price-section {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 26px;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.price-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.price-title {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.12;
    font-weight: 650;
    letter-spacing: -0.015em;
    color: #1f1f1f;
}

.price-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.price-subtitle {
    margin: 14px auto 0;
    max-width: 70ch;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.62);
}

/* Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

/* Kachel */
.price-tile {
    display: grid;
    grid-template-rows: auto 1fr;
    text-decoration: none;
    color: inherit;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    transition: transform 180ms ease, box-shadow 180ms ease;
}

@media (hover:hover) {
    .price-tile:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
    }
}

/* Inhalt */
.price-tile-top {
    padding: 18px 18px 14px;
}

.price-kicker {
    margin: 0 0 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(122, 30, 43, 0.85);
}

.price-name {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1f1f1f;
}

.price-desc {
    margin: 0;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.70);
}

/* Bottom */
.price-tile-bottom {
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.price-label {
    color: rgba(0, 0, 0, 0.58);
    font-weight: 600;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 750;
    color: #7A1E2B;
    white-space: nowrap;
}

.price-note {
    margin: 0;
    font-weight: 650;
    color: rgba(0, 0, 0, 0.70);
}

/* Hinweis unten */
.price-hint {
    margin: clamp(14px, 2vw, 18px) auto 0;
    max-width: 80ch;
    text-align: center;
    color: rgba(0, 0, 0, 0.60);
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px) {
    .price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .price-section {
        border-radius: 18px;
    }

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

.price-section {
    width: 100% !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    /* : wenn WP einen schmalen Content-Wrapper hat */
    display: block !important;
    box-sizing: border-box;
}

/* Wenn WP-Container innere max-widths auf Kinder setzt */
.price-section>* {
    max-width: none !important;
}


/* =========================
   Golf Preis Tabelle
   Klasse: golf-price-table
   ========================= */

figure.wp-block-table.golf-price-table {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);

    padding: clamp(14px, 2.5vw, 22px);
    box-sizing: border-box;

    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Tabelle */
figure.wp-block-table.golf-price-table table {
    width: 100%;
    min-width: 720px;
    /* wichtig gegen gequetschte Mobile-Ansicht */
    border-collapse: collapse;
    table-layout: auto;
}

/* =========================
   Tabellenkopf
   ========================= */

figure.wp-block-table.golf-price-table thead th {
    padding: 16px 18px;
    text-align: left;

    background: #f7f4ee;
    color: #1f1f1f;

    font-weight: 650;
    font-size: 0.95rem;
    line-height: 1.35;

    border-bottom: 2px solid rgba(0, 0, 0, 0.10);

    white-space: nowrap;
    /* keine unschönen Umbrüche */
}

/* Preis-Spalten im Header zentrieren */
figure.wp-block-table.golf-price-table thead th:not(:first-child) {
    text-align: center;
}

/* =========================
   Tabellenkörper
   ========================= */

figure.wp-block-table.golf-price-table tbody td {
    padding: 16px 18px;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.85);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: middle;
}

/* Letzte Zeile ohne Linie */
figure.wp-block-table.golf-price-table tbody tr:last-child td {
    border-bottom: none;
}

/* Erste Spalte (Bezeichnung) */
figure.wp-block-table.golf-price-table tbody td:first-child {
    font-weight: 500;
    width: 55%;
}

/* Preis-Spalten */
figure.wp-block-table.golf-price-table tbody td:not(:first-child) {
    text-align: center;
    font-weight: 650;
    color: #1f1f1f;
    white-space: nowrap;
    /* 29 € statt Umbruch */
}

/* Zebra-Stil */
figure.wp-block-table.golf-price-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.025);
}

/* Hervorhebungen im Text */
figure.wp-block-table.golf-price-table strong {
    color: #7A1E2B;
    font-weight: 700;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 720px) {
    figure.wp-block-table.golf-price-table {
        padding: 12px;
        border-radius: 18px;
    }

    figure.wp-block-table.golf-price-table thead th,
    figure.wp-block-table.golf-price-table tbody td {
        padding: 14px 12px;
        font-size: 0.94rem;
    }

    figure.wp-block-table.golf-price-table table {
        min-width: 680px;
        /* mobil leicht kleiner, aber nicht gequetscht */
    }
}

/* ===== Excursion Grid (Cards) ===== */
.golf-excursion-grid {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    gap: clamp(18px, 3vw, 30px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Card */
.golf-excursion-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    padding: clamp(18px, 2.5vw, 28px);
    text-align: center;
    box-sizing: border-box;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

@media (hover:hover) {
    .golf-excursion-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    }
}

.golf-excursion-card h3 {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 650;
    color: #1f1f1f;
}

.golf-excursion-card p {
    margin: 0;
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.6;
    font-size: 0.95rem;
}

.golf-excursion-card img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 12px;
}

/* Hero */
.golf-page-hero {
    text-align: center;
    margin-bottom: clamp(22px, 3vw, 34px);
}

.golf-page-hero h1 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
}

.golf-page-hero p {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.72);
}

/* Karte */
.golf-excursion-map {
    width: min(92vw, 1180px);
    margin: clamp(28px, 4vw, 48px) auto;
    text-align: center;
}

/* Card-Link ohne klassischen Link-Look */
a.golf-excursion-card {
    text-decoration: none;
    color: inherit;
}

/* Sicherheit: falls Theme h3/p innerhalb von Links styled */
a.golf-excursion-card h3,
a.golf-excursion-card p {
    text-decoration: none;
    color: inherit;
}


/* =========================
   Ferienwohnungen – Card + Tiles
   ========================= */

.golf-card.golf-stays-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

/* Head */
.golf-stays-head {
    text-align: center;
    margin-bottom: clamp(14px, 2.2vw, 24px);
}

.golf-stays-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-stays-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-stays-subtitle {
    margin: 12px auto 0;
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

/* Intro */
.golf-stays-intro {
    max-width: 80ch;
    margin: 0 auto clamp(18px, 2.5vw, 26px);
    color: rgba(0, 0, 0, 0.82);
    line-height: 1.65;
}

/* Grid */
.golf-stays-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

/* Tile */
.golf-stay-tile {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

@media (hover:hover) {
    .golf-stay-tile:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
    }
}

.golf-stay-name {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f1f1f;
}

.golf-stay-host {
    margin: 0 0 10px;
    color: rgba(0, 0, 0, 0.62);
}

.golf-stay-addr {
    margin: 0 0 10px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.82);
}

.golf-stay-meta {
    margin: 0 0 10px;
    color: rgba(0, 0, 0, 0.82);
}

.golf-stay-meta a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.golf-stay-note {
    margin: 0 0 14px;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.45;
}

/* Button/Link unten “klebt” nach unten */
.golf-stay-actions {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.golf-stay-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;

    background: #7A1E2B;
    color: #F3EFE6;
    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

@media (hover:hover) {
    .golf-stay-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
        filter: brightness(1.03);
    }
}

/* Footer Link */
.golf-stays-footer {
    margin-top: clamp(18px, 2.6vw, 28px);
    display: flex;
    justify-content: center;
}

.golf-stays-more {
    color: #7A1E2B;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(122, 30, 43, 0.35);
}

/* Responsive */
@media (max-width: 980px) {
    .golf-stays-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .golf-stays-grid {
        grid-template-columns: 1fr;
    }
}

.golf-stay-media {
    margin: 0 0 14px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.golf-stay-media img {
    width: 100%;
    height: 180px;
    /* Bildhöhe in der Kachel */
    object-fit: cover;
    display: block;
}

/* =========================
   Wohnmobilstellplätze – Facts Layout
   
   ========================= */


/* Facts Grid */
.golf-rv-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 18px);
    margin-top: clamp(10px, 2vw, 16px);
}

/* einzelne Fact-Kachel */
.golf-rv-fact {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease;
    box-sizing: border-box;
}

@media (hover:hover) {
    .golf-rv-fact:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
    }
}

.golf-rv-label {
    margin: 0 0 6px 0;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.golf-rv-value {
    margin: 0;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.86);
    line-height: 1.35;
}

.golf-rv-note {
    margin: 8px 0 0 0;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.4;
}

/* CTA unten (zentriert, wie bei dir) */
.golf-rv-footer {
    margin-top: clamp(18px, 2.5vw, 26px);
    display: flex;
    justify-content: center;
}

/* etwas kleiner als Award-Button */
.golf-rv-btn {
    padding: 13px 22px;
}

/* Responsive */
@media (max-width: 980px) {
    .golf-rv-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .golf-rv-facts {
        grid-template-columns: 1fr;
    }
}

/* Zusatzinfos unter den Facts */
.golf-rv-notes {
    margin-top: clamp(16px, 2.4vw, 22px);
    padding: 16px 18px;

    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;

    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;

    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-rv-notes p {
    margin: 0 0 10px 0;
}

.golf-rv-notes p:last-child {
    margin-bottom: 0;
}

.golf-rv-notes strong {
    color: #7A1E2B;
    font-weight: 700;
}

/* =========================
   Golf Lernen – Cards / Programm / Termine
   ========================= */

.golf-card.golf-learn-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;

    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {
    .golf-card.golf-learn-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        border-color: rgba(31, 106, 74, 0.22);
    }
}

.golf-learn-card .golf-card-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.golf-learn-card .golf-card-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-learn-card .golf-card-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-card-subtitle {
    margin: 12px auto 0;
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

.golf-learn-bullets {
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-learn-bullets li {
    margin: 0 0 8px 0;
}

.golf-learn-bullets li:last-child {
    margin-bottom: 0;
}

.golf-learn-cta {
    margin-top: clamp(16px, 2.5vw, 22px);
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.golf-learn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid rgba(122, 30, 43, 0.35);
    text-decoration: none;
    color: #7A1E2B;
    font-weight: 650;
    background: rgba(243, 239, 230, 0.55);
}

@media (hover:hover) {
    .golf-learn-link:hover {
        filter: brightness(1.02);
        transform: translateY(-1px);
        transition: transform 160ms ease, filter 160ms ease;
    }
}

/* Programm-Kacheln */
.golf-program-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 18px);
}

.golf-program-item {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.golf-program-item h3 {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
    line-height: 1.25;
}

.golf-program-item p {
    margin: 0;
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.55;
}

/* Termine */
.golf-dates-list {
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-steps {
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.82);
}

.golf-steps li {
    margin: 0 0 10px 0;
}

.golf-steps li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .golf-program-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   Programm-Accordion
   ========================= */

.golf-program-accordion {
    display: grid;
    gap: 12px;
}

/* Item im “Kachel”-Look */
.golf-acc-item {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Hover */
@media (hover:hover) {
    .golf-acc-item:hover {
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
        transform: translateY(-1px);
        transition: transform 160ms ease, box-shadow 160ms ease;
    }
}

/* Summary-Zeile */
.golf-acc-summary {
    list-style: none;
    /* Firefox */
    cursor: pointer;

    display: grid;
    grid-template-columns: 32px 1fr 26px;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;
}

/* Standard-Disclosure-Arrow entfernen */
.golf-acc-summary::-webkit-details-marker {
    display: none;
}

.golf-acc-item>summary {
    list-style: none;
}

/* Icon */
.golf-acc-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(122, 30, 43, 0.10);
    color: #7A1E2B;
    font-size: 16px;
}

/* Titel */
.golf-acc-title {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.84);
    line-height: 1.25;
}

/* Toggle (Plus/Minus) */
.golf-acc-toggle {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.golf-acc-toggle::before,
.golf-acc-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #7A1E2B;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.golf-acc-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Wenn offen: Minus */
.golf-acc-item[open] .golf-acc-toggle::after {
    display: none;
}

/* Content */
.golf-acc-content {
    padding: 0 16px 16px 60px;
    /* links eingerückt unter Titel */
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.6;
}

.golf-acc-content p {
    margin: 0;
}

/* Fokus sichtbar */
.golf-acc-summary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(31, 106, 74, 0.14);
}

.golf-acc-has-bg {
    position: relative;
    overflow: hidden;
}

.golf-acc-has-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: var(--acc-bg);
    background-size: cover;
    background-position: center;

    opacity: 0.12;
}

.golf-learn-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.golf-learn-media img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

@media (max-width:900px) {
    .golf-learn-grid {
        grid-template-columns: 1fr;
    }
}

.golf-section-image {
    width: min(92vw, 1320px);
    margin: 40px auto;
}

.golf-section-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.10);
}

.cf7-block .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf7-block .wpcf7-list-item {
    margin: 0;
}

.cf7-block .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

/* =========================
   Neumitgliederbetreuung – Card
   ========================= */

.golf-card.golf-neumi-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;

    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

/* Head wie bei deinen Cards */
.golf-neumi-card .golf-card-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.golf-neumi-card .golf-card-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-neumi-card .golf-card-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-neumi-card .golf-card-subtitle {
    margin: 14px auto 0;
    max-width: 70ch;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.62);
}

/* 2-Spalten-Layout: Text + Logo */
.golf-neumi-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
    /* statt start */
}

/* Text */
.golf-neumi-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-neumi-list {
    margin: 0 0 14px 0;
    padding-left: 1.1em;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-neumi-note {
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.72);
}

/* Logo */
.golf-neumi-logo {
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: clamp(14px, 2vw, 22px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.golf-neumi-logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Button (an deine Farben angelehnt) */
.golf-neumi-actions {
    margin-top: 18px;
}

.golf-neumi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;

    background: #7A1E2B;
    color: #F3EFE6;
    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

@media (hover:hover) {
    .golf-neumi-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
        filter: brightness(1.03);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .golf-neumi-grid {
        grid-template-columns: 1fr;
    }

    .golf-card.golf-neumi-card {
        border-radius: 18px;
    }

    .golf-neumi-logo {
        border-radius: 16px;
    }
}


.golf-neumi-block {
    margin-top: 24px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-neumi-coaches {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.golf-neumi-subtitle {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f1f1f;
}

.golf-neumi-list {
    margin: 0;
    padding-left: 1.1em;
    line-height: 1.7;
}

.golf-neumi-footer {
    margin-top: clamp(18px, 2.5vw, 26px);
    display: flex;
    justify-content: center;
}

/* =========================
   Platzreife – Cards (im Theme-Stil)
========================= */

.golf-card.golf-pr-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.golf-pr-card .golf-card-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.golf-pr-card .golf-card-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-pr-card .golf-card-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-card-subtitle {
    margin: 12px auto 0;
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

/* HERO Layout */
.golf-pr-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.golf-pr-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-pr-cta {
    margin-top: 14px;
    display: flex;
    justify-content: flex-start;
}

.golf-pr-media {
    margin: 0;
}

.golf-pr-media img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

/* Video */
.golf-pr-video-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.golf-pr-video-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

.golf-pr-note {
    margin: 14px 0 0;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

/* Info-Grid */
.golf-pr-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 2vw, 22px);
}

.golf-pr-info {
    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 16px 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.golf-pr-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
    font-weight: 650;
}

.golf-pr-info p {
    margin: 0;
    color: rgba(0, 0, 0, 0.78);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px) {
    .golf-pr-hero {
        grid-template-columns: 1fr;
    }

    .golf-pr-cta {
        justify-content: center;
    }

    .golf-pr-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .golf-pr-info-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   18-Loch Meisterschaftsplatz
   Intro + Bahn-Cards
   ========================= */

.golf-card.golf-course-intro-card,
.golf-card.golf-hole-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {

    .golf-card.golf-course-intro-card:hover,
    .golf-card.golf-hole-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        border-color: rgba(31, 106, 74, 0.22);
    }
}

/* Head */
.golf-course-intro-card .golf-card-head,
.golf-hole-card .golf-card-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.golf-course-intro-card .golf-card-title,
.golf-hole-card .golf-card-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-course-intro-card .golf-card-title::after,
.golf-hole-card .golf-card-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-card-subtitle {
    margin: 12px auto 0;
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

/* Intro */
.golf-course-intro-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-course-intro-text p:last-child {
    margin-bottom: 0;
}

.golf-course-intro-actions {
    margin-top: clamp(20px, 2.8vw, 28px);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* Bahn-Cards */
.golf-hole-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.golf-hole-card--image-right .golf-hole-grid {
    grid-template-columns: 1fr 1fr;
}

.golf-hole-title {
    margin: 0 0 14px 0;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.2;
    font-weight: 700;
    color: #1f1f1f;
}

.golf-hole-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

/* Bild */
.golf-hole-media {
    margin: 0;
}

.golf-hole-media img {
    width: 100%;
    height: auto;
    /* Original-Seitenverhältnis */
    display: block;
    object-fit: contain;
    /* nichts abschneiden */

    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

/* Video */
.golf-hole-video {
    margin-top: 16px;
}

.golf-hole-video iframe {
    width: 100%;
    height: 340px;
    /* gleiche Höhe wie Bild */
    display: block;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    background: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .golf-hole-grid {
        grid-template-columns: 1fr;
    }

    .golf-hole-media img,
    .golf-hole-video iframe {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .golf-course-intro-actions {
        flex-direction: column;
        align-items: stretch;
    }
}


/* Einbettungen von Youtube/Google usw */

.embed iframe {
    display: none;
}

.embed.is-loaded iframe {
    display: block;
    width: 100%;
}

.embed.is-loaded .embed__placeholder {
    display: none;
}

.embed__placeholder {
    padding: 24px;
    text-align: center;
    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
}

.embed__placeholder button {
    margin-top: 12px;
}



/* =========================
   Kurzplatz – Video Grid
   ========================= */

.golf-card.golf-kurzplatz-videos-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.golf-kurzplatz-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 28px);
}

.golf-kurzplatz-video-item {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.golf-kurzplatz-video-item h3 {
    margin: 0 0 12px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.25;
}

/* Video */
.golf-kurzplatz-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    background: #000;
}

/* Consent Placeholder */
.golf-kurzplatz-video .embed__placeholder {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;

    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.golf-kurzplatz-video .embed__placeholder button {
    margin-top: 12px;
}

/* Falls dein Consent-Script is-loaded setzt */
.golf-kurzplatz-video.embed iframe {
    display: none;
}

.golf-kurzplatz-video.embed.is-loaded iframe {
    display: block;
}

.golf-kurzplatz-video.embed.is-loaded .embed__placeholder {
    display: none;
}

/* Responsive */
@media (max-width: 820px) {
    .golf-kurzplatz-video-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ProShop – Card + Galerie
   ========================= */

.golf-card.golf-proshop-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {
    .golf-card.golf-proshop-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        border-color: rgba(31, 106, 74, 0.22);
    }
}

/* Info-Block */
.golf-proshop-info {
    margin-bottom: clamp(22px, 3vw, 30px);
}

.golf-proshop-hours {
    max-width: 760px;
    margin: 0 auto;
    padding: 18px 20px;

    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);

    text-align: center;
}

.golf-proshop-hours h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f1f1f;
}

.golf-proshop-hours p {
    margin: 0 0 8px 0;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.82);
}

.golf-proshop-hours p:last-child {
    margin-bottom: 0;
}

/* Galerie */
.golf-proshop-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.golf-proshop-item {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.golf-proshop-item img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
    transition: transform 220ms ease;
}

@media (hover:hover) {
    .golf-proshop-item:hover img {
        transform: scale(1.03);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .golf-proshop-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .golf-proshop-item img {
        height: 220px;
    }
}

@media (max-width: 560px) {
    .golf-proshop-gallery {
        grid-template-columns: 1fr;
    }

    .golf-proshop-item img {
        height: 240px;
    }
}

.golf-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.golf-lightbox.active {
    display: flex;
}

.golf-lightbox-image {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
}

.golf-lightbox button {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.golf-lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 46px;
}

.golf-lightbox-prev {
    left: 30px;
}

.golf-lightbox-next {
    right: 30px;
}

.golf-gallery-item {
    cursor: zoom-in;
    display: block;
}

/* =========================
   Firmen-Events / Team-Building
========================= */

.golf-card.golf-event-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {
    .golf-card.golf-event-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        border-color: rgba(31, 106, 74, 0.22);
    }
}

/* Head */
.golf-event-card .golf-card-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.golf-event-card .golf-card-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-event-card .golf-card-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-event-card .golf-card-subtitle {
    margin: 12px auto 0;
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

/* =========================
   Intro / Hero
========================= */

.golf-event-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.golf-event-hero-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-event-hero-text p:last-child {
    margin-bottom: 0;
}

.golf-event-hero-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
}

.golf-event-hero-media {
    margin: 0;
}

.golf-event-hero-media img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

/* =========================
   Bausteine-Grid
========================= */

.golf-event-block-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

.golf-event-block-item {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.golf-event-block-item h3 {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
    line-height: 1.25;
    color: #7A1E2B;
}

.golf-event-block-item p {
    margin: 0;
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.55;
}

/* =========================
   Info-Card
========================= */

.golf-event-info-text {
    max-width: 85ch;
    margin: 0 auto;
}

.golf-event-info-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-event-info-text p:last-child {
    margin-bottom: 0;
}

/* =========================
   Highlight-Card
========================= */

.golf-event-highlight-card {
    background: #f7f4ee;
}

.golf-event-highlight-content {
    max-width: 85ch;
    margin: 0 auto;
}

.golf-event-highlight-content p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-event-highlight-content p:last-child {
    margin-bottom: 0;
}

/* =========================
   Responsive
========================= */

@media (max-width: 980px) {
    .golf-event-hero-grid {
        grid-template-columns: 1fr;
    }

    .golf-event-hero-actions {
        justify-content: center;
    }

    .golf-event-block-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .golf-event-block-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Gastro – Info Card
   ========================= */

.golf-card.golf-gastro-info-card,
.golf-card.golf-gastro-event-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {

    .golf-card.golf-gastro-info-card:hover,
    .golf-card.golf-gastro-event-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        border-color: rgba(31, 106, 74, 0.22);
    }
}

/* Head */
.golf-gastro-info-card .golf-card-head,
.golf-gastro-event-card .golf-card-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.golf-gastro-info-card .golf-card-title,
.golf-gastro-event-card .golf-card-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-gastro-info-card .golf-card-title::after,
.golf-gastro-event-card .golf-card-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-gastro-info-card .golf-card-subtitle,
.golf-gastro-event-card .golf-card-subtitle {
    margin: 12px auto 0;
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

/* =========================
   Card 2 – Info Grid
   ========================= */

.golf-gastro-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

.golf-gastro-info-box {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.golf-gastro-info-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.05rem;
    line-height: 1.25;
    color: #1f1f1f;
}

.golf-gastro-info-box p {
    margin: 0 0 8px 0;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.80);
}

.golf-gastro-info-box p:last-child {
    margin-bottom: 0;
}

.golf-gastro-info-box a {
    color: #7A1E2B;
    text-decoration: none;
    border-bottom: 1px solid rgba(122, 30, 43, 0.35);
}

/* =========================
   Card 3 – Event Text + Facts
   ========================= */

.golf-gastro-event-text {
    max-width: 85ch;
    margin: 0 auto clamp(18px, 2.5vw, 26px);
}

.golf-gastro-event-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-gastro-event-text p:last-child {
    margin-bottom: 0;
}

.golf-gastro-event-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

.golf-gastro-fact {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 18px 16px 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    text-align: center;
}

.golf-gastro-fact-label {
    margin: 0 0 8px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0, 0, 0, 0.55);
}

.golf-gastro-fact-value {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 700;
    color: #1f1f1f;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 900px) {
    .golf-gastro-event-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .golf-gastro-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .golf-gastro-event-facts {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Video Card
   ========================= */

.golf-card.golf-video-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease;
}

@media (hover:hover) {
    .golf-card.golf-video-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
    }
}

/* Video */

.golf-video-wrapper {
    margin-top: clamp(16px, 2vw, 22px);
}

.golf-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    display: block;
}

/* Placeholder */

.golf-video-wrapper .embed__placeholder {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    text-align: center;

    padding: 24px;

    background: #f7f4ee;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.golf-video-wrapper .embed__placeholder button {
    margin-top: 10px;
}

/* Text */

.golf-video-text {
    max-width: 80ch;
    margin: clamp(18px, 2.5vw, 26px) auto 0;
}

.golf-video-text p {
    margin: 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

/* =========================
   Platzstatus – Card 2 bis 4
   ========================= */

/* Gemeinsame Card-Basis */
.golf-status-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {
    .golf-status-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        border-color: rgba(31, 106, 74, 0.22);
    }
}

/* Head */
.golf-status-card .wp-block-heading {
    margin-top: 0;
}

.golf-status-card>h2,
.golf-status-card>h3,
.golf-status-card .golf-status-title {
    margin: 0 0 18px 0;
    text-align: center;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-status-card>h2::after,
.golf-status-card>h3::after,
.golf-status-card .golf-status-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

/* =========================
   Card 2 – Status-Karten
   ========================= */

.golf-status-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

.golf-status-tile {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 18px 16px 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.golf-status-tile h3,
.golf-status-tile h4 {
    margin: 0 0 10px 0;
    font-size: 1.05rem;
    line-height: 1.25;
    color: #1f1f1f;
}

.golf-status-tile p {
    margin: 0 0 8px 0;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.80);
}

.golf-status-tile p:last-child {
    margin-bottom: 0;
}

/* optionale Status-Badges */
.golf-status-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3efe6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7A1E2B;
}

.golf-status-badge.is-open {
    color: #1f6a4a;
}

.golf-status-badge.is-warning {
    color: #7A1E2B;
}

/* =========================
   Card 3 – Hunde-Hinweis
   ========================= */

.golf-status-info-card {
    background: #f7f4ee;
}

.golf-status-info-text {
    max-width: 85ch;
    margin: 0 auto;
}

.golf-status-info-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-status-info-text p:last-child {
    margin-bottom: 0;
}

.golf-status-info-text strong {
    color: #7A1E2B;
}

/* =========================
   Card 4 – Frost-/Warn-Card
   ========================= */

.golf-status-warning-card {
    background: #ffffff;
}

.golf-status-warning-intro {
    max-width: 85ch;
    margin: 0 auto 18px;
}

.golf-status-warning-intro p {
    margin: 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-status-warning-list {
    max-width: 85ch;
    margin: 0 auto;
    padding-left: 1.2rem;
}

.golf-status-warning-list li {
    margin: 0 0 10px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-status-warning-note {
    max-width: 85ch;
    margin: 22px auto 0;
    padding: 18px 20px;

    background: rgba(247, 244, 238, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.golf-status-warning-note p {
    margin: 0 0 10px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-status-warning-note p:last-child {
    margin-bottom: 0;
}

.golf-status-warning-note strong {
    color: #7A1E2B;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 980px) {
    .golf-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .golf-status-grid {
        grid-template-columns: 1fr;
    }

    .golf-status-card {
        border-radius: 18px;
    }
}

/* =========================
   Mannschaften – Hinweis-Banner
   ========================= */

.golf-team-banner {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
}

.golf-team-banner-inner {
    padding: clamp(22px, 3vw, 40px);

    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    text-align: center;
}

.golf-team-banner-title {
    margin: 0;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-team-banner-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-team-banner-inner p {
    max-width: 80ch;
    margin: 14px auto 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-team-banner-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}


/* =========================
   Mannschaften – Übersicht
   ========================= */

.golf-team-section {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
}

.golf-team-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.golf-team-title {
    margin: 0;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-team-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-team-subtitle {
    margin: 12px auto 0;
    max-width: 72ch;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

/* Grid */
.golf-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

/* Card */
.golf-team-card {
    display: flex;
    flex-direction: column;

    padding: 22px 20px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {
    .golf-team-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
        border-color: rgba(31, 106, 74, 0.22);
    }
}

.golf-team-card-title {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #1f1f1f;
}

.golf-team-card-text {
    margin: 0 0 12px 0;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.80);
}

.golf-team-card-meta {
    margin: 0 0 10px 0;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.72);
}

.golf-team-card-actions {
    margin-top: auto;
    padding-top: 14px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.golf-team-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 16px;
    border-radius: 999px;

    background: #7A1E2B;
    color: #F3EFE6;
    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

@media (hover:hover) {
    .golf-team-card-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
        filter: brightness(1.03);
    }
}

/* Responsive */
@media (max-width: 980px) {
    .golf-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .golf-team-grid {
        grid-template-columns: 1fr;
    }

    .golf-team-banner-inner,
    .golf-team-card {
        border-radius: 18px;
    }
}

/* =========================
   Mannschaften – Card Bild
   ========================= */

.golf-team-card-media {
    margin: -22px -20px 16px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.golf-team-card-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;

    transition: transform 300ms ease;
}

@media (hover:hover) {
    .golf-team-card:hover .golf-team-card-media img {
        transform: scale(1.04);
    }
}

/* =========================
   Team-Bericht – allgemeines Schema
   ========================= */

.golf-card.golf-team-report-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {
    .golf-card.golf-team-report-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        border-color: rgba(31, 106, 74, 0.22);
    }
}

/* Kopf */
.golf-team-report-card .golf-card-head {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.golf-team-report-card .golf-card-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-team-report-card .golf-card-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-team-report-card .golf-card-subtitle {
    margin: 12px auto 0;
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

/* Mannschaftskapitän */
.golf-team-report-meta {
    max-width: 80ch;
    margin: 0 auto 22px;
    padding: 14px 18px;

    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);

    text-align: center;
}

.golf-team-report-meta p {
    margin: 0;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.82);
}

/* Teamfoto */
.golf-team-report-media {
    margin: 0 0 28px 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.golf-team-report-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sektionstitel */
.golf-team-report-section-title {
    margin: 0 0 14px 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
    color: #1f1f1f;
}

/* Aktuelle Berichte */
.golf-team-report-current {
    margin-bottom: 28px;
}

.golf-team-report-text {
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-team-report-text p {
    margin: 0 0 14px 0;
}

.golf-team-report-text p:last-child {
    margin-bottom: 0;
}

/* Archiv / alte Berichte */
.golf-team-report-archive {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.golf-team-report-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.golf-team-report-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 16px;
    border-radius: 999px;

    background: #7A1E2B;
    color: #F3EFE6;
    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

@media (hover:hover) {
    .golf-team-report-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
        filter: brightness(1.03);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .golf-card.golf-team-report-card {
        border-radius: 18px;
    }

    .golf-team-report-media {
        border-radius: 16px;
    }
}

/* =========================
   Golf-Pro Cards
   ========================= */

.golf-card.golf-pro-card {
    width: min(92vw, 1320px);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(22px, 3vw, 40px);

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) {
    .golf-card.golf-pro-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        border-color: rgba(31, 106, 74, 0.22);
    }
}

.golf-pro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}

.golf-pro-media {
    margin: 0;
}

.golf-pro-media img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.golf-pro-name {
    margin: 0;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.15;
    font-weight: 650;
    color: #1f1f1f;
}

.golf-pro-name::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px 0 0;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.75);
}

.golf-pro-role {
    margin: 12px 0 0;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

.golf-pro-text {
    margin-top: 18px;
}

.golf-pro-text p {
    margin: 0 0 14px 0;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.82);
}

.golf-pro-text p:last-child {
    margin-bottom: 0;
}

.golf-pro-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
    margin-top: 22px;
}

.golf-pro-box {
    background: rgba(247, 244, 238, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.golf-pro-box h3,
.golf-pro-appointments h3 {
    margin: 0 0 10px 0;
    font-size: 1.05rem;
    line-height: 1.25;
    color: #1f1f1f;
}

.golf-pro-box p,
.golf-pro-appointments p {
    margin: 0 0 8px 0;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.80);
}

.golf-pro-box p:last-child,
.golf-pro-appointments p:last-child {
    margin-bottom: 0;
}

.golf-pro-box a {
    color: #7A1E2B;
    text-decoration: none;
    border-bottom: 1px solid rgba(122, 30, 43, 0.35);
}

.golf-pro-appointments {
    margin-top: 22px;
    padding: 18px 20px;
    background: #f7f4ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

/* Responsive */
@media (max-width: 980px) {
    .golf-pro-grid {
        grid-template-columns: 1fr;
    }

    .golf-pro-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .golf-card.golf-pro-card {
        border-radius: 18px;
    }

    .golf-pro-media img,
    .golf-pro-box,
    .golf-pro-appointments {
        border-radius: 16px;
    }
}

/* Google Maps iframe – responsive */
.golf-map-iframe {
    position: relative !important;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;

    border: 0;
    border-radius: 14px;
    display: block;
}

/* mobil etwas quadratischer */
@media (max-width: 900px) {
    .golf-map-iframe {
        aspect-ratio: 1 / 1;
    }
}


@media (min-width: 901px) {
  nav.golf-mega-nav .wp-block-navigation-item.golf-submenu-open > .wp-block-navigation__submenu-container {
    display: block !important;
    position: absolute !important;
    left: 0;
    right: 0;
    top: 100%;
    width: 100vw;
    max-width: 100vw;
    background: #f3efe6;
    z-index: 9999;
    padding: 24px 40px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  }
}

/* Golf Tiles – exakt auf dieses HTML gezielt */
.entry-content.alignfull.wp-block-post-content > .wp-block-columns.golf-tiles {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: clamp(14px, 2vw, 28px) !important;

    width: 75% !important;
    max-width: 75% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

.entry-content.alignfull.wp-block-post-content > .wp-block-columns.golf-tiles > .wp-block-column {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: 75% !important;
    min-width: 0 !important;
    margin: 0 !important;

    display: flex !important;
    flex-direction: column !important;
}

.golf-tile {
    position: relative;
    display: block;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 2;
}

.golf-tile img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover !important;
}

.golf-tile h3,
.golf-tile h5 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    margin: 0;
    padding: 14px 16px;

    text-align: center;
    color: #fff;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0)
    );

    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (hover: hover) {
    .golf-tile:hover h3,
    .golf-tile:hover h5 {
        color: #f3efe6;
    }

    .golf-tile img {
        transition: transform 260ms ease;
    }

    .golf-tile:hover img {
        transform: scale(1.04);
    }
}

@media (max-width: 1280px) {
    .entry-content.alignfull.wp-block-post-content > .wp-block-columns.golf-tiles {
        flex-wrap: wrap !important;
        width: min(92vw, 980px) !important;
        gap: 20px !important;
    }

    .entry-content.alignfull.wp-block-post-content > .wp-block-columns.golf-tiles > .wp-block-column {
        flex: 0 0 calc(50% - 10px) !important;
        width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
}

@media (max-width: 780px) {
    .entry-content.alignfull.wp-block-post-content > .wp-block-columns.golf-tiles {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    .entry-content.alignfull.wp-block-post-content > .wp-block-columns.golf-tiles > .wp-block-column {
    flex: none;
    width: 100%;
        max-width: 100% !important;
    }
	    .home .entry-content.alignfull.wp-block-post-content {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* Startseite: alignfull des Post-Content neutralisieren – nur Desktop */
@media (min-width: 781px) {
    .home .entry-content.alignfull.wp-block-post-content {
        width: 75% !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 780px) {

.entry-content.alignfull.wp-block-post-content 
> .wp-block-columns.golf-tiles 
> .wp-block-column {

    flex: none !important;
    width: 100% !important;
    max-width: none !important;

}

}

/* =========================================================
   Startseite – Golfclub auf einen Blick
   ========================================================= */

.golf-overview {
    width: 75% !important;
    max-width: none !important;
    margin: 56px auto 72px !important;
    padding: 28px 28px 32px !important;
    box-sizing: border-box !important;

    background: #f3efe6;
    border: 1px solid rgba(122, 30, 43, 0.12);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.golf-overview__head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 30px;
}

.golf-overview__eyebrow {
    margin: 0 0 10px;
    color: #7a1e2b;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.golf-overview__title {
    margin: 0 0 14px;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.12;
    color: #1f1f1f;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.golf-overview__intro {
    margin: 0 auto;
    max-width: 760px;
    color: #4b4b4b;
    font-size: 1.05rem;
    line-height: 1.65;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.golf-overview__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.golf-overview__card {
    background: #ffffff;
    border: 1px solid rgba(122, 30, 43, 0.12);
    border-radius: 18px;
    padding: 22px 20px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.golf-overview__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(122, 30, 43, 0.22);
}

.golf-overview__icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.08);
    color: #7a1e2b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 18px;
}

.golf-overview__card h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
    line-height: 1.28;
    color: #1f1f1f;
    hyphens: manual;
    overflow-wrap: break-word;
    word-break: normal;
}

.golf-overview__card p {
    margin: 0 0 18px;
    color: #4f4f4f;
    line-height: 1.65;
    flex-grow: 1;
}

.golf-overview__link {
    color: #7a1e2b;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.golf-overview__link::after {
    content: "→";
    transition: transform 180ms ease;
}

.golf-overview__link:hover::after {
    transform: translateX(3px);
}

/* großer Tablet-/halber Bildschirm */
@media (max-width: 1320px) {
    .golf-overview {
        width: 92% !important;
        padding: 24px 22px 26px !important;
    }

    .golf-overview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

/* Mobile */
@media (max-width: 780px) {
    .golf-overview {
        width: 92% !important;
        max-width: 100% !important;
        margin: 40px auto 52px !important;
        padding: 24px 16px 22px !important;
        border-radius: 18px;
    }

    .golf-overview__head {
        margin-bottom: 22px;
    }

    .golf-overview__title {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .golf-overview__intro {
        font-size: 1rem;
        line-height: 1.55;
    }

    .golf-overview__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .golf-overview__card {
        padding: 20px 18px 18px;
        border-radius: 16px;
    }
}

/* =========================================
   Startseite – Zahlen & Fakten
   ========================================= */

.golf-facts {
    width: 75% !important;
    max-width: none !important;
    margin: 56px auto 56px !important;
}

.golf-facts__inner {
    background: linear-gradient(180deg, #f7f3eb 0%, #f3efe6 100%);
    border: 1px solid rgba(122, 30, 43, 0.12);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    padding: 30px 28px 32px;
}

.golf-facts__head {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 28px;
}

.golf-facts__eyebrow {
    margin: 0 0 10px;
    color: #7a1e2b;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.golf-facts__title {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.12;
    color: #1f1f1f;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.golf-facts__intro {
    margin: 0 auto;
    max-width: 760px;
    color: #4b4b4b;
    font-size: 1.04rem;
    line-height: 1.65;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.golf-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.golf-facts__item {
    background: #fff;
    border: 1px solid rgba(122, 30, 43, 0.12);
    border-radius: 18px;
    padding: 22px 18px 20px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.golf-facts__number {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 700;
    color: #7a1e2b;
    margin-bottom: 14px;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.golf-facts__item h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.25;
    color: #1f1f1f;
    hyphens: manual;
    overflow-wrap: break-word;
    word-break: normal;
}

.golf-facts__item p {
    margin: 0;
    color: #4f4f4f;
    line-height: 1.6;
}

/* großer Tablet-/halber Bildschirm */
@media (max-width: 1320px) {
    .golf-facts {
        width: 92% !important;
    }

    .golf-facts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 780px) {
    .golf-facts {
        width: 92% !important;
        margin: 40px auto 40px !important;
        padding: 0;
        box-sizing: border-box;
    }

    .golf-facts__inner {
        padding: 24px 16px 20px;
        border-radius: 18px;
    }

    .golf-facts__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .golf-facts__item {
        padding: 18px 16px 16px;
    }
}

/* =========================================================
   Platzreifekurse – Termine Card
   ========================================================= */

.golf-pr-dates-card {
    background: linear-gradient(180deg, #f8f5ef 0%, #f3efe6 100%);
    border: 1px solid rgba(122, 30, 43, 0.12);
    border-radius: 24px;
    padding: 34px 38px 34px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    margin: 28px auto 0;
}

.golf-pr-dates-card .golf-card-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 26px;
}

.golf-card-eyebrow {
    margin: 0 0 10px;
    color: #7a1e2b;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.golf-pr-dates-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 24px;
}

.golf-pr-dates-info__item {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(122, 30, 43, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
}

.golf-pr-dates-info__item strong {
    display: block;
    margin-bottom: 4px;
    color: #7a1e2b;
    font-size: 0.95rem;
}

.golf-pr-dates-info__item span {
    color: #4b4b4b;
    line-height: 1.5;
}

.golf-pr-dates-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.golf-pr-date-item {
    background: #ffffff;
    border: 1px solid rgba(122, 30, 43, 0.12);
    border-radius: 18px;
    padding: 20px 18px 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.golf-pr-date-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(122, 30, 43, 0.08);
    color: #7a1e2b;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.golf-pr-date-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.golf-pr-date-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(122, 30, 43, 0.12);
}

.golf-pr-date-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.golf-pr-date-list strong {
    font-size: 1rem;
    line-height: 1.35;
    color: #1f1f1f;
    font-weight: 600;
}

.golf-pr-date-list span {
    color: #7a1e2b;
    font-weight: 600;
    font-size: 0.96rem;
}

.golf-pr-dates-note {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(122, 30, 43, 0.08);
}

.golf-pr-dates-note p {
    margin: 0;
    line-height: 1.65;
    color: #4b4b4b;
}

/* Tablet */
@media (max-width: 1200px) {
    .golf-pr-dates-info {
        grid-template-columns: 1fr;
    }

    .golf-pr-dates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 780px) {
    .golf-pr-dates-card {
        padding: 24px 18px 22px;
        border-radius: 18px;
        margin-top: 22px;
    }

    .golf-pr-dates-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .golf-pr-date-item {
        padding: 18px 16px 16px;
        border-radius: 16px;
    }

    .golf-pr-dates-note {
        margin-top: 18px;
        padding: 14px 14px;
    }
}

/* =========================================
   Schnuppersonntage – Termine
   ========================================= */

.golf-dates--trial {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.golf-dates-note {
    background: rgba(122, 30, 43, 0.06);
    border: 1px solid rgba(122, 30, 43, 0.12);
    border-radius: 16px;
    padding: 16px 18px;
}

.golf-dates-note p {
    margin: 0;
    line-height: 1.65;
}

.golf-dates-grid--trial {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.golf-dates-month {
    background: #ffffff;
    border: 1px solid rgba(122, 30, 43, 0.12);
    border-radius: 18px;
    padding: 18px 18px 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.golf-dates-month h3 {
    margin: 0 0 12px;
    color: #7a1e2b;
    font-size: 1.15rem;
    line-height: 1.2;
}

.golf-dates-month .golf-dates-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.golf-dates-month .golf-dates-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(122, 30, 43, 0.12);
    line-height: 1.5;
}

.golf-dates-month .golf-dates-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.golf-dates-month .golf-dates-list span {
    flex: 0 0 auto;
    color: #7a1e2b;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .golf-dates-grid--trial {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .golf-dates-month .golf-dates-list li {
        flex-direction: column;
        gap: 2px;
    }

    .golf-dates-month .golf-dates-list span {
        white-space: normal;
    }
}

/* =========================================
   Einzelbeitrag / Single Post – eine große Card
   ========================================= */

/* Gesamtbreite des Beitrags */
.single main#wp--skip-link--target {
    --post-card-width: min(75vw, 1180px);
}

/* Oberen Einleitungsbereich enger */
.single main#wp--skip-link--target > .wp-block-group.alignfull:first-child {
    padding-top: 42px !important;
    padding-bottom: 0 !important;
}

/* Titelbereich */
.single .wp-block-post-title {
    max-width: 980px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 22px !important;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

/* Meta-Zeile */
.single .wp-block-post-date,
.single .taxonomy-category.wp-block-post-terms {
    font-size: 0.92rem;
    line-height: 1.3;
}

.single .wp-block-post-date time,
.single .taxonomy-category.wp-block-post-terms {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #F3EFE6;
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: rgba(0, 0, 0, 0.68);
    box-sizing: border-box;
}

.single .taxonomy-category.wp-block-post-terms a {
    color: #7A1E2B;
    text-decoration: none;
}

.single .taxonomy-category.wp-block-post-terms a:hover {
    text-decoration: underline;
}

/* Der komplette zweite Block wird zur eigentlichen großen Card */
.single main#wp--skip-link--target > .wp-block-group.alignfull:nth-child(2) {
    width: min(75vw, 1180px) !important;
    max-width: 1180px !important;
    margin: 28px auto 64px !important;
    padding: 0 !important;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    box-sizing: border-box;
}

/* Featured Image bündig und wirklich vollbreit in derselben Card */
.single .wp-block-post-featured-image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    line-height: 0;
    text-align: center;
}

.single .wp-block-post-featured-image a,
.single .wp-block-post-featured-image picture {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

.single .wp-block-post-featured-image img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* Innerer Inhaltsblock im Card-Container darf das Bild nicht seitlich begrenzen */
.single main#wp--skip-link--target > .wp-block-group.alignfull:nth-child(2) > .wp-block-post-featured-image,
.single main#wp--skip-link--target > .wp-block-group.alignfull:nth-child(2) > .entry-content.wp-block-post-content {
    width: 100% !important;
    max-width: 100% !important;
}

/* Textbereich innerhalb derselben Card */
.single .entry-content.wp-block-post-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: clamp(24px, 3vw, 42px) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    box-sizing: border-box;
}

.single .entry-content.wp-block-post-content > * {
    max-width: 100%;
}

.single .entry-content.wp-block-post-content p,
.single .entry-content.wp-block-post-content ul,
.single .entry-content.wp-block-post-content ol,
.single .entry-content.wp-block-post-content h2,
.single .entry-content.wp-block-post-content h3,
.single .entry-content.wp-block-post-content h4 {
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Text */
.single .entry-content.wp-block-post-content p {
    margin: 0 0 1.15rem !important;
    line-height: 1.72;
    color: rgba(0, 0, 0, 0.82);
}

.single .entry-content.wp-block-post-content p:last-child {
    margin-bottom: 0 !important;
}

.single .entry-content.wp-block-post-content strong {
    color: #1f1f1f;
}

.single .entry-content.wp-block-post-content a {
    color: #7A1E2B;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.single .entry-content.wp-block-post-content ul,
.single .entry-content.wp-block-post-content ol {
    margin: 0 0 1.15rem 0 !important;
    padding-left: 1.35rem !important;
    line-height: 1.7;
}

.single .entry-content.wp-block-post-content h2,
.single .entry-content.wp-block-post-content h3,
.single .entry-content.wp-block-post-content h4 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #1f1f1f;
    line-height: 1.2;
}

/* Unteren leeren Full-Width-Block entschärfen */
.single main#wp--skip-link--target > .wp-block-group.alignfull:last-child {
    padding-bottom: 0 !important;
    background: transparent !important;
}

/* Mobile */
@media (max-width: 768px) {
    .single main#wp--skip-link--target {
        --post-card-width: 95vw;
    }

    .single .wp-block-post-title {
        margin-bottom: 18px !important;
    }

    .single main#wp--skip-link--target > .wp-block-group.alignfull:nth-child(2) {
        margin: 22px auto 42px !important;
        border-radius: 18px;
    }

    .single .wp-block-post-featured-image img {
        height: 240px;
    }

    .single .entry-content.wp-block-post-content {
        padding: 20px 18px !important;
    }

    .single .wp-block-post-date time,
    .single .taxonomy-category.wp-block-post-terms {
        padding: 7px 12px;
        font-size: 0.86rem;
    }
}


/* ================================================================== Aimationen ================================================================== */

/* =========================================================
   Scroll-Reveal Animationen
   ========================================================= */

.reveal-up {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
    will-change: opacity, transform;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* optional: auf Mobil etwas kürzer */
@media (max-width: 780px) {
    .reveal-up {
        transform: translateY(24px);
        transition:
            opacity 560ms ease,
            transform 560ms ease;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================================
   Tile Animationen – von links nach rechts
   ========================================================= */
.reveal-left {
    opacity: 0;
    transform: translateX(-42px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
    will-change: opacity, transform;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* gestaffelte Verzögerung */
.stagger-1 {
    transition-delay: 0ms;
}

.stagger-2 {
    transition-delay: 140ms;
}

.stagger-3 {
    transition-delay: 280ms;
}
.stagger-4 {
    transition-delay: 420ms;
}

/* mobil etwas kürzer */
@media (max-width: 780px) {
    .reveal-left {
        transform: translateX(-24px);
        transition:
            opacity 560ms ease,
            transform 560ms ease;
    }

    .stagger-2 {
        transition-delay: 100ms;
    }

    .stagger-3 {
        transition-delay: 200ms;
    }
	    .stagger-4 {
        transition-delay: 300ms;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal-left {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .stagger-1,
    .stagger-2,
    .stagger-3 {
        transition-delay: 0ms !important;
    }
}

/* Fade-Animation */
.reveal-fade {
    opacity: 0;
    transition: opacity 600ms ease;
}

.reveal-fade.is-visible {
    opacity: 1;
}

/* =========================================================
   Reveal Right + 8 Stagger-Stufen
   ========================================================= */

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
    will-change: opacity, transform;
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 100ms; }
.stagger-3 { transition-delay: 200ms; }
.stagger-4 { transition-delay: 300ms; }
.stagger-5 { transition-delay: 400ms; }
.stagger-6 { transition-delay: 500ms; }
.stagger-7 { transition-delay: 600ms; }
.stagger-8 { transition-delay: 700ms; }

@media (max-width: 780px) {
    .reveal-right {
        transform: translateX(24px);
        transition:
            opacity 560ms ease,
            transform 560ms ease;
    }

    .stagger-2 { transition-delay: 80ms; }
    .stagger-3 { transition-delay: 160ms; }
    .stagger-4 { transition-delay: 240ms; }
    .stagger-5 { transition-delay: 320ms; }
    .stagger-6 { transition-delay: 400ms; }
    .stagger-7 { transition-delay: 480ms; }
    .stagger-8 { transition-delay: 560ms; }
}

/* =========================================
   Hero Parallax
   ========================================= */

.hero-parallax {
    position: relative;
    overflow: visible;
    isolation: isolate;
}

.hero-parallax__media {
    transform: translateY(0);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero-parallax__media {
        transform: none !important;
    }
}