/* =========================================================
   Grundlayout
   ========================================================= */

html,

:root {
    --sv-green-dark: #274d1f;
    --sv-green: #5f8a36;
    --sv-green-light: #eef4ea;
    --sv-border: #d8e2d2;
    --sv-text: #243024;
    --sv-muted: #657061;
}

body {
    margin: 0;
    padding: 0;
}

body {
    background:
        #ffffff
        url("../images/bg.png")
        top center
        repeat-x;

    color: #111;
}


/* =========================================================
   Header
   ========================================================= */

.container-header {
    position: relative;

    width: min(calc(100% - 2rem), 1350px);
    max-width: 1350px;

    margin: 18px auto 8px;

    /* vorher: 2048 / 585 */
    aspect-ratio: 2048 / 500;

    background:
        #ffffff
        url("../images/header_bg.jpg")
        center center
        / cover
        no-repeat;

    border: 1px solid rgba(60, 90, 45, 0.25);
    border-radius: 2px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.12);

    overflow: hidden;
}

/* Cassiopeia-Standardbranding ausblenden */
.container-header .navbar-brand,
.container-header .site-description,
.container-header .container-nav,
.container-header nav {
    display: none !important;
}


/* =========================================================
   Hauptbereich
   ========================================================= */

.site-grid {
    width: min(calc(100% - 2rem), 1350px);
    max-width: 1350px;

    margin-left: auto;
    margin-right: auto;

    background: #ffffff;
}


/* =========================================================
   Cassiopeia Grid:
   Sidebar + Inhalt direkt nebeneinander
   ========================================================= */

body.has-sidebar-left .site-grid {
    display: grid;

    grid-template-columns:
        210px
        minmax(0, 1fr);

    column-gap: 0.8rem;
}

/* linke Grid-Spalte */
body.has-sidebar-left .container-sidebar-left {
    grid-column: 1 !important;

    width: 210px;
    max-width: 210px;

    margin: 0;
    padding: 0;
}

/* Content-Spalte */
body.has-sidebar-left .container-component {
    grid-column: 2 !important;

    width: auto;
    min-width: 0;

    margin: 0;
    padding: 0 0 25px 0;
}


/* =========================================================
   Linke Sidebar
   ========================================================= */

.sidebar-left {
    width: 210px;
    max-width: 210px;
}


/* =========================================================
   Menübox
   ========================================================= */

.sidebar-left .card,
.sidebar-left .card-body {
    width: 100%;
    max-width: 100%;

    box-sizing: border-box;
}

.sidebar-left .card {
    border: 1px solid #cfd8c9;
    border-radius: 2px;

    box-shadow: none;

    background: #ffffff;
}

/* Überschrift Hauptmenü */
.sidebar-left .card-header {
    padding: 6px 10px;

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

    color: #2f4d20;

    background: #eef4ea;

    border-bottom: 1px solid #cfd8c9;
}


/* =========================================================
   Hauptmenü
   ========================================================= */

.sidebar-left .metismenu.mod-menu {
    display: block;

    margin: 0;
    padding: 4px 0;
}

.sidebar-left .metismenu.mod-menu > li {
    position: relative;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   Normale Hauptlinks
   ========================================================= */

.sidebar-left .metismenu.mod-menu > li > a {
    display: block;

    padding: 4px 36px 4px 10px;

    line-height: 1.15;

    color: #274d1f;

    text-decoration: none;

    border-left: 3px solid transparent;
}

.sidebar-left .metismenu.mod-menu > li > a:hover {
    color: #1f3d18;

    background: #f2f7ef;

    border-left-color: #8ebf4b;

    text-decoration: none;
}

/* Aktiver Hauptlink */
.sidebar-left .metismenu.mod-menu > li.active > a,
.sidebar-left .metismenu.mod-menu > li.current > a,
.sidebar-left .metismenu.mod-menu > li.mm-active > a {
    color: #1f3d18;

    background: #e8f1e2;

    border-left-color: #5f8a36;

    font-weight: 600;
}


/* =========================================================
   Toggle-Pfeil bei normalem Menülink
   ========================================================= */

.sidebar-left .metismenu.mod-menu .mm-toggler-link {
    position: absolute;

    top: 0;
    right: 2px;

    width: 34px;
    height: 28px;

    margin: 0;
    padding: 0;

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

    color: #365b29;

    background: transparent;

    border: 0;
    border-radius: 2px;

    cursor: pointer;

    z-index: 5;
}

.sidebar-left .metismenu.mod-menu .mm-toggler-link:hover {
    color: #1f3d18;

    background: #e8f1e2;
}


/* =========================================================
   Menüüberschrift als kompletter Toggle
   ========================================================= */

.sidebar-left .metismenu.mod-menu .mm-toggler-nolink {
    position: relative !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;

    padding: 4px 36px 4px 10px !important;

    display: flex !important;
    align-items: center;
    justify-content: flex-start;

    box-sizing: border-box;

    color: #274d1f;

    background: transparent;

    border: 0;
    border-left: 3px solid transparent;
    border-radius: 0;

    font: inherit;
    line-height: 1.15;
    text-align: left;

    cursor: pointer;
}

.sidebar-left .metismenu.mod-menu .mm-toggler-nolink:hover {
    color: #1f3d18;

    background: #f2f7ef;

    border-left-color: #8ebf4b;
}

/* Aktive/geöffnete Menüüberschrift */
.sidebar-left .metismenu.mod-menu > li.active > .mm-toggler-nolink,
.sidebar-left .metismenu.mod-menu > li.mm-active > .mm-toggler-nolink {
    color: #1f3d18;

    background: #e8f1e2;

    border-left-color: #5f8a36;

    font-weight: 600;
}


/* =========================================================
   Fokus für Toggle
   ========================================================= */

.sidebar-left .metismenu.mod-menu .mm-toggler-link:focus,
.sidebar-left .metismenu.mod-menu .mm-toggler-nolink:focus {
    outline: 1px solid #8ebf4b;
    outline-offset: -2px;
}


/* =========================================================
   Untermenüs
   ========================================================= */

/*
 * Untermenüs bleiben Teil des normalen Dokumentflusses.
 * Keine feste Breite: Der Browser zieht die Außenabstände
 * automatisch von der verfügbaren Breite der Sidebar ab.
 */
.sidebar-left .metismenu.mod-menu .mm-collapse,
.sidebar-left .metismenu.mod-menu ul {
    position: static !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    margin: 1px 4px 4px 8px !important;
    padding: 3px 0 3px 8px !important;

    box-sizing: border-box !important;

    transform: none !important;

    background: #f6f9f4;

    border-left: 2px solid #c9d9bf;

    box-shadow: none !important;
}

/* Zusätzliche Absicherung gegen horizontales Überlaufen */
.sidebar-left .card,
.sidebar-left .card-body,
.sidebar-left .metismenu.mod-menu {
    overflow-x: hidden;
}


/* =========================================================
   Untermenüeinträge
   ========================================================= */

.sidebar-left .metismenu.mod-menu ul li {
    position: relative;

    width: 100%;
    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

/* Normale Links und Menü-Überschriften (z. B. Archiv/Reisen) */
.sidebar-left .metismenu.mod-menu ul a,
.sidebar-left .metismenu.mod-menu ul .mm-toggler-nolink {
    display: flex;
    align-items: center;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 2px 6px !important;

    box-sizing: border-box !important;

    color: #55704b !important;
    background: transparent;

    border: 0 !important;
    border-radius: 0;

    font-family: inherit !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;

    text-align: left;
    text-decoration: none;

    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: manual;

    box-shadow: none !important;
}

/* Nur Einträge mit eigenem Untermenü brauchen rechts Platz für den Pfeil */
.sidebar-left .metismenu.mod-menu ul li.deeper > a,
.sidebar-left .metismenu.mod-menu ul li.deeper > .mm-toggler-nolink {
    padding-right: 28px !important;
}

.sidebar-left .metismenu.mod-menu ul a:hover,
.sidebar-left .metismenu.mod-menu ul .mm-toggler-nolink:hover {
    color: #274d1f !important;
    background: #eaf2e5;
    text-decoration: none;
}

/* Aktiver Untermenüpunkt */
.sidebar-left .metismenu.mod-menu ul li.current > a,
.sidebar-left .metismenu.mod-menu ul li.active > a,
.sidebar-left .metismenu.mod-menu ul li.mm-active > a,
.sidebar-left .metismenu.mod-menu ul li.current > .mm-toggler-nolink,
.sidebar-left .metismenu.mod-menu ul li.active > .mm-toggler-nolink,
.sidebar-left .metismenu.mod-menu ul li.mm-active > .mm-toggler-nolink {
    color: #274d1f !important;
    background: #e2eddd;
    font-weight: 600 !important;
}


/* =========================================================
   Hauptinhalt
   ========================================================= */

.container-component {
    min-width: 0;

    padding: 0 0 25px 0;
}

main {
    min-width: 0;
}


/* =========================================================
   Text / Überschriften
   ========================================================= */

h1,
h2,
h3 {
    margin-top: 0;
}

h1,
h2 {
    color: #111;
}

p:first-child {
    margin-top: 0;
}


/* =========================================================
   Links im Inhalt
   ========================================================= */

a {
    color: #2c5c22;

    text-decoration: underline;
}

a:hover {
    color: #568a36;

    text-decoration: none;
}

/* Menülinks nicht unterstreichen */
.sidebar-left a {
    text-decoration: none;
}


/* =========================================================
   Bilder allgemein
   ========================================================= */

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   JoomGallery
   ========================================================= */

.com_joomgallery img {
    max-width: 100%;
    height: auto;
}

/* "Category: ..." ausblenden */
.com_joomgallery h2 {
    display: none;
}

/* "Images" ausblenden */
.com_joomgallery h3 {
    display: none;
}


/* =========================================================
   Trennlinien
   ========================================================= */

hr {
    border: 0;

    border-top: 1px solid #d7dfd2;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1100px) {

    .container-header {
        width: calc(100% - 1rem);

        margin-top: 10px;
        margin-bottom: 7px;
    }

    .site-grid {
        width: calc(100% - 1rem);
    }

    body.has-sidebar-left .site-grid {
        grid-template-columns:
            190px
            minmax(0, 1fr);

        column-gap: 0.6rem;
    }

    body.has-sidebar-left .container-sidebar-left {
        width: 190px;
        max-width: 190px;
    }

    .sidebar-left {
        width: 190px;
        max-width: 190px;
    }

    .sidebar-left .card-header {
        font-size: 1.05rem;
    }

    .sidebar-left .metismenu.mod-menu > li > a,
    .sidebar-left .metismenu.mod-menu .mm-toggler-nolink {
        padding-left: 8px !important;
        padding-right: 34px !important;
    }

    .sidebar-left .metismenu.mod-menu .mm-collapse,
    .sidebar-left .metismenu.mod-menu ul {
        width: auto !important;
        max-width: none !important;

        margin-left: 8px !important;
        margin-right: 4px !important;

        padding-left: 8px !important;
    }

    .sidebar-left .metismenu.mod-menu ul a,
    .sidebar-left .metismenu.mod-menu ul .mm-toggler-nolink {
        font-size: 0.86rem !important;
    }
}


/* =========================================================
   Smartphone
   ========================================================= */

@media (max-width: 700px) {

    body {
        background-size: auto 170px;
    }

    .container-header {
        width: calc(100% - 1rem);

        margin: 8px auto 7px;

        aspect-ratio: 2048 / 585;

        background-size: cover;
    }

    .site-grid,
    body.has-sidebar-left .site-grid {
        display: block;

        width: calc(100% - 1rem);

        margin-left: auto;
        margin-right: auto;
    }

    body.has-sidebar-left .container-sidebar-left {
        width: 100%;
        max-width: none;
    }

    .sidebar-left {
        width: 100%;
        max-width: none;

        margin-bottom: 0.7rem;
    }

    .container-component {
        width: 100%;

        padding-bottom: 20px;
    }

    .sidebar-left .card {
        width: 100%;
    }

    .sidebar-left .metismenu.mod-menu {
        padding: 3px 0;
    }

    .sidebar-left .metismenu.mod-menu > li > a,
    .sidebar-left .metismenu.mod-menu .mm-toggler-nolink {
        padding: 5px 40px 5px 9px !important;
    }

    .sidebar-left .metismenu.mod-menu .mm-toggler-link {
        width: 38px;
        height: 30px;
    }

    .sidebar-left .metismenu.mod-menu .mm-collapse,
    .sidebar-left .metismenu.mod-menu ul {
        width: auto !important;
        max-width: none !important;

        margin-left: 8px !important;
        margin-right: 8px !important;

        padding-left: 10px !important;
    }

    .sidebar-left .metismenu.mod-menu ul a,
    .sidebar-left .metismenu.mod-menu ul .mm-toggler-nolink {
        padding-top: 3px !important;
        padding-bottom: 3px !important;
    }
}


/* =========================================================
   Startseite
   ========================================================= */

.home-page {
    --home-green-dark: var(--sv-green-dark);
    --home-green: var(--sv-green);
    --home-green-light: var(--sv-green-light);
    --home-border: var(--sv-border);
    --home-text: var(--sv-text);
    --home-muted: #61705e;

    color: var(--home-text);
}


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

.home-hero {
    position: relative;

    margin-bottom: 2rem;
    padding: clamp(2rem, 5vw, 4.5rem);

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f3f7f0 0%,
            #e7f0e1 100%
        );

    border: 1px solid var(--home-border);
    border-radius: 8px;
}

.home-hero::after {
    content: "";

    position: absolute;
    right: -80px;
    bottom: -120px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(95, 138, 54, 0.08);

    pointer-events: none;
}

.home-hero__content {
    position: relative;
    z-index: 1;

    max-width: 750px;
}

.home-hero__eyebrow {
    display: inline-block;

    margin-bottom: 0.75rem;

    color: var(--home-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: none;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;

    letter-spacing: -0.03em;

    white-space: nowrap;
}

.home-hero__lead {
    max-width: 650px;

    margin: 0;

    color: var(--home-muted);

    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    line-height: 1.55;
}


/* =========================================================
   Hero Buttons
   ========================================================= */

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;

    margin-top: 1.75rem;
}

.home-button {
    display: inline-flex;

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

    min-height: 46px;

    padding: 0.7rem 1.2rem;

    border: 1px solid transparent;
    border-radius: 5px;

    font-weight: 600;

    text-decoration: none;
}

.home-button--primary {
    color: #fff;

    background: var(--home-green-dark);
}

.home-button--primary:hover {
    color: #fff;

    background: #1f3d18;

    text-decoration: none;
}

.home-button--secondary {
    color: var(--home-green-dark);

    background: #fff;

    border-color: #b9cbae;
}

.home-button--secondary:hover {
    color: #1f3d18;

    background: #f7faf5;

    border-color: #8eaa7c;

    text-decoration: none;
}


/* =========================================================
   Startseiten-Kacheln
   ========================================================= */

.home-services {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1rem;

    margin-bottom: 2.5rem;
}

.home-service-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 220px;

    padding: 1.4rem;

    color: var(--home-text);

    background: #fff;

    border: 1px solid var(--home-border);
    border-radius: 7px;

    box-shadow:
        0 2px 8px rgba(30, 50, 25, 0.05);

    text-decoration: none;

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

.home-service-card:hover {
    color: var(--home-text);

    border-color: #adc69d;

    box-shadow:
        0 8px 22px rgba(30, 50, 25, 0.11);

    transform: translateY(-3px);

    text-decoration: none;
}

.home-service-card__icon {
    display: flex;

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

    width: 48px;
    height: 48px;

    margin-bottom: 1.1rem;

    background: var(--home-green-light);

    border-radius: 50%;

    color: var(--home-green-dark);

    font-size: 1.4rem;
    font-weight: 700;
}

.home-service-card h2 {
    margin: 0 0 0.6rem;

    color: #203a1b;

    font-size: 1.25rem;
    line-height: 1.2;
}

.home-service-card p {
    margin: 0 0 1rem;

    color: var(--home-muted);

    font-size: 0.96rem;
    line-height: 1.5;
}

.home-service-card__link {
    margin-top: auto;

    color: var(--home-green-dark);

    font-size: 0.92rem;
    font-weight: 600;
}


/* =========================================================
   Startseite Tablet
   ========================================================= */

@media (max-width: 1100px) {

    .home-services {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .home-hero {
        padding: 2.5rem;
    }
}


/* =========================================================
   Startseite Smartphone
   ========================================================= */

@media (max-width: 700px) {

    .home-hero {
        margin-bottom: 1rem;

        padding: 1.6rem 1.25rem;

        border-radius: 5px;
    }

    .home-hero h1 {
        font-size: 2rem;
        white-space: normal;
    }

    .home-hero__lead {
        font-size: 1rem;
    }

    .home-hero__actions {
        display: grid;

        grid-template-columns: 1fr;
    }

    .home-button {
        width: 100%;
    }

    .home-services {
        grid-template-columns: 1fr;

        gap: 0.75rem;
    }

    .home-service-card {
        min-height: 0;
    }
}


/* =========================================================
   Mitglied werden
   ========================================================= */

.membership-page {
    --membership-green-dark: var(--sv-green-dark);
    --membership-green: var(--sv-green);
    --membership-green-light: var(--sv-green-light);
    --membership-border: var(--sv-border);
    --membership-text: var(--sv-text);
    --membership-muted: var(--sv-muted);

    color: var(--membership-text);
}


/* Hero */

.membership-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--membership-border);
    border-radius: 8px;
}

.membership-hero::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 320px;
    height: 320px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.membership-eyebrow {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 0.65rem;

    color: var(--membership-green);

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

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.membership-hero h1 {
    position: relative;
    z-index: 1;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.035em;
}

.membership-intro {
    position: relative;
    z-index: 1;

    max-width: 720px;

    margin: 0;

    color: var(--membership-muted);

    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.6;
}


/* Preis */

.membership-price {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: baseline;
    gap: 0.5rem;

    margin-top: 1.8rem;
}

.membership-price strong {
    color: var(--membership-green-dark);

    font-size: clamp(2.3rem, 4vw, 3.2rem);
    line-height: 1;
}

.membership-price span {
    color: var(--membership-muted);

    font-size: 1rem;
}


/* Buttons */

.membership-hero__actions {
    position: relative;
    z-index: 1;

    margin-top: 1.6rem;
}

.membership-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0.75rem 1.25rem;

    border-radius: 5px;

    font-weight: 700;

    text-decoration: none;
}

.membership-button--primary {
    color: #fff;

    background: var(--membership-green-dark);
}

.membership-button--primary:hover {
    color: #fff;

    background: #1f3d18;

    text-decoration: none;
}


/* Schritte */

.membership-section {
    padding: 3rem 0;
}

.membership-section-heading {
    margin-bottom: 1.5rem;
}

.membership-section-heading > span {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--membership-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.membership-section-heading h2 {
    margin: 0;

    color: #203a1b;

    font-size: clamp(1.6rem, 3vw, 2.2rem);

    letter-spacing: -0.02em;
}

.membership-steps {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;
}

.membership-step {
    display: flex;
    gap: 1rem;

    padding: 1.4rem;

    background: #fff;

    border: 1px solid var(--membership-border);
    border-radius: 7px;
}

.membership-step__number {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    color: var(--membership-green-dark);

    background: var(--membership-green-light);

    border-radius: 50%;

    font-weight: 700;
}

.membership-step h3 {
    margin: 0 0 0.4rem;

    color: #203a1b;

    font-size: 1.05rem;
}

.membership-step p {
    margin: 0;

    color: var(--membership-muted);

    line-height: 1.5;
}


/* Kontaktbox */

.membership-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    padding: 2rem 2.2rem;

    color: #fff;

    background: var(--membership-green-dark);

    border-radius: 8px;
}

.membership-contact__label {
    display: block;

    margin-bottom: 0.35rem;

    color: #cfe2c4;

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.membership-contact h2 {
    margin: 0 0 0.5rem;

    color: #fff;

    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.membership-contact p {
    margin: 0;

    color: #e7efe3;
}

.membership-contact a {
    color: inherit;
}

.membership-contact .membership-button--light {
    color: #274d1f;
    background: #fff;
}

.membership-contact .membership-button--light:hover {
    color: #1f3d18;
    background: #f2f7ef;
}


/* Tablet / Smartphone */

@media (max-width: 900px) {

    .membership-steps {
        grid-template-columns: 1fr;
    }

    .membership-contact {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {

    .membership-hero {
        padding: 1.6rem 1.25rem;

        border-radius: 5px;
    }

    .membership-hero h1 {
        font-size: 2.3rem;
    }

    .membership-section {
        padding: 2rem 0;
    }

    .membership-contact {
        padding: 1.5rem;

        border-radius: 5px;
    }

    .membership-button--light {
        width: 100%;
    }
}

/* =========================================================
   Geräteverleih
   ========================================================= */

.rental-page {
    --rental-green-dark: var(--sv-green-dark);
    --rental-green: var(--sv-green);
    --rental-green-light: var(--sv-green-light);
    --rental-border: var(--sv-border);
    --rental-text: var(--sv-text);
    --rental-muted: var(--sv-muted);

    color: var(--rental-text);
}


/* Hero */

.rental-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--rental-border);
    border-radius: 8px;
}

.rental-hero::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 320px;
    height: 320px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.rental-eyebrow {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 0.65rem;

    color: var(--rental-green);

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

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rental-hero h1 {
    position: relative;
    z-index: 1;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.035em;
}

.rental-intro {
    position: relative;
    z-index: 1;

    max-width: 720px;

    margin: 0;

    color: var(--rental-muted);

    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.6;
}

.rental-badge {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: baseline;
    gap: 0.5rem;

    margin-top: 1.8rem;
}

.rental-badge strong {
    color: var(--rental-green-dark);

    font-size: clamp(2rem, 4vw, 2.8rem);
}

.rental-badge span {
    color: var(--rental-muted);
}


/* Allgemeine Sektion */

.rental-section {
    padding: 3rem 0;
}

.rental-section-heading {
    margin-bottom: 1.5rem;
}

.rental-section-heading > span,
.rental-special-heading > span {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--rental-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rental-section-heading h2,
.rental-special-heading h2 {
    margin: 0;

    color: #203a1b;

    font-size: clamp(1.6rem, 3vw, 2.2rem);
}


/* Gerätekategorien */

.rental-categories {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1rem;
}

.rental-category {
    display: flex;
    gap: 1rem;

    padding: 1.5rem;

    background: #fff;

    border: 1px solid var(--rental-border);
    border-radius: 7px;
}

.rental-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 46px;
    height: 46px;

    background: var(--rental-green-light);

    border-radius: 50%;

    font-size: 1.3rem;
}

.rental-category h3 {
    margin: 0 0 0.75rem;

    color: #203a1b;

    font-size: 1.15rem;
}

.rental-category ul {
    margin: 0;
    padding-left: 1.15rem;

    color: var(--rental-muted);
}

.rental-category li {
    margin-bottom: 0.35rem;

    line-height: 1.45;
}

.rental-category li span {
    color: #7b8678;

    font-size: 0.9rem;
}


/* Holzspalter */

.rental-special {
    margin-bottom: 2rem;
    padding: 2rem;

    background: #f7faf5;

    border: 1px solid var(--rental-border);
    border-radius: 8px;
}

.rental-price-grid {
    display: flex;
    gap: 1rem;

    margin: 1.5rem 0;
}

.rental-price {
    min-width: 130px;

    padding: 1rem 1.3rem;

    background: #fff;

    border: 1px solid var(--rental-border);
    border-radius: 6px;
}

.rental-price span {
    display: block;

    margin-bottom: 0.25rem;

    color: var(--rental-muted);

    font-size: 0.9rem;
}

.rental-price strong {
    color: var(--rental-green-dark);

    font-size: 1.7rem;
}

.rental-notice {
    margin-top: 1.5rem;
    padding: 1.2rem 1.4rem;

    background: #fff;

    border-left: 4px solid var(--rental-green);
}

.rental-notice p {
    margin: 0.5rem 0 0;

    color: var(--rental-muted);
}


/* Heurigengarnituren */

.rental-party-label {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--rental-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rental-party h2 {
    margin: 0 0 0.5rem;

    color: #203a1b;
}

.rental-party p {
    margin: 0;

    color: var(--rental-muted);
}

/* Kontakt */

.rental-contact {
    padding: 2rem 2.2rem;

    color: #fff;

    background: var(--rental-green-dark);

    border-radius: 8px;
}

.rental-contact-heading > span {
    display: block;

    margin-bottom: 0.35rem;

    color: #cfe2c4;

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rental-contact-heading h2 {
    margin: 0 0 0.5rem;

    color: #fff;
}

.rental-contact-heading p {
    margin: 0;

    color: #e7efe3;
}

.rental-contacts {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1rem;

    margin-top: 1.5rem;
}

.rental-person {
    padding: 1.2rem;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
}

.rental-person span,
.rental-person strong,
.rental-person a {
    display: block;
}

.rental-person span {
    margin-bottom: 0.25rem;

    color: #cfe2c4;

    font-size: 0.85rem;
}

.rental-person strong {
    margin-bottom: 0.4rem;

    color: #fff;

    font-size: 1.05rem;
}

.rental-person a {
    color: #fff;

    font-weight: 600;
}


/* Responsive */

@media (max-width: 900px) {

    .rental-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {

    .rental-hero {
        padding: 1.6rem 1.25rem;

        border-radius: 5px;
    }

    .rental-section {
        padding: 2rem 0;
    }

    .rental-price-grid {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .rental-party {
        align-items: flex-start;
        flex-direction: column;
    }

    .rental-party-price {
        text-align: left;
    }

    .rental-contacts {
        grid-template-columns: 1fr;
    }

    .rental-contact {
        padding: 1.5rem;

        border-radius: 5px;
    }
}

/* =========================================================
   Geräteverleih - Gerätekarten
   ========================================================= */

.rental-device-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1.2rem;
}

.rental-device-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid var(--rental-border);
    border-radius: 8px;

    box-shadow:
        0 2px 8px rgba(30, 50, 25, 0.05);

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

.rental-device-card:hover {
    border-color: #adc69d;

    box-shadow:
        0 8px 22px rgba(30, 50, 25, 0.10);

    transform: translateY(-3px);
}

.rental-device-image {
    position: relative;

    height: 190px;

    overflow: hidden;

    background: #f5f6f3;

    border-bottom: 1px solid var(--rental-border);
}

.rental-device-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 0.75rem;
}

.rental-device-content {
    padding: 1.1rem 1.2rem 1.25rem;
}

.rental-device-content h3 {
    margin: 0 0 0.4rem;

    color: #203a1b;

    font-size: 1.1rem;
}

.rental-device-content p {
    margin: 0;

    color: var(--rental-muted);

    font-size: 0.94rem;
    line-height: 1.5;
}


@media (max-width: 1100px) {

    .rental-device-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 700px) {

    .rental-device-grid {
        grid-template-columns: 1fr;
    }

    .rental-device-image {
        height: 220px;
    }
}

.rental-special-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 2rem;

    align-items: start;
}

.rental-special-image {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1rem;

    background: #fff;

    border: 1px solid var(--rental-border);
    border-radius: 7px;
}

.rental-special-image img {
    display: block;

    width: 100%;
    max-width: 220px;
    height: auto;

    object-fit: contain;
}

@media (max-width: 900px) {

    .rental-special-layout {
        grid-template-columns: 1fr;
    }

    .rental-special-image {
        max-width: 320px;
    }
}

.rental-party {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 260px;

    align-items: center;

    gap: 2rem;

    margin-bottom: 2rem;
    padding: 2rem;

    background: #fff;

    border: 1px solid var(--rental-border);
    border-radius: 8px;
}

.rental-party-content {
    min-width: 0;
}

.rental-party-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;

    margin-top: 1.25rem;

    text-align: left;
}

.rental-party-price strong {
    display: block;

    color: var(--rental-green-dark);

    font-size: 2.2rem;
    line-height: 1;
}

.rental-party-price span {
    color: var(--rental-muted);
}

.rental-party-image {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1rem;

    background: #f7f8f5;

    border: 1px solid var(--rental-border);
    border-radius: 7px;
}

.rental-party-image img {
    display: block;

    width: 100%;
    max-width: 230px;
    height: auto;

    object-fit: contain;
}

@media (max-width: 900px) {

    .rental-party {
        grid-template-columns: 1fr;
    }

    .rental-party-image {
        max-width: 320px;
    }
}


/* =========================================================
   Mitgliedervorteile
   ========================================================= */

.benefits-page {
    --benefits-green-dark: var(--sv-green-dark);
    --benefits-green: var(--sv-green);
    --benefits-green-light: var(--sv-green-light);
    --benefits-border: var(--sv-border);
    --benefits-text: var(--sv-text);
    --benefits-muted: var(--sv-muted);

    color: var(--benefits-text);
}


/* Hero */

.benefits-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--benefits-border);
    border-radius: 8px;
}

.benefits-hero::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 320px;
    height: 320px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.benefits-eyebrow {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 0.65rem;

    color: var(--benefits-green);

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

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.benefits-hero h1 {
    position: relative;
    z-index: 1;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.035em;
}

.benefits-intro {
    position: relative;
    z-index: 1;

    max-width: 760px;

    margin: 0;

    color: var(--benefits-muted);

    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.6;
}

.benefits-price {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: baseline;
    gap: 0.5rem;

    margin-top: 1.8rem;
}

.benefits-price strong {
    color: var(--benefits-green-dark);

    font-size: clamp(2.3rem, 4vw, 3.2rem);
    line-height: 1;
}

.benefits-price span {
    color: var(--benefits-muted);
}


/* Allgemeine Sektionen */

.benefits-section {
    padding: 3rem 0;
}

.benefits-section-heading {
    margin-bottom: 1.5rem;
}

.benefits-section-heading > span {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--benefits-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.benefits-section-heading h2 {
    margin: 0 0 0.5rem;

    color: #203a1b;

    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.benefits-section-heading p {
    max-width: 780px;

    margin: 0;

    color: var(--benefits-muted);

    line-height: 1.6;
}


/* Übersichtskarten */

.benefits-overview {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;
}

.benefits-overview-card {
    display: flex;
    flex-direction: column;

    min-height: 220px;

    padding: 1.5rem;

    color: var(--benefits-text);

    background: #fff;

    border: 1px solid var(--benefits-border);
    border-radius: 8px;

    box-shadow:
        0 2px 8px rgba(30, 50, 25, 0.05);

    text-decoration: none;

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

.benefits-overview-card:hover {
    color: var(--benefits-text);

    border-color: #adc69d;

    box-shadow:
        0 8px 22px rgba(30, 50, 25, 0.10);

    transform: translateY(-3px);

    text-decoration: none;
}

.benefits-overview-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 1rem;

    background: var(--benefits-green-light);

    border-radius: 50%;

    color: var(--benefits-green-dark);

    font-size: 1.3rem;
    font-weight: 700;
}

.benefits-overview-card h2 {
    margin: 0 0 0.6rem;

    color: #203a1b;

    font-size: 1.25rem;
}

.benefits-overview-card p {
    margin: 0 0 1rem;

    color: var(--benefits-muted);

    line-height: 1.5;
}

.benefits-overview-card > span {
    margin-top: auto;

    color: var(--benefits-green-dark);

    font-weight: 600;
}


/* Versicherungen */

.insurance-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;
}

.insurance-card {
    padding: 1.4rem;

    background: #fff;

    border: 1px solid var(--benefits-border);
    border-radius: 8px;
}

.insurance-card h3 {
    margin: 0 0 0.6rem;

    color: #203a1b;

    font-size: 1.1rem;
    line-height: 1.3;
}

.insurance-card p {
    margin: 0;

    color: var(--benefits-muted);

    font-size: 0.94rem;
    line-height: 1.5;
}

.insurance-badge {
    display: inline-block;

    margin-bottom: 1rem;
    padding: 0.35rem 0.65rem;

    color: var(--benefits-green-dark);

    background: var(--benefits-green-light);

    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 700;
}

.insurance-badge--info {
    background: #f7faf5;

    border: 1px solid var(--benefits-border);
}


/* Beratung */

.benefits-advice {
    margin: 1rem 0 3rem;
    padding: 2rem;

    background: #f7faf5;

    border: 1px solid var(--benefits-border);
    border-radius: 8px;
}

.benefits-advice h2 {
    margin: 0 0 0.75rem;

    color: #203a1b;

    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.benefits-advice p {
    max-width: 850px;

    color: var(--benefits-muted);

    line-height: 1.65;
}

.benefits-advice-button {
    display: inline-block;

    margin-top: 0.5rem;

    color: var(--benefits-green-dark);

    font-weight: 700;

    text-decoration: none;
}

.benefits-advice-button:hover {
    color: #1f3d18;

    text-decoration: underline;
}


/* Finanzcheck */

.finance-check {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 320px;

    gap: 2rem;

    margin: 1rem 0 3rem;
    padding: 2rem;

    background: #f7faf5;

    border: 1px solid var(--benefits-border);
    border-radius: 8px;
}

.finance-check h2 {
    margin: 0 0 0.75rem;

    color: #203a1b;

    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.finance-check p {
    color: var(--benefits-muted);

    line-height: 1.6;
}

.finance-check ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

.finance-check li {
    margin-bottom: 0.45rem;
}

.finance-contact {
    padding: 1.4rem;

    color: #fff;

    background: var(--benefits-green-dark);

    border-radius: 7px;
}

.finance-contact span,
.finance-contact strong,
.finance-contact a {
    display: block;
}

.finance-contact span {
    margin-bottom: 0.3rem;

    color: #cfe2c4;

    font-size: 0.85rem;
}

.finance-contact strong {
    margin-bottom: 0.8rem;

    color: #fff;

    font-size: 1.2rem;
}

.finance-contact a {
    margin-bottom: 0.25rem;

    color: #fff;

    font-weight: 600;
}

.finance-contact a:hover {
    color: #fff;

    text-decoration: none;
}

.finance-contact p {
    margin: 1rem 0 0;

    color: #e7efe3;

    font-size: 0.94rem;
}


/* Rabatte */

.discount-placeholder {
    display: flex;

    align-items: center;

    gap: 1.2rem;

    padding: 1.5rem;

    background: #fff;

    border: 1px solid var(--benefits-border);
    border-radius: 8px;
}

.discount-placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 54px;
    height: 54px;

    color: var(--benefits-green-dark);

    background: var(--benefits-green-light);

    border-radius: 50%;

    font-size: 1.4rem;
    font-weight: 700;
}

.discount-placeholder h3 {
    margin: 0 0 0.4rem;

    color: #203a1b;
}

.discount-placeholder p {
    margin: 0;

    color: var(--benefits-muted);
}


/* Hinweisbox */

.benefits-note {
    margin-top: 1.5rem;
    padding: 1.2rem 1.4rem;

    background: #f7faf5;

    border-left: 4px solid var(--benefits-green);
}

.benefits-note p {
    margin: 0.5rem 0 0;

    color: var(--benefits-muted);
}


/* CTA */

.benefits-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    padding: 2rem 2.2rem;

    color: #fff;

    background: var(--benefits-green-dark);

    border-radius: 8px;
}

.benefits-cta-label {
    display: block;

    margin-bottom: 0.35rem;

    color: #cfe2c4;

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.benefits-cta h2 {
    margin: 0 0 0.5rem;

    color: #fff;
}

.benefits-cta p {
    margin: 0;

    color: #e7efe3;
}

.benefits-button {
    flex: 0 0 auto;

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

    min-height: 46px;

    padding: 0.75rem 1.25rem;

    color: #274d1f;

    background: #fff;

    border-radius: 5px;

    font-weight: 700;

    text-decoration: none;
}

.benefits-button:hover {
    color: #1f3d18;

    background: #f2f7ef;

    text-decoration: none;
}


/* Tablet */

@media (max-width: 1100px) {

    .benefits-overview {
        grid-template-columns: 1fr;
    }

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

    .finance-check {
        grid-template-columns: 1fr;
    }
}


/* Smartphone */

@media (max-width: 700px) {

    .benefits-hero {
        padding: 1.6rem 1.25rem;

        border-radius: 5px;
    }

    .benefits-hero h1 {
        font-size: 2.3rem;
    }

    .benefits-section {
        padding: 2rem 0;
    }

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

    .benefits-advice,
    .finance-check {
        padding: 1.5rem;

        border-radius: 5px;
    }

    .discount-placeholder {
        align-items: flex-start;
    }

    .benefits-cta {
        align-items: flex-start;
        flex-direction: column;

        padding: 1.5rem;

        border-radius: 5px;
    }

    .benefits-button {
        width: 100%;
    }
}

/* =========================================================
   Externe Verlinkungen / CTA
   ========================================================= */

.benefits-external-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1.5rem;

    margin-top: 1.5rem;
    padding: 1.25rem 1.4rem;

    background: #f7faf5;

    border: 1px solid var(--benefits-border);
    border-radius: 8px;
}

.benefits-external-link__label {
    display: block;

    margin-bottom: 0.25rem;

    color: var(--benefits-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.benefits-external-link strong {
    display: block;

    margin-bottom: 0.25rem;

    color: #203a1b;

    font-size: 1.05rem;
}

.benefits-external-link p {
    margin: 0;

    color: var(--benefits-muted);

    font-size: 0.92rem;
}

.benefits-external-link > a {
    flex: 0 0 auto;

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

    min-height: 44px;

    padding: 0.7rem 1rem;

    color: #fff;

    background: var(--benefits-green-dark);

    border-radius: 5px;

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

    text-decoration: none;
}

.benefits-external-link > a:hover {
    color: #fff;

    background: #1f3d18;

    text-decoration: none;
}

@media (max-width: 700px) {

    .benefits-external-link {
        align-items: flex-start;
        flex-direction: column;
    }

    .benefits-external-link > a {
        width: 100%;
    }
}
/* =========================================================
   Rabattübersicht
   ========================================================= */

.discount-tools {
    margin-bottom: 1.5rem;
}


/* Suche */

.discount-search-wrap {
    max-width: 620px;
    margin-bottom: 1rem;
}

.discount-search-wrap label {
    display: block;

    margin-bottom: 0.4rem;

    color: #203a1b;

    font-size: 0.9rem;
    font-weight: 700;
}

.discount-search {
    width: 100%;
    height: 48px;

    padding: 0 1rem;

    color: var(--benefits-text);

    background: #fff;

    border: 1px solid var(--benefits-border);
    border-radius: 6px;

    font: inherit;

    outline: none;

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

.discount-search:focus {
    border-color: var(--benefits-green);

    box-shadow:
        0 0 0 3px rgba(95, 138, 54, 0.12);
}

.discount-search::placeholder {
    color: #899386;
}


/* Filter */

.discount-filters {
    display: flex;
    flex-wrap: wrap;

    gap: 0.55rem;
}

.discount-filter {
    padding: 0.55rem 0.85rem;

    color: var(--benefits-green-dark);

    background: #fff;

    border: 1px solid var(--benefits-border);
    border-radius: 999px;

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

    cursor: pointer;

    transition:
        color 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease;
}

.discount-filter:hover {
    color: #fff;

    background: var(--benefits-green);

    border-color: var(--benefits-green);
}

.discount-filter.active {
    color: #fff;

    background: var(--benefits-green-dark);

    border-color: var(--benefits-green-dark);
}


/* Ergebnisanzahl */

.discount-result-info {
    min-height: 1.5rem;

    margin-top: 0.8rem;

    color: var(--benefits-muted);

    font-size: 0.85rem;
}


/* Karten */

.discount-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 0.9rem;
}

.discount-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 135px;

    padding: 1.15rem 1.2rem;

    background: #fff;

    border: 1px solid var(--benefits-border);
    border-radius: 7px;

    box-shadow:
        0 2px 7px rgba(30, 50, 25, 0.04);

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

.discount-card:hover {
    border-color: #adc69d;

    box-shadow:
        0 6px 16px rgba(30, 50, 25, 0.08);

    transform: translateY(-2px);
}

.discount-card[hidden] {
    display: none !important;
}


/* Kartenkopf */

.discount-card-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 1rem;
}

.discount-card h3 {
    margin: 0;

    color: #203a1b;

    font-size: 1rem;
    line-height: 1.35;
}


/* Rabattwert */

.discount-value {
    flex: 0 0 auto;

    color: var(--benefits-green-dark);

    font-size: 1.05rem;
    font-weight: 800;

    white-space: nowrap;
}

.discount-value--text {
    max-width: 125px;

    font-size: 0.83rem;
    line-height: 1.25;

    text-align: right;
    white-space: normal;
}


/* Beschreibung */

.discount-card > p {
    margin: 0.7rem 0 0;

    color: var(--benefits-muted);

    font-size: 0.88rem;
    line-height: 1.45;
}


/* Sonderbedingung */

.discount-condition {
    display: block;

    margin-top: auto;
    padding-top: 0.7rem;

    color: #566451;

    font-size: 0.79rem;
    line-height: 1.4;
}

.discount-condition::before {
    content: "ℹ";

    margin-right: 0.35rem;

    color: var(--benefits-green);
    font-weight: 700;
}


/* Keine Treffer */

.discount-no-results {
    margin-top: 1rem;
    padding: 1.5rem;

    background: #f7faf5;

    border: 1px solid var(--benefits-border);
    border-radius: 7px;

    text-align: center;
}

.discount-no-results strong {
    color: #203a1b;
}

.discount-no-results p {
    margin: 0.4rem 0 0;

    color: var(--benefits-muted);
}


/* Tablet */

@media (max-width: 1100px) {

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


/* Smartphone */

@media (max-width: 700px) {

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

    .discount-filters {
        gap: 0.4rem;
    }

    .discount-filter {
        padding: 0.5rem 0.7rem;

        font-size: 0.82rem;
    }

    .discount-card {
        min-height: auto;
    }
}


/* Sehr schmale Displays */

@media (max-width: 420px) {

    .discount-card-main {
        flex-direction: column;

        gap: 0.35rem;
    }

    .discount-value,
    .discount-value--text {
        max-width: none;

        text-align: left;
    }
}

/* =========================================================
   Haus & Garten
   ========================================================= */

.garden-page {
    --garden-green-dark: var(--sv-green-dark);
    --garden-green: var(--sv-green);
    --garden-green-light: var(--sv-green-light);
    --garden-border: var(--sv-border);
    --garden-text: var(--sv-text);
    --garden-muted: var(--sv-muted);

    color: var(--garden-text);
}


/* Hero */

.garden-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--garden-border);
    border-radius: 8px;
}

.garden-hero::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -120px;

    width: 300px;
    height: 300px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.garden-hero h1 {
    position: relative;
    z-index: 1;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.035em;
}

.garden-intro {
    position: relative;
    z-index: 1;

    max-width: 760px;

    margin: 0;

    color: var(--garden-muted);

    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.6;
}


/* Sektionen */

.garden-section {
    padding: 3rem 0;
}

.garden-section-heading {
    margin-bottom: 1.5rem;
}

.garden-section-heading > span {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--garden-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.garden-section-heading h2 {
    margin: 0 0 0.5rem;

    color: #203a1b;

    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.garden-section-heading p {
    max-width: 760px;

    margin: 0;

    color: var(--garden-muted);

    line-height: 1.6;
}


/* Bilder Pflanzung */

.garden-image-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;

    margin-bottom: 2rem;
}

.garden-image-card {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 220px;

    margin: 0;
    padding: 1rem;

    overflow: hidden;

    background: #f7f8f5;

    border: 1px solid var(--garden-border);
    border-radius: 8px;
}

.garden-image-card img {
    display: block;

    width: 100%;
    height: 220px;

    object-fit: contain;
}


/* Pflanzschritte */

.garden-steps {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0.9rem;
}

.garden-step {
    display: flex;

    align-items: flex-start;

    gap: 1rem;

    padding: 1.1rem 1.2rem;

    background: #fff;

    border: 1px solid var(--garden-border);
    border-radius: 7px;
}

.garden-step > span {
    flex: 0 0 auto;

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

    width: 34px;
    height: 34px;

    color: #fff;

    background: var(--garden-green-dark);

    border-radius: 50%;

    font-size: 0.85rem;
    font-weight: 700;
}

.garden-step h3 {
    margin: 0 0 0.25rem;

    color: #203a1b;

    font-size: 1rem;
}

.garden-step p {
    margin: 0;

    color: var(--garden-muted);

    font-size: 0.92rem;
    line-height: 1.5;
}


/* Obstbaumschnitt */

.garden-section--cut {
    padding-top: 1rem;
}

.garden-cut-layout {
    display: grid;

    grid-template-columns:
        360px minmax(0, 1fr);

    gap: 2rem;

    align-items: start;
}

.garden-cut-image {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1rem;

    background: #f7f8f5;

    border: 1px solid var(--garden-border);
    border-radius: 8px;
}

.garden-cut-image img {
    display: block;

    width: 100%;
    max-width: 330px;
    height: auto;

    object-fit: contain;
}

.garden-cut-list {
    display: grid;

    gap: 0.75rem;
}

.garden-cut-item {
    display: flex;

    align-items: flex-start;

    gap: 0.9rem;

    padding: 0.95rem 1rem;

    background: #fff;

    border: 1px solid var(--garden-border);
    border-radius: 7px;
}

.garden-cut-item > span {
    flex: 0 0 auto;

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

    width: 30px;
    height: 30px;

    color: var(--garden-green-dark);

    background: var(--garden-green-light);

    border-radius: 50%;

    font-size: 0.82rem;
    font-weight: 700;
}

.garden-cut-item p {
    margin: 0;

    color: var(--garden-muted);

    font-size: 0.92rem;
    line-height: 1.5;
}


/* Externer Link */

.garden-external-link {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 1.5rem;

    margin-top: 1rem;
    padding: 1.4rem;

    background: #f7faf5;

    border: 1px solid var(--garden-border);
    border-radius: 8px;
}

.garden-external-link__label {
    display: block;

    margin-bottom: 0.25rem;

    color: var(--garden-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.garden-external-link strong {
    display: block;

    margin-bottom: 0.25rem;

    color: #203a1b;

    font-size: 1.1rem;
}

.garden-external-link p {
    margin: 0;

    color: var(--garden-muted);

    font-size: 0.92rem;
    line-height: 1.5;
}

.garden-external-link > a {
    flex: 0 0 auto;

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

    min-height: 44px;

    padding: 0.7rem 1rem;

    color: #fff;

    background: var(--garden-green-dark);

    border-radius: 5px;

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

    text-decoration: none;
}

.garden-external-link > a:hover {
    color: #fff;

    background: #1f3d18;

    text-decoration: none;
}


/* Tablet */

@media (max-width: 1000px) {

    .garden-image-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .garden-cut-layout {
        grid-template-columns: 280px minmax(0, 1fr);
    }
}


/* Smartphone */

@media (max-width: 700px) {

    .garden-hero {
        padding: 1.6rem 1.25rem;
    }

    .garden-section {
        padding: 2rem 0;
    }

    .garden-image-grid,
    .garden-steps {
        grid-template-columns: 1fr;
    }

    .garden-image-card img {
        height: auto;
        max-height: 300px;
    }

    .garden-cut-layout {
        grid-template-columns: 1fr;
    }

    .garden-cut-image {
        max-width: 400px;
    }

    .garden-external-link {
        align-items: flex-start;
        flex-direction: column;
    }

    .garden-external-link > a {
        width: 100%;
    }
}

/* =========================================================
   Aktuelles
   ========================================================= */

.news-page {
    --news-green-dark: var(--sv-green-dark);
    --news-green: var(--sv-green);
    --news-green-light: var(--sv-green-light);
    --news-border: var(--sv-border);
    --news-text: var(--sv-text);
    --news-muted: var(--sv-muted);

    color: var(--news-text);
}


/* Hero */

.news-hero {
    position: relative;
    overflow: hidden;

    margin-bottom: 2.5rem;
    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--news-border);
    border-radius: 8px;
}

.news-hero::after {
    content: "";

    position: absolute;
    right: -80px;
    bottom: -120px;

    width: 300px;
    height: 300px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.news-hero h1 {
    position: relative;
    z-index: 1;

    margin: 0 0 0.8rem;

    color: #203a1b;

    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;
}

.news-hero p {
    position: relative;
    z-index: 1;

    max-width: 700px;

    margin: 0;

    color: var(--news-muted);

    font-size: 1.1rem;
    line-height: 1.6;
}


/* News-Liste */

.news-list {
    display: grid;
    gap: 1.5rem;
}


/* Karten */

.news-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid var(--news-border);
    border-radius: 8px;

    box-shadow:
        0 2px 8px rgba(30, 50, 25, 0.05);
}

.news-card--featured {
    display: grid;
    grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
}


/* Bild */

.news-card-image {
    display: block;

    min-height: 300px;

    overflow: hidden;

    background: #f5f7f3;
}

.news-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.news-card-image:hover img {
    transform: scale(1.025);
}


/* Inhalt */

.news-card-content {
    padding: 1.7rem;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 0.75rem;

    margin-bottom: 0.75rem;

    color: var(--news-muted);

    font-size: 0.82rem;
}

.news-meta span {
    padding: 0.25rem 0.55rem;

    color: var(--news-green-dark);

    background: var(--news-green-light);

    border-radius: 999px;

    font-weight: 700;
}

.news-card h2 {
    margin: 0 0 0.9rem;

    color: #203a1b;

    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.news-card p {
    margin: 0 0 0.9rem;

    color: var(--news-muted);

    line-height: 1.6;
}


/* Button */

.news-button {
    display: inline-flex;

    margin-top: 0.4rem;
    padding: 0.7rem 1rem;

    color: #fff;

    background: var(--news-green-dark);

    border-radius: 5px;

    font-weight: 700;

    text-decoration: none;
}

.news-button:hover {
    color: #fff;
    background: #1f3d18;
    text-decoration: none;
}


/* Dokument / Terminbild */

.news-document-image {
    margin-top: 1.25rem;
    padding: 1rem;

    background: #f7f8f5;

    border: 1px solid var(--news-border);
    border-radius: 7px;
}

.news-document-image img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 0 auto;
}


/* Responsive */

@media (max-width: 850px) {

    .news-card--featured {
        grid-template-columns: 1fr;
    }

    .news-card-image {
        min-height: 230px;
        max-height: 360px;
    }
}

@media (max-width: 700px) {

    .news-hero {
        padding: 1.6rem 1.25rem;
    }

    .news-card-content {
        padding: 1.3rem;
    }
}
/* =========================================================
   Geschichte
   ========================================================= */

.history-page {
    --history-green-dark: var(--sv-green-dark);
    --history-green: var(--sv-green);
    --history-green-light: var(--sv-green-light);
    --history-border: var(--sv-border);
    --history-text: var(--sv-text);
    --history-muted: var(--sv-muted);

    color: var(--history-text);
}


/* Hero */

.history-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--history-border);
    border-radius: 8px;
}

.history-hero::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 320px;
    height: 320px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.history-eyebrow {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 0.6rem;

    color: var(--history-green);

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

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.history-hero h1 {
    position: relative;
    z-index: 1;

    max-width: 900px;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;

    letter-spacing: -0.035em;
}

.history-intro {
    position: relative;
    z-index: 1;

    max-width: 760px;

    margin: 0;

    color: var(--history-muted);

    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    line-height: 1.6;
}


/* Sektionen */

.history-section {
    padding: 3rem 0;
}

.history-section-heading {
    margin-bottom: 1.5rem;
}

.history-section-heading > span {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--history-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.history-section-heading h2 {
    margin: 0;

    color: #203a1b;

    font-size: clamp(1.7rem, 3vw, 2.3rem);
}


/* Timeline */

.history-timeline {
    position: relative;

    display: grid;

    gap: 1rem;
}

.history-timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 55px;

    width: 2px;

    background: var(--history-border);
}

.history-timeline-item {
    position: relative;

    display: grid;

    grid-template-columns: 110px minmax(0, 1fr);

    gap: 1.5rem;
}

.history-year {
    position: relative;
    z-index: 1;

    align-self: start;

    padding: 0.55rem 0.7rem;

    color: #fff;

    background: var(--history-green-dark);

    border-radius: 6px;

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

    text-align: center;
}

.history-timeline-content {
    padding: 1.4rem 1.5rem;

    background: #fff;

    border: 1px solid var(--history-border);
    border-radius: 8px;
}

.history-timeline-content h3 {
    margin: 0 0 0.7rem;

    color: #203a1b;

    font-size: 1.15rem;
}

.history-timeline-content p {
    margin: 0 0 0.8rem;

    color: var(--history-muted);

    line-height: 1.6;
}

.history-timeline-content p:last-child {
    margin-bottom: 0;
}


/* Vorstand */

.history-board {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;
}

.history-person {
    padding: 1.3rem;

    background: #fff;

    border: 1px solid var(--history-border);
    border-radius: 8px;
}

.history-person span {
    display: block;

    margin-bottom: 0.3rem;

    color: var(--history-muted);

    font-size: 0.82rem;
}

.history-person strong {
    color: #203a1b;

    font-size: 1.05rem;
}


/* Funktionäre */

.history-names {
    display: flex;
    flex-wrap: wrap;

    gap: 0.55rem;
}

.history-names span {
    display: inline-block;

    padding: 0.55rem 0.8rem;

    color: var(--history-green-dark);

    background: var(--history-green-light);

    border: 1px solid var(--history-border);
    border-radius: 999px;

    font-size: 0.9rem;
}


/* Historisches Foto */

.history-photo-section {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 360px;

    gap: 2rem;

    align-items: center;

    margin-bottom: 1rem;
    padding: 2rem;

    background: #f7faf5;

    border: 1px solid var(--history-border);
    border-radius: 8px;
}

.history-photo-content h2 {
    margin: 0 0 0.7rem;

    color: #203a1b;

    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.history-photo-content p {
    margin: 0;

    color: var(--history-muted);

    line-height: 1.6;
}

.history-photo {
    margin: 0;
}

.history-photo img {
    display: block;

    width: 100%;
    height: auto;

    background: #fff;

    border: 1px solid var(--history-border);
    border-radius: 7px;
}

.history-photo figcaption {
    margin-top: 0.5rem;

    color: var(--history-muted);

    font-size: 0.78rem;
    text-align: center;
}


/* Responsive */

@media (max-width: 850px) {

    .history-board {
        grid-template-columns: 1fr;
    }

    .history-photo-section {
        grid-template-columns: 1fr;
    }

    .history-photo {
        max-width: 450px;
    }
}


@media (max-width: 700px) {

    .history-hero {
        padding: 1.6rem 1.25rem;
    }

    .history-section {
        padding: 2rem 0;
    }

    .history-timeline::before {
        display: none;
    }

    .history-timeline-item {
        grid-template-columns: 1fr;

        gap: 0.5rem;
    }

    .history-year {
        justify-self: start;
    }

    .history-photo-section {
        padding: 1.5rem;
    }
}
/* =========================================================
   Langjährige Funktionäre
   ========================================================= */

.history-functionaries {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top: 1px solid var(--history-border);
    border-left: 1px solid var(--history-border);

    background: #fff;
}

.history-functionary {
    padding: 0.9rem 1rem;

    color: #203a1b;

    border-right: 1px solid var(--history-border);
    border-bottom: 1px solid var(--history-border);

    font-size: 0.95rem;
}

.history-functionaries-more {
    margin: 1rem 0 0;

    color: var(--history-muted);

    font-size: 0.9rem;
    font-style: italic;
}


@media (max-width: 850px) {

    .history-functionaries {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 500px) {

    .history-functionaries {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   Vereinsvorstand
   ========================================================= */

.board-page {
    --board-green-dark: var(--sv-green-dark);
    --board-green: var(--sv-green);
    --board-green-light: var(--sv-green-light);
    --board-border: var(--sv-border);
    --board-text: var(--sv-text);
    --board-muted: var(--sv-muted);

    color: var(--board-text);
}


/* Hero */

.board-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--board-border);
    border-radius: 8px;
}

.board-hero::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 320px;
    height: 320px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.board-eyebrow {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 0.65rem;

    color: var(--board-green);

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

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.board-hero h1 {
    position: relative;
    z-index: 1;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.035em;
}

.board-intro {
    position: relative;
    z-index: 1;

    max-width: 760px;

    margin: 0;

    color: var(--board-muted);

    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    line-height: 1.6;
}

.board-stats {
    position: relative;
    z-index: 1;

    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

    margin-top: 1.8rem;
}

.board-stat {
    min-width: 180px;

    padding: 0.9rem 1rem;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 7px;
}

.board-stat strong {
    display: block;

    color: var(--board-green-dark);

    font-size: 1.25rem;
    line-height: 1.2;
}

.board-stat span {
    display: block;

    margin-top: 0.2rem;

    color: var(--board-muted);

    font-size: 0.9rem;
    line-height: 1.4;
}


/* Sektionen */

.board-section {
    padding: 3rem 0;
}

.board-section-heading {
    margin-bottom: 1.5rem;
}

.board-section-heading > span {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--board-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.board-section-heading h2 {
    margin: 0;

    color: #203a1b;

    font-size: clamp(1.6rem, 3vw, 2.2rem);
}


/* Karten */

.board-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;
}

.board-card {
    padding: 1.4rem;

    background: #fff;

    border: 1px solid var(--board-border);
    border-radius: 8px;

    box-shadow:
        0 2px 8px rgba(30, 50, 25, 0.04);
}

.board-card--highlight {
    background: #f7faf5;
    border-color: #cfdcc7;
}

.board-role {
    display: inline-block;

    margin-bottom: 0.75rem;
    padding: 0.35rem 0.65rem;

    color: var(--board-green-dark);

    background: var(--board-green-light);

    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 700;
}

.board-card h3 {
    margin: 0;

    color: #203a1b;

    font-size: 1.15rem;
    line-height: 1.35;
}


/* Hinweis */

.board-note {
    margin-top: 1.5rem;
    padding: 1.2rem 1.4rem;

    background: #f7faf5;

    border-left: 4px solid var(--board-green);
}

.board-note p {
    margin: 0.45rem 0 0;

    color: var(--board-muted);

    line-height: 1.5;
}


/* Team-Bereich */

.board-team-section {
    margin-bottom: 3rem;
    padding: 2rem;

    background: #f7faf5;

    border: 1px solid var(--board-border);
    border-radius: 8px;
}

.board-team-header h2 {
    margin: 0 0 0.75rem;

    color: #203a1b;

    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.board-team-header p {
    max-width: 760px;

    margin: 0;

    color: var(--board-muted);

    line-height: 1.6;
}

.board-team-list {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;

    margin-top: 1.5rem;
}

.board-team-member {
    padding: 1.2rem;

    background: #fff;

    border: 1px solid var(--board-border);
    border-radius: 7px;
}

.board-team-member strong {
    display: block;

    margin-bottom: 0.3rem;

    color: #203a1b;

    font-size: 1.05rem;
}

.board-team-member span {
    color: var(--board-muted);

    font-size: 0.92rem;
}


/* Kontakt */

.board-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    padding: 2rem 2.2rem;

    color: #fff;

    background: var(--board-green-dark);

    border-radius: 8px;
}

.board-contact-label {
    display: block;

    margin-bottom: 0.35rem;

    color: #cfe2c4;

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.board-contact h2 {
    margin: 0 0 0.5rem;

    color: #fff;

    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.board-contact p {
    margin: 0;

    color: #e7efe3;

    line-height: 1.6;
}

.board-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;

    flex: 0 0 auto;
}

.board-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0.75rem 1.25rem;

    color: var(--board-green-dark);

    background: #fff;

    border-radius: 5px;

    font-weight: 700;

    text-decoration: none;
}

.board-button:hover {
    color: #1f3d18;

    background: #f2f7ef;

    text-decoration: none;
}

.board-secondary-link {
    color: #fff;

    font-weight: 600;
    text-decoration: none;
}

.board-secondary-link:hover {
    color: #fff;
    text-decoration: underline;
}


/* Tablet */

@media (max-width: 1000px) {

    .board-grid,
    .board-team-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* Smartphone */

@media (max-width: 700px) {

    .board-hero {
        padding: 1.6rem 1.25rem;

        border-radius: 5px;
    }

    .board-section {
        padding: 2rem 0;
    }

    .board-grid,
    .board-team-list {
        grid-template-columns: 1fr;
    }

    .board-team-section {
        padding: 1.5rem;

        border-radius: 5px;
    }

    .board-contact {
        align-items: flex-start;
        flex-direction: column;

        padding: 1.5rem;

        border-radius: 5px;
    }

    .board-contact-actions {
        width: 100%;
    }

    .board-button {
        width: 100%;
    }
}
/* =========================================================
   Vereinsstatuten
   ========================================================= */

.statutes-page {
    --statutes-green-dark: var(--sv-green-dark);
    --statutes-green: var(--sv-green);
    --statutes-green-light: var(--sv-green-light);
    --statutes-border: var(--sv-border);
    --statutes-text: var(--sv-text);
    --statutes-muted: var(--sv-muted);

    color: var(--statutes-text);
}


/* Hero */

.statutes-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--statutes-border);
    border-radius: 8px;
}

.statutes-hero::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 320px;
    height: 320px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.statutes-eyebrow {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 0.6rem;

    color: var(--statutes-green);

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

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.statutes-hero h1 {
    position: relative;
    z-index: 1;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;

    letter-spacing: -0.035em;
}

.statutes-intro {
    position: relative;
    z-index: 1;

    max-width: 750px;

    margin: 0;

    color: var(--statutes-muted);

    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    line-height: 1.6;
}

.statutes-version {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: baseline;

    gap: 0.45rem;

    margin-top: 1.5rem;
    padding: 0.55rem 0.8rem;

    background: rgba(255, 255, 255, 0.7);

    border-radius: 5px;
}

.statutes-version span {
    color: var(--statutes-muted);

    font-size: 0.85rem;
}

.statutes-version strong {
    color: var(--statutes-green-dark);
}


/* Infobereich */

.statutes-info {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;

    margin: 1.5rem 0 3rem;
}

.statutes-info > div {
    padding: 1.1rem 1.2rem;

    background: #fff;

    border: 1px solid var(--statutes-border);
    border-radius: 7px;
}

.statutes-info strong,
.statutes-info span {
    display: block;
}

.statutes-info strong {
    margin-bottom: 0.2rem;

    color: #203a1b;

    font-size: 0.98rem;
}

.statutes-info span {
    color: var(--statutes-muted);

    font-size: 0.85rem;
}


/* Überschrift */

.statutes-section-heading {
    margin-bottom: 1.5rem;
}

.statutes-section-heading > span {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--statutes-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.statutes-section-heading h2 {
    margin: 0 0 0.5rem;

    color: #203a1b;

    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.statutes-section-heading p {
    margin: 0;

    color: var(--statutes-muted);
}


/* Accordion */

.statutes-accordion {
    display: grid;

    gap: 0.6rem;
}

.statutes-item {
    overflow: hidden;

    background: #fff;

    border: 1px solid var(--statutes-border);
    border-radius: 7px;
}

.statutes-item summary {
    display: flex;
    align-items: center;

    gap: 1rem;

    padding: 1rem 1.2rem;

    color: #203a1b;

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

    cursor: pointer;

    list-style: none;

    transition: background 0.15s ease;
}

.statutes-item summary::-webkit-details-marker {
    display: none;
}

.statutes-item summary:hover {
    background: #f7faf5;
}


/* + Symbol */

.statutes-item summary::after {
    content: "+";

    margin-left: auto;

    color: var(--statutes-green);

    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1;
}

.statutes-item[open] summary::after {
    content: "−";
}

.statutes-item[open] summary {
    background: var(--statutes-green-light);

    border-bottom: 1px solid var(--statutes-border);
}


/* Paragraphnummer */

.statutes-number {
    flex: 0 0 auto;

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

    min-width: 48px;

    padding: 0.35rem 0.5rem;

    color: #fff;

    background: var(--statutes-green-dark);

    border-radius: 5px;

    font-size: 0.82rem;
}


/* Text */

.statutes-item-content {
    max-width: 950px;

    padding: 1.4rem 1.5rem 1.5rem;

    color: var(--statutes-text);

    line-height: 1.65;
}

.statutes-item-content p {
    margin: 0 0 1rem;

    color: var(--statutes-muted);
}

.statutes-item-content h3 {
    margin: 1.5rem 0 0.7rem;

    color: #203a1b;

    font-size: 1.05rem;
}

.statutes-item-content h3:first-child {
    margin-top: 0;
}


/* Listen */

.statutes-item-content ol {
    margin: 0;

    padding-left: 1.5rem;
}

.statutes-item-content li {
    margin-bottom: 0.75rem;

    padding-left: 0.25rem;
}

.statutes-item-content li:last-child {
    margin-bottom: 0;
}

.statutes-alpha {
    margin-top: 0.7rem !important;

    list-style-type: lower-alpha;
}


/* Fußzeile */

.statutes-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    margin-top: 2rem;
    padding: 1rem 1.2rem;

    background: #f7faf5;

    border-left: 4px solid var(--statutes-green);
}

.statutes-footer span {
    color: var(--statutes-muted);

    font-size: 0.9rem;
}

.statutes-footer strong {
    color: #203a1b;
}


/* Tablet */

@media (max-width: 900px) {

    .statutes-info {
        grid-template-columns: 1fr;
    }
}


/* Smartphone */

@media (max-width: 700px) {

    .statutes-hero {
        padding: 1.6rem 1.25rem;
    }

    .statutes-info {
        margin-bottom: 2rem;
    }

    .statutes-item summary {
        gap: 0.7rem;

        padding: 0.9rem 1rem;

        font-size: 0.92rem;
    }

    .statutes-number {
        min-width: 43px;
    }

    .statutes-item-content {
        padding: 1.2rem 1rem 1.3rem;

        font-size: 0.92rem;
    }

    .statutes-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* =========================================================
   Impressum
   ========================================================= */

.imprint-page {
    --imprint-green-dark: var(--sv-green-dark);
    --imprint-green: var(--sv-green);
    --imprint-green-light: var(--sv-green-light);
    --imprint-border: var(--sv-border);
    --imprint-text: var(--sv-text);
    --imprint-muted: var(--sv-muted);

    color: var(--imprint-text);
}


/* Hero */

.imprint-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--imprint-border);
    border-radius: 8px;
}

.imprint-hero::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 320px;
    height: 320px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.imprint-eyebrow {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 0.6rem;

    color: var(--imprint-green);

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

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.imprint-hero h1 {
    position: relative;
    z-index: 1;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;

    letter-spacing: -0.035em;
}

.imprint-intro {
    position: relative;
    z-index: 1;

    max-width: 720px;

    margin: 0;

    color: var(--imprint-muted);

    font-size: 1.1rem;
    line-height: 1.6;
}


/* Bereich */

.imprint-section {
    padding: 3rem 0;
}

.imprint-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1rem;
}

.imprint-card {
    padding: 1.5rem;

    background: #fff;

    border: 1px solid var(--imprint-border);
    border-radius: 8px;

    box-shadow:
        0 2px 8px rgba(30, 50, 25, 0.04);
}

.imprint-card-label {
    display: block;

    margin-bottom: 0.4rem;

    color: var(--imprint-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.imprint-card h2 {
    margin: 0 0 1.2rem;

    color: #203a1b;

    font-size: 1.35rem;
}


/* Detail-Liste */

.imprint-details {
    margin: 0;
}

.imprint-details > div {
    padding: 0.8rem 0;

    border-top: 1px solid var(--imprint-border);
}

.imprint-details > div:first-child {
    border-top: 0;
}

.imprint-details dt {
    margin-bottom: 0.2rem;

    color: var(--imprint-muted);

    font-size: 0.82rem;
    font-weight: 600;
}

.imprint-details dd {
    margin: 0;

    color: #203a1b;

    font-size: 0.98rem;
    line-height: 1.5;
}

.imprint-details a {
    color: var(--imprint-green-dark);

    font-weight: 600;

    text-decoration: none;
}

.imprint-details a:hover {
    text-decoration: underline;
}


/* Vereinszweck */

.imprint-purpose {
    padding: 2rem;

    background: #f7faf5;

    border: 1px solid var(--imprint-border);
    border-radius: 8px;
}

.imprint-purpose h2 {
    margin: 0 0 0.75rem;

    color: #203a1b;

    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.imprint-purpose p {
    max-width: 820px;

    margin: 0 0 0.8rem;

    color: var(--imprint-muted);

    line-height: 1.65;
}

.imprint-source {
    display: inline-block;

    margin-top: 0.4rem;

    color: var(--imprint-green-dark);

    font-size: 0.82rem;
    font-weight: 700;
}


/* Responsive */

@media (max-width: 800px) {

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

@media (max-width: 700px) {

    .imprint-hero {
        padding: 1.6rem 1.25rem;
    }

    .imprint-section {
        padding: 2rem 0;
    }

    .imprint-purpose {
        padding: 1.5rem;
    }
}
/* =========================================================
   Datenschutz
   ========================================================= */

.privacy-page {
    --privacy-green-dark: #274d1f;
    --privacy-green: #5f8a36;
    --privacy-green-light: #eef4ea;
    --privacy-border: #d8e2d2;
    --privacy-text: #243024;
    --privacy-muted: #657061;

    color: var(--privacy-text);
}


/* Hero */

.privacy-hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 5vw, 4rem);

    background:
        linear-gradient(
            135deg,
            #f4f8f1 0%,
            #e6efe0 100%
        );

    border: 1px solid var(--privacy-border);
    border-radius: 8px;
}

.privacy-hero::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 320px;
    height: 320px;

    background: rgba(95, 138, 54, 0.08);

    border-radius: 50%;
}

.privacy-eyebrow {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 0.6rem;

    color: var(--privacy-green);

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

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.privacy-hero h1 {
    position: relative;
    z-index: 1;

    margin: 0 0 1rem;

    color: #203a1b;

    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;

    letter-spacing: -0.035em;
}

.privacy-intro {
    position: relative;
    z-index: 1;

    max-width: 780px;

    margin: 0;

    color: var(--privacy-muted);

    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    line-height: 1.6;
}


/* Sektionen */

.privacy-section {
    padding: 2.6rem 0;

    border-bottom: 1px solid var(--privacy-border);
}

.privacy-section:last-of-type {
    border-bottom: 0;
}

.privacy-section-heading {
    margin-bottom: 1.35rem;
}

.privacy-section-heading > span {
    display: block;

    margin-bottom: 0.35rem;

    color: var(--privacy-green);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-section-heading h2 {
    margin: 0;

    color: #203a1b;

    font-size: clamp(1.55rem, 3vw, 2.1rem);
}


/* Fließtext */

.privacy-text {
    max-width: 900px;
}

.privacy-text p {
    margin: 0 0 1rem;

    color: var(--privacy-muted);

    line-height: 1.65;
}

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

.privacy-text ul {
    margin: 1rem 0 1.3rem;

    padding-left: 1.3rem;
}

.privacy-text li {
    margin-bottom: 0.4rem;

    line-height: 1.5;
}

.privacy-text a {
    color: var(--privacy-green-dark);

    font-weight: 600;
}

.privacy-text--after {
    margin-top: 1.5rem;
}


/* Kontaktdaten */

.privacy-contact {
    max-width: 600px;

    padding: 1.5rem;

    background: #f7faf5;

    border: 1px solid var(--privacy-border);
    border-radius: 8px;
}

.privacy-contact strong {
    display: block;

    margin-bottom: 0.7rem;

    color: #203a1b;

    font-size: 1.15rem;
}

.privacy-contact p {
    margin: 0 0 0.65rem;

    color: var(--privacy-muted);

    line-height: 1.55;
}

.privacy-contact p:last-child {
    margin-bottom: 0;
}

.privacy-contact a {
    color: var(--privacy-green-dark);

    font-weight: 600;
}


/* Kein Tracking */

.privacy-highlight {
    display: flex;
    align-items: flex-start;

    gap: 1rem;

    max-width: 900px;

    margin-bottom: 1.5rem;
    padding: 1.25rem 1.4rem;

    background: var(--privacy-green-light);

    border: 1px solid var(--privacy-border);
    border-radius: 8px;
}

.privacy-highlight-icon {
    flex: 0 0 auto;

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

    width: 38px;
    height: 38px;

    color: #fff;

    background: var(--privacy-green-dark);

    border-radius: 50%;

    font-weight: 700;
}

.privacy-highlight h3 {
    margin: 0 0 0.35rem;

    color: #203a1b;

    font-size: 1.05rem;
}

.privacy-highlight p {
    margin: 0;

    color: var(--privacy-muted);

    line-height: 1.5;
}


/* Betroffenenrechte */

.privacy-rights {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 0.8rem;
}

.privacy-right {
    padding: 1.1rem;

    background: #fff;

    border: 1px solid var(--privacy-border);
    border-radius: 7px;
}

.privacy-right strong {
    display: block;

    margin-bottom: 0.3rem;

    color: #203a1b;

    font-size: 0.98rem;
}

.privacy-right span {
    color: var(--privacy-muted);

    font-size: 0.88rem;
    line-height: 1.45;
}


/* Datenschutzbehörde */

.privacy-authority {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-top: 2.5rem;
    padding: 2rem;

    background: #f7faf5;

    border: 1px solid var(--privacy-border);
    border-radius: 8px;
}

.privacy-authority h2 {
    margin: 0 0 0.7rem;

    color: #203a1b;

    font-size: clamp(1.5rem, 3vw, 2rem);
}

.privacy-authority p {
    max-width: 720px;

    margin: 0 0 0.8rem;

    color: var(--privacy-muted);

    line-height: 1.6;
}

.privacy-authority-address {
    font-size: 0.9rem;
}

.privacy-external-button {
    flex: 0 0 auto;

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

    min-height: 44px;

    padding: 0.7rem 1rem;

    color: #fff;

    background: var(--privacy-green-dark);

    border-radius: 5px;

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

    text-decoration: none;
}

.privacy-external-button:hover {
    color: #fff;

    background: #1f3d18;

    text-decoration: none;
}


/* Footer */

.privacy-footer {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;

    color: var(--privacy-muted);

    background: #f7faf5;

    border-left: 4px solid var(--privacy-green);

    font-size: 0.87rem;
    line-height: 1.5;
}


/* Tablet */

@media (max-width: 1000px) {

    .privacy-rights {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* Smartphone */

@media (max-width: 700px) {

    .privacy-hero {
        padding: 1.6rem 1.25rem;
    }

    .privacy-section {
        padding: 2rem 0;
    }

    .privacy-rights {
        grid-template-columns: 1fr;
    }

    .privacy-authority {
        align-items: flex-start;
        flex-direction: column;

        padding: 1.5rem;
    }

    .privacy-external-button {
        width: 100%;
    }
}

.com-content-article__body hr,
.item-page hr {
    border: 0;
    height: 2px;
    background: #8fa482;
    margin: 2.5rem 0;
}