#ttaddress__map {
    height: 640px;
    min-height: 640px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin-bottom: 0;
}

/* Einzel-Standort-Hero: Karte füllt das Hero-Grid (Höhe vom Grid, nicht fix) */
.lb-standort-hero #ttaddress__map {
    height: 100%;
    min-height: 0;
}

/*
 * Grüne Einfärbung der Kartenkacheln gemäß SVG-Design:
 * Entspricht mix-blend-mode:color mit #65B32E (H≈92°) bei fill-opacity 0.22.
 * CSS-Filter statt ::after-Overlay, weil Leaflet transform:translate3d() auf .leaflet-map-pane
 * ein eigenes GPU-Compositing-Layer erzeugt und mix-blend-mode dort nicht zuverlässig greift.
 * Basis: CartoDB Positron (sehr hell, fast farbneutral).
 * sepia(0.5) erzeugt einen Warmton (H≈35°), hue-rotate(57deg) schiebt ihn zu H≈92° (Raiffeisen-Grün).
 * Höhere Sättigung nötig, da Positron kaum Eigenfarbe mitbringt.
 */
#ttaddress__map .leaflet-tile-pane {
    /*
    filter: sepia(0.5) hue-rotate(57deg) saturate(1.7) brightness(0.88);
    */
}

/* Zoom-Controls: oben rechts statt oben links */
#ttaddress__map .leaflet-top.leaflet-left {
    left: auto;
    right: 10px;
    top: 10px;
}

/* Zoom-Control-Container: horizontale weiße Pille mit Schatten */
#ttaddress__map .leaflet-control-zoom.leaflet-bar {
    display: flex;
    flex-direction: row;
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #fff;
    margin: 0;
}

/* Beide Zoom-Buttons */
#ttaddress__map .leaflet-control-zoom.leaflet-bar a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #0e1a07;
    font-size: 20px;
    font-weight: 300;
    border: none;
    border-radius: 0;
    float: none;
    display: block;
    text-align: center;
    text-decoration: none;
}

/* Vertikaler Divider zwischen + und − */
#ttaddress__map .leaflet-control-zoom.leaflet-bar a.leaflet-control-zoom-in {
    border-right: 1px solid rgba(43, 80, 22, 0.11);
    border-bottom: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#ttaddress__map .leaflet-control-zoom.leaflet-bar a.leaflet-control-zoom-out {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#ttaddress__map .leaflet-control-zoom.leaflet-bar a:hover,
#ttaddress__map .leaflet-control-zoom.leaflet-bar a:focus {
    background: #f5f5f5;
    color: #0e1a07;
}

.lb-standorte-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.lb-standorte-item {
    background: #F1F7EC;
    border-radius: 16px;
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #1D330D;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    min-height: 176px;
    box-sizing: border-box;
    position: relative;
    transition: background 0.15s ease;
}

.lb-standorte-item:hover {
    background: #E0F0D5;
}

.lb-standorte-item__link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 16px;
    font-size: 0;
    overflow: hidden;
}

.lb-standorte-item-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lb-standorte-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #0E1A07;
    line-height: 1.3;
}

.lb-standorte-name__icon {
    flex: 0 0 auto;
    width: 28px;
    height: auto;
    color: #65B32E;
}

/* Hafen-Icon in der Übersicht: Tooltip-Trigger für die Wasserstraßen-Angabe.
   z-index hebt es über das Klick-Overlay (.lb-standorte-item__link), damit
   Hover/Fokus greifen. */
.lb-standorte-ship {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    cursor: help;
    color: #65B32E;
}

.lb-standorte-ship:focus-visible {
    outline: 2px solid #488020;
    outline-offset: 2px;
    border-radius: 4px;
}

.lb-standorte-ship .lb-standort-waterway__tip {
    color: #fff;
}

.lb-standorte-ship:hover .lb-standort-waterway__tip,
.lb-standorte-ship:focus .lb-standort-waterway__tip,
.lb-standorte-ship:focus-within .lb-standort-waterway__tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lb-standorte-addr {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 1px;
    color: #1D330D;
    font-size: 13px;
}

.lb-standorte-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.lb-standorte-tag {
    background: #E0F0D5;
    color: #1D330D;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb-standorte-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    text-decoration: none;
    color: #65B32E;
    position: relative;
    z-index: 2;
}

.lb-standorte-phone {
    color: #1D330D;
    font-size: 13px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.lb-standorte-phone:hover {
    text-decoration: underline;
}

/* ── Standort Detail Hero ── */
.lb-standort-hero {
    display: grid;
    grid-template-columns: 2fr 3fr;
    min-height: 540px;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(72, 128, 32, 0.10);
    box-shadow: 0 8px 28px rgba(14, 26, 7, 0.08);
}

.lb-standort-panel {
    position: relative;
    background:
        radial-gradient(ellipse 90% 70% at 100% 100%, rgba(101, 179, 46, 0.06) 0%, transparent 70%),
        linear-gradient(160deg, #F8FBF4 0%, #ECF5E1 100%);
    display: flex;
    flex-direction: column;
    padding: 2.75rem 3rem 3rem;
    overflow: hidden;
}

/* Dekoratives, weiches Glow unten rechts — verschmilzt mit dem Panel */
.lb-standort-panel__deco {
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(101, 179, 46, 0.16) 0%,
        rgba(101, 179, 46, 0.10) 20%,
        rgba(101, 179, 46, 0.05) 40%,
        rgba(101, 179, 46, 0.02) 60%,
        rgba(101, 179, 46, 0) 80%
    );
    pointer-events: none;
    filter: blur(40px);
}

/* Grüner Akzentbalken am linken Rand */
.lb-standort-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #65B32E 0%, #488020 100%);
}

.lb-standort-panel__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.lb-standort-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0E1A07;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-align: left;
}

.lb-standort-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(72, 128, 32, 0.18);
}

.lb-standort-meta__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    color: #1D330D;
}

.lb-standort-meta__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid rgba(72, 128, 32, 0.15);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(14, 26, 7, 0.05);
    color: #488020;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lb-standort-meta__item:hover .lb-standort-meta__icon-wrap {
    background: #488020;
    border-color: #488020;
    color: #fff;
}

.lb-standort-meta__icon {
    width: 22px;
    height: 22px;
    display: block;
}

.lb-standort-address {
    font-style: normal;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: #1D330D;
    margin: 0;
}

/* Hafenstandorte: Wasserstraßen-Angabe (z.B. "Mittellandkanal KM 107,2")
   als kleines Schiffsicon mit Tooltip beim Hovern – damit sie nicht wie
   Teil der Adresse wirkt. */
.lb-standort-waterway {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 8px;
    vertical-align: middle;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(72, 128, 32, 0.15);
    color: #488020;
    cursor: help;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lb-standort-waterway:hover,
.lb-standort-waterway:focus-visible {
    background: #488020;
    border-color: #488020;
    color: #fff;
    outline: none;
}

.lb-standort-waterway__icon {
    width: 18px;
    height: 18px;
    display: block;
}

.lb-standort-waterway__tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
    white-space: nowrap;
    background: #0E1A07;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 7px 11px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(14, 26, 7, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 20;
}

.lb-standort-waterway__tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #0E1A07;
}

.lb-standort-waterway:hover .lb-standort-waterway__tip,
.lb-standort-waterway:focus .lb-standort-waterway__tip,
.lb-standort-waterway:focus-within .lb-standort-waterway__tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lb-standort-phone {
    color: #0E1A07;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.lb-standort-phone:hover,
.lb-standort-phone:focus {
    color: #488020;
    text-decoration: none;
}

.lb-standort-email {
    color: #0E1A07;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease;
}

.lb-standort-email:hover,
.lb-standort-email:focus {
    color: #488020;
    text-decoration: none;
}

/* Öffnungszeiten (aus dem Description-Feld) – eigener Block unter dem Hero,
   im Look der Tankstellen-Detailseiten: zentrierte Überschrift mit grünem
   Strich, darunter eine Card mit "Öffnungszeiten"-Headline und Tabelle. */
.lb-standort-info {
    /* .tt_address_list ist ein column-Flex-Container; ohne width:100% würde
       die Section wegen margin:auto auf Inhaltsbreite schrumpfen statt sich
       (wie der Hero) auf die volle Breite zu strecken. */
    width: 100%;
    max-width: 980px;
    margin: 2.5rem auto 0;
}

/* Standortname als Section-Heading mit grünem Strich darunter */
.lb-standort-info__header {
    text-align: center;
    margin: 0 auto 36px;
    padding-bottom: 24px;
    position: relative;
}

/* Untertitel in grün – klassische Tagline unter dem Standortnamen */
.lb-standort-info__subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--neutral-green-500, #488020);
    margin: 8px 0 0;
    text-align: center;
}

.lb-standort-info__header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #65B32E 0%, #488020 100%);
    border-radius: 2px;
}

.lb-standort-info__title {
    font-family: 'Barlow', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: var(--neutral-green-900, #0E1A07);
    margin: 0;
    text-align: center;
}

/* Card-Container für die Öffnungszeiten – mehrere Abschnitte nebeneinander */
.lb-standort-info__card {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 48px;
    background: #fff;
    border: 1px solid rgba(72, 128, 32, 0.10);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 2px 10px rgba(14, 26, 7, 0.04);
}

/* Jede Spalte entspricht einem col-md-6 der Tankstellenseiten: halbe Breite
   der voll breiten Card. Ein Abschnitt steht links in der halben Breite,
   mehrere Abschnitte zwei nebeneinander. */
.lb-standort-hours-col {
    flex: 0 1 calc(50% - 24px);
    min-width: 0;
}

/* "Öffnungszeiten"-Headline mit grünem Unterstrich */
.lb-standort-info__heading {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--neutral-green-900, #0E1A07);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--neutral-green-200, #C0E0AB);
    position: relative;
    text-align: left;
    letter-spacing: 0.1px;
}

.lb-standort-info__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 36px;
    height: 2px;
    background: var(--neutral-green-500, #488020);
}

.lb-standort-hours {
    font-size: 15px;
    line-height: 1.55;
    color: var(--neutral-green-800, #1D330D);
}

/* Die im RTE enthaltene Überschrift "Öffnungszeiten" entfällt –
   die eigene Headline übernimmt das. */
.lb-standort-hours h1,
.lb-standort-hours h2,
.lb-standort-hours h3,
.lb-standort-hours h4 {
    display: none;
}

/* Tabelle: vom rohen RTE-Look zu sauberer Definition-Liste, ohne eigene
   Hervorhebung. Inline-Breite/-Farben/-Rahmen werden neutralisiert. */
.lb-standort-hours figure.table,
.lb-standort-hours figure {
    width: auto !important;
    max-width: 100%;
    margin: 0;
    overflow-x: auto;
}

.lb-standort-hours table {
    width: 100%;
    background: transparent !important;
    border-collapse: collapse;
}

.lb-standort-hours td {
    background: transparent !important;
    border: 0 !important;
    border-top: 1px solid rgba(72, 128, 32, 0.10) !important;
    padding: 10px 16px 10px 0 !important;
    vertical-align: middle;
    white-space: nowrap;
}

.lb-standort-hours tr:first-child td {
    border-top: 0 !important;
    padding-top: 2px !important;
}

.lb-standort-hours td:first-child {
    color: var(--neutral-green-800, #1D330D);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    width: 38%;
}

.lb-standort-hours td:last-child {
    font-weight: 600;
    padding-right: 0 !important;
}

.lb-standort-hours p {
    margin: 0;
}

@media (max-width: 767px) {
    .lb-standort-info {
        margin-top: 1.75rem;
    }
    .lb-standort-info__header {
        margin-bottom: 24px;
    }
    .lb-standort-info__title {
        font-size: 24px;
    }
    .lb-standort-info__card {
        padding: 22px 22px;
    }
    .lb-standort-hours-col {
        flex-basis: 100%;
    }
}

#lb-standort-map {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    margin-bottom: 28px;
}

/* ── Leaflet Popup ── */
#ttaddress__map .leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
    overflow: hidden;
}

#ttaddress__map .leaflet-popup-content {
    margin: 0;
}

#ttaddress__map .leaflet-popup-tip-container {
    margin-top: -1px;
}

.lb-popup {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    color: #1D330D;
    min-width: 200px;
}

.lb-popup__name {
    font-size: 1rem;
    font-weight: 700;
    color: #0E1A07;
    padding: 0.875rem 1rem 0.625rem;
    border-bottom: 1px solid #E8F3DF;
}

.lb-popup__hours {
    padding: 0.625rem 1rem 0.5rem;
}

.lb-popup__hours-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #488020;
    margin-bottom: 0.375rem;
}

.lb-popup__hours-row {
    display: flex;
    gap: 0.5rem;
    line-height: 1.5;
    font-size: 0.8125rem;
}

.lb-popup__hours-day {
    color: #488020;
    font-weight: 500;
    white-space: nowrap;
    min-width: 5rem;
}

.lb-popup__hours-time {
    color: #1D330D;
}

.lb-popup__cta {
    display: block;
    padding: 0.625rem 1rem;
    background: #65B32E;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s ease;
}

.lb-popup__cta:hover {
    background: #488020;
    color: #fff;
}

@media (max-width: 991px) {
    .lb-standort-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    #ttaddress__map {
        height: 520px;
        min-height: 520px;
    }
    /* Einzel-Standort gestapelt: feste Höhe statt 100% (Grid kollabiert sonst) */
    .lb-standort-hero #ttaddress__map {
        height: 420px;
        min-height: 420px;
    }
    .lb-standort-panel {
        padding: 2rem 2rem 2.5rem;
    }
    .lb-standort-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .lb-standort-hero {
        border-radius: 18px;
    }
    .lb-standort-panel {
        padding: 1.75rem 1.25rem 2rem;
    }
    .lb-standort-panel__content {
        gap: 1.25rem;
    }
    .lb-standort-title {
        font-size: 1.625rem;
        line-height: 1.15;
        letter-spacing: -0.4px;
    }
    .lb-standort-meta {
        padding-top: 1rem;
    }
    .lb-standort-meta__icon-wrap {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    .lb-standort-meta__icon {
        width: 18px;
        height: 18px;
    }
    .lb-standort-phone {
        font-size: 1.125rem;
    }
    #ttaddress__map {
        height: 380px;
        min-height: 380px;
    }
    .lb-standort-hero #ttaddress__map {
        height: 320px;
        min-height: 320px;
    }
}

/* ────────────────────────────────────────────────────────────
   Standort-/Tankstellen-Detail: Content unter dem Hero
   (Editor-Content mit Bootstrap row/col-md-6, Tables, Bild)
   ──────────────────────────────────────────────────────────── */

body:has(.lb-standort-hero) .frame-type-text {
    padding: 56px 0 24px;
}

/* Header-Block: Name + Subtitle als Section-Heading */
body:has(.lb-standort-hero) .frame-type-text .frame-header {
    text-align: center;
    margin: 0 auto 36px;
    max-width: 720px;
    padding-bottom: 24px;
    position: relative;
}

body:has(.lb-standort-hero) .frame-type-text .frame-header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #65B32E 0%, #488020 100%);
    border-radius: 2px;
}

body:has(.lb-standort-hero) .frame-type-text .element-header {
    font-family: 'Barlow', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: var(--neutral-green-900, #0E1A07);
    margin: 0 0 8px;
}

body:has(.lb-standort-hero) .frame-type-text .element-subheader {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--neutral-green-500, #488020);
    margin: 0;
    text-align: center;
}

/* Card-Container für die row-Blöcke */
body:has(.lb-standort-hero) .frame-type-text .row {
    background: #fff;
    border: 1px solid rgba(72, 128, 32, 0.10);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 0 0 20px;
    box-shadow: 0 2px 10px rgba(14, 26, 7, 0.04);
    --bs-gutter-x: 2.5rem;
}

body:has(.lb-standort-hero) .frame-type-text .row.mt-2 {
    margin-top: 0 !important;
}

body:has(.lb-standort-hero) .frame-type-text .col-md-6 {
    padding-top: 6px;
    padding-bottom: 6px;
}

/* Section-Headlines innerhalb der Cards (Kontakt, Öffnungszeiten, etc.) */
body:has(.lb-standort-hero) .frame-type-text h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--neutral-green-900, #0E1A07);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--neutral-green-200, #C0E0AB);
    position: relative;
    text-align: left;
    letter-spacing: 0.1px;
}

body:has(.lb-standort-hero) .frame-type-text h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 36px;
    height: 2px;
    background: var(--neutral-green-500, #488020);
}

/* Tables: vom rohen Bootstrap-Look zu sauberer Definition-Liste */
body:has(.lb-standort-hero) .frame-type-text .table-responsive {
    margin: 0;
    overflow: visible;
}

body:has(.lb-standort-hero) .frame-type-text .table {
    margin: 0;
    background: transparent;
    width: 100%;
    --bs-table-bg: transparent;
}

body:has(.lb-standort-hero) .frame-type-text .table tbody tr,
body:has(.lb-standort-hero) .frame-type-text .table tbody td {
    border: none;
    background: transparent;
}

body:has(.lb-standort-hero) .frame-type-text .table tbody td {
    padding: 10px 0;
    border-top: 1px solid rgba(72, 128, 32, 0.10);
    font-size: 15px;
    line-height: 1.5;
    color: var(--neutral-green-900, #0E1A07);
    vertical-align: middle;
}

body:has(.lb-standort-hero) .frame-type-text .table tbody tr:first-child td {
    border-top: none;
    padding-top: 2px;
}

body:has(.lb-standort-hero) .frame-type-text .table tbody td:first-child {
    color: var(--neutral-green-800, #1D330D);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    width: 38%;
    padding-right: 16px;
    white-space: nowrap;
}

body:has(.lb-standort-hero) .frame-type-text .table tbody td:last-child {
    font-weight: 600;
}

body:has(.lb-standort-hero) .frame-type-text .table a {
    color: var(--neutral-green-900, #0E1A07);
    text-decoration: none;
    border-bottom: 1px solid rgba(72, 128, 32, 0.30);
    transition: color 0.2s ease, border-color 0.2s ease;
}

body:has(.lb-standort-hero) .frame-type-text .table a:hover,
body:has(.lb-standort-hero) .frame-type-text .table a:focus {
    color: var(--neutral-green-500, #488020);
    border-bottom-color: var(--neutral-green-500, #488020);
}

/* Freitext (Produkte / Leistungen) */
body:has(.lb-standort-hero) .frame-type-text p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--neutral-green-800, #1D330D);
    margin: 0;
}

body:has(.lb-standort-hero) .frame-type-text p:empty {
    display: none;
}

/* Bild-Frame darunter abrunden */
body:has(.lb-standort-hero) .frame-type-image {
    padding: 16px 0 56px;
}

body:has(.lb-standort-hero) .frame-type-image img,
body:has(.lb-standort-hero) .frame-type-image figure {
    border-radius: 16px;
    overflow: hidden;
}

body:has(.lb-standort-hero) .frame-type-image img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 16px rgba(14, 26, 7, 0.06);
}

/* Responsive */
@media (max-width: 767px) {
    body:has(.lb-standort-hero) .frame-type-text {
        padding: 36px 0 16px;
    }
    body:has(.lb-standort-hero) .frame-type-text .frame-header {
        margin-bottom: 24px;
    }
    body:has(.lb-standort-hero) .frame-type-text .element-header {
        font-size: 24px;
    }
    body:has(.lb-standort-hero) .frame-type-text .element-subheader {
        font-size: 15px;
    }
    body:has(.lb-standort-hero) .frame-type-text .row {
        padding: 22px 22px;
        --bs-gutter-x: 1.5rem;
    }
    body:has(.lb-standort-hero) .frame-type-text .col-md-6 + .col-md-6 {
        margin-top: 18px;
    }
    body:has(.lb-standort-hero) .frame-type-text .table tbody td:first-child {
        width: 42%;
    }
    body:has(.lb-standort-hero) .frame-type-image {
        padding: 8px 0 40px;
    }
}
