/* Tresen-Bild: volle Breite, festes Seitenverhältnis */
.tm_hero-img-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
}
.tm_hero-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
@media (max-width: 767px) {
    .tm_hero-img-wrap img { height: 240px; }
}

/* Karte: Bild quadratisch + gleiche Höhe durch Flex */
.tm_card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tm_card-img {
    width: 100%;
    aspect-ratio: 1 / 1;   /* perfektes Quadrat, egal wie breit */
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.tm_card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tm_card-body {
    flex: 1;                /* streckt sich → alle Karten gleich hoch */
    background: #fff;
    border-radius: 0 0 16px 16px;
    padding: 24px 24px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Name */
.tm_card-name {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgb(22, 22, 22);
    line-height: 1.2;
    margin: 0;
}

/* Titel / Fachgebiet */
.tm_card-role {
    font-family: "Sora", sans-serif;
    font-size: 14px;
    color: var(--clr-common-black);
    margin: 0 0 4px;
}

/* Button-Gruppe Ärzte */
.tm_card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

/* Outline-Variante (Mehr erfahren) */
.cl_theme-btn-outline {
    background: transparent;
    border: 1.5px solid var(--clr-theme-primary);
    color: var(--clr-theme-primary);
    height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 22px;
    border-radius: 60px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all .25s;
}
.cl_theme-btn-outline:hover {
    background: var(--clr-theme-primary);
    color: #fff;
}
/* etwas kleinerer Primary-Button in der Karte */
.tm_card-actions .cl_theme-btn {
    height: 44px;
    font-size: 14px;
    padding: 0 22px;
}

/* MFA-Kontaktzeile */
.tm_card-contact {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tm_card-contact a {
    font-size: 14px;
    color: var(--clr-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: opacity .2s;
}
.tm_card-contact a:hover { opacity: .75; }

/* Abschnitt-Trenner */
.tm_group-label {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-theme-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--clr-theme-primary);
    margin-bottom: 36px;
    display: block;
}

/* gleiche Karten-Höhe pro Zeile via Bootstrap row + h-100 */
.tm_row-equal { align-items: stretch; }
.tm_col { margin-bottom: 30px; }






/* ================================================================
   LEISTUNGEN-ÜBERSICHT – Startseite (lv_ Präfix = kein Konflikt)
   In voelkermedia.css einfügen / anhängen
   ================================================================ */

/* ── Bild-Block ── */
.lv_img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 420px;
}
.lv_img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.lv_img-wrap:hover img {
    transform: scale(1.03);
}

/* Badge-Label auf dem Bild */
.lv_img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--clr-theme-primary);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 60px;
}

/* ── Text-Block ── */
.lv_content {
    padding: 0 0 0 40px;
}
/* Bei umgekehrter Reihenfolge (Bild rechts) sitzt der Text links → kein linkes Padding nötig */
.lv_reverse .lv_content {
    padding: 0 40px 0 0;
}

.lv_title {
    font-family: "Sora", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 8px 0 24px;
    line-height: 1.2;
}

/* ── Liste ── */
.lv_list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lv_list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: var(--clr-body-text);
    line-height: 1.5;
}
.lv_list li i {
    color: var(--clr-theme-primary);
    font-size: 17px;
    margin-top: 2px;
    flex-shrink: 0;
}
.lv_list li strong {
    color: var(--clr-body-heading);
    font-weight: 600;
}

/* ── Mehr-erfahren-Button ── */
.lv_mehr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ── Abstände zwischen den Blöcken ── */
.lv_leistung-row {
    padding: 70px 0;
}
.lv_leistung-row + .lv_leistung-row {
    border-top: 1px solid rgba(214, 186, 123, 0.25);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    /* Auf Tablet/Mobile wird lv_reverse wieder normal gestapelt */
    .lv_reverse {
        flex-direction: column-reverse;
    }
    .lv_content,
    .lv_reverse .lv_content {
        padding: 30px 0 0 0;
    }
    .lv_img-wrap {
        height: 300px;
    }
    .lv_title {
        font-size: 26px;
    }
}
@media (max-width: 575px) {
    .lv_img-wrap { height: 220px; }
    .lv_title    { font-size: 22px; }
}
/* ── Team-CTA unter den Ärzte-Karten ── */
.tm_team-cta-text {
    font-family: "Sora", sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
    letter-spacing: .03em;
}
/* ================================================================
   ÜBER UNS – Startseite (au_ Präfix)
   ================================================================ */

/* ── Bild-Stack ── */
.au_img-stack {
    position: relative;
    padding-bottom: 120px; /* Platz für kleines Bild unten */
}

.au_img-main {
    border-radius: 28px;
    overflow: hidden;
    height: 480px;
}
.au_img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.au_img-main:hover img { transform: scale(1.03); }

/* Kleines Bild unten rechts, überlappt das große */
.au_img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    border: 5px solid var(--clr-common-lightWhite, #fff9e9);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
.au_img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Zahlen-Badge auf dem Bild */
.au_img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border: 2px solid var(--clr-theme-primary);
    border-radius: 24px;
    padding: 18px 24px;
    line-height: 1.2;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.au_badge-year {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--clr-theme-primary);
    line-height: 1;
}
.au_badge-label {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: var(--clr-body-heading);
    font-weight: 500;
}

/* ── Fakten-Kacheln ── */
.au_facts {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.au_fact {
    flex: 1;
    min-width: 90px;
    background: white;
    border: 1.5px solid rgba(214, 186, 123, 0.35);
    border-radius: 20px;
    padding: 20px 16px;
    text-align: center;
}
.au_fact-number {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--clr-theme-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.au_fact-label {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: var(--clr-body-heading);
    line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .au_img-stack { padding-bottom: 100px; }
    .au_img-main  { height: 360px; }
    .au_img-small { height: 160px; }
}
@media (max-width: 575px) {
    .au_img-stack  { padding-bottom: 80px; }
    .au_img-main   { height: 260px; }
    .au_img-small  { width: 55%; height: 130px; }
    .au_badge-year { font-size: 26px; }
    .au_facts      { gap: 10px; }
    .au_fact-number{ font-size: 24px; }
}

/* ================================================================
   DATEIEN & DOWNLOADS (dl_ Präfix)
   ================================================================ */

/* ── Gruppe (Ordner) ── */
.dl_gruppe {
    margin-bottom: 32px;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
}

.dl_gruppe-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: #ffffff;
    border-bottom: 2px solid var(--clr-theme-primary);
}
.dl_gruppe-header i {
    font-size: 18px;
    color: var(--clr-theme-primary);
    flex-shrink: 0;
}
.dl_gruppe-title {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--clr-body-heading);
    flex: 1;
}
.dl_gruppe-count {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,.35);
    white-space: nowrap;
}

.dl_gruppe-body {
    padding: 8px 0 4px;
}

/* ── Einzelne Datei-Zeile ── */
.dl_item {
    border-bottom: 1px solid rgba(214, 186, 123, 0.12);
}
.dl_item:last-child { border-bottom: none; }

.dl_item-main {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
}

/* PDF-Icon */
.dl_item-icon {
    width: 32px;
    flex-shrink: 0;
}
.dl_item-icon img {
    width: 100%;
    display: block;
}

/* Name + Meta */
.dl_item-info {
    flex: 1;
    min-width: 0;
}
.dl_item-name {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-body-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dl_item-meta {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,.35);
    margin-top: 3px;
}

/* Download-Button */
.dl_item-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.dl_btn-download {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--clr-theme-primary);
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: 0 20px;
    height: 38px;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .2s;
    white-space: nowrap;
}
.dl_btn-download:hover { opacity: .85; color: #fff; }

/* ── Beschreibung (aufklappbar via Info-Button – bleibt im HTML, nur Button ausgeblendet) ── */
.dl_btn-info,
.dl_btn-share { display: none; } /* entfernt aus UI, JS bleibt kompatibel */

.dl_item-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
/* Beschreibung dauerhaft sichtbar (kein Toggle mehr nötig) */
.dl_item-desc {
    max-height: none;
}
.dl_item-desc p {
    margin: 0;
    padding: 2px 28px 16px calc(28px + 32px + 16px);
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.45);
    line-height: 1.6;
}

/* ── Highlight beim Direktlink ── */
.dl_highlighted {
    animation: dl_pulse 1s ease 2;
}
@keyframes dl_pulse {
    0%   { background: rgba(214,186,123,.08); }
    50%  { background: rgba(214,186,123,.2); }
    100% { background: rgba(214,186,123,.08); }
}

/* ── Toast ── */
.dl_toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--clr-body-heading);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 60px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    z-index: 9999;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dl_toast.dl_toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Responsive ── */
@media (max-width: 575px) {
    .dl_item-main { padding: 14px 16px; }
    .dl_item-desc p { padding: 2px 16px 14px 16px; }
    .dl_gruppe-header { padding: 16px 20px; }
    .dl_btn-download span { display: none; }
    .dl_btn-download { width: 38px; padding: 0; justify-content: center; border-radius: 50%; }
}

/* ================================================================
   LINKS-SEITE (lk_ Präfix)
   ================================================================ */

/* Globus-Icon statt PDF-Icon */
.lk_icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(214, 186, 123, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clr-theme-primary);
    font-size: 15px;
}

/* "Zur Seite"-Button: outline statt filled */
.lk_btn {
    background: transparent;
    border: 1.5px solid var(--clr-theme-primary);
    color: var(--clr-theme-primary) !important;
    gap: 8px;
    white-space: nowrap;
}
.lk_btn:hover {
    background: var(--clr-theme-primary);
    color: #fff !important;
}
.lk_btn i { font-size: 12px; }

/* Leere Kategorie */
.lk_empty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px;
    color: rgba(0,0,0,.3);
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-style: italic;
}
.lk_empty i { font-size: 18px; flex-shrink: 0; }
.lk_empty p { margin: 0; }

/* Leere Gruppe etwas zurückhaltender */
.lk_empty-gruppe .dl_gruppe-header {
    opacity: .6;
}

/* ================================================================
   DL_ITEM-ROW – gemeinsames Zeilen-Layout für Dateien & Links
   ================================================================ */

.dl_item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
}

/* PDF-Icon (img) */
.dl_icon {
    width: 32px;
    flex-shrink: 0;
}

/* Info-Block: Name, Meta, Beschreibung */
.dl_info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.dl_name {
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-body-heading);
}
.dl_meta {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,.35);
}
.dl_desc-text {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.45);
    line-height: 1.55;
    margin-top: 4px;
}

/* Trennlinie zwischen Items */
.dl_item + .dl_item {
    border-top: 1px solid rgba(214, 186, 123, 0.12);
}

/* ── Responsive ── */
@media (max-width: 575px) {
    .dl_item-row {
        flex-wrap: wrap;
        padding: 16px;
        gap: 12px;
    }
    .dl_btn-download,
    .lk_btn {
        width: 100%;
        justify-content: center;
        border-radius: 60px;
    }
}

/* ================================================================
   TERMIN-SEITE (tr_ Präfix)
   ================================================================ */

.tr_arzt-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Bild: quadratisch, füllt Breite */
.tr_arzt-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.tr_arzt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .5s ease;
}
.tr_arzt-card:hover .tr_arzt-img img {
    transform: scale(1.04);
}

/* Text-Block */
.tr_arzt-body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
}

.tr_arzt-name {
    font-family: "Sora", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0;
    line-height: 1.25;
}

.tr_arzt-role {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.45);
    margin: 0 0 12px;
    line-height: 1.5;
}

/* Button volle Breite in der Karte */
.tr_termin-btn {
    width: 100%;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

/* Hinweis-Box */
.tr_hinweis {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(214, 186, 123, 0.1);
    border: 1.5px solid rgba(214, 186, 123, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.55);
    line-height: 1.6;
}
.tr_hinweis i {
    color: var(--clr-theme-primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.tr_hinweis p { margin: 0; }
.tr_hinweis strong { color: var(--clr-body-heading); }

/* Browser-Default border/outline auf button-Elementen entfernen */
button.cl_theme-btn,
button.tr_termin-btn {
    border: none;
    outline: none;
    cursor: pointer;
}
button.cl_theme-btn:focus,
button.tr_termin-btn:focus {
    outline: none;
    box-shadow: none;
}

/* ================================================================
   KARRIERE / JOB-LISTINGS (kj_ Präfix)
   ================================================================ */

/* ── Stellenanzeige-Karte ── */
.kj_stelle {
    background: #ffffff;
    border-radius: 24px;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    margin-bottom: 28px;
    overflow: hidden;
}

/* Kopfbereich */
.kj_stelle-head {
    padding: 32px 36px 24px;
    border-bottom: 1px solid rgba(214, 186, 123, 0.15);
}

.kj_stelle-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

/* Badges */
.kj_badge {
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 60px;
}
.kj_badge-voll {
    background: rgba(214, 186, 123, 0.2);
    color: var(--clr-theme-primary);
}
.kj_badge-ausb {
    background: rgba(111, 83, 59, 0.1);
    color: var(--clr-body-heading);
}
.kj_badge-typ {
    background: rgba(0,0,0,.05);
    color: rgba(0,0,0,.45);
}

.kj_stelle-titel {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 10px;
    line-height: 1.3;
}

.kj_stelle-ort {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.4);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.kj_stelle-ort i { color: var(--clr-theme-primary); }

/* Inhaltsbereich */
.kj_stelle-body {
    padding: 28px 36px;
}

.kj_stelle-intro {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: rgba(0,0,0,.55);
    line-height: 1.7;
    margin: 0 0 24px;
}

.kj_list-title {
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-body-heading);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.kj_list-title i { color: var(--clr-theme-primary); }

.kj_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kj_list li {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.6);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.kj_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
}

/* Footer mit Button */
.kj_stelle-footer {
    padding: 20px 36px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(214, 186, 123, 0.15);
    background: rgba(214, 186, 123, 0.04);
}

.kj_btn {
    gap: 8px;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.kj_mail-hint {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.35);
}
.kj_mail-hint strong { color: rgba(0,0,0,.5); }

/* ── Initiativbewerbungs-Box ── */
.kj_initiativ {
    margin-top: 16px;
    background: rgba(214, 186, 123, 0.1);
    border: 1.5px solid rgba(214, 186, 123, 0.3);
    border-radius: 24px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.kj_initiativ-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 22px;
}

.kj_initiativ-text {
    flex: 1;
    min-width: 200px;
}
.kj_initiativ-text h4 {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 4px;
}
.kj_initiativ-text p {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.5);
    margin: 0;
    line-height: 1.55;
}

.kj_btn-outline {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .kj_stelle-head,
    .kj_stelle-body,
    .kj_stelle-footer { padding-left: 20px; padding-right: 20px; }
    .kj_stelle-titel  { font-size: 17px; }
    .kj_initiativ      { padding: 24px 20px; }
    .kj_stelle-footer  { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ================================================================
   404-SEITE (nf_ Präfix)
   ================================================================ */

.nf_area {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Bild-Block */
.nf_img-wrap {
    position: relative;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
    flex-shrink: 0;
}
.nf_img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dunkler Gradient von unten */
.nf_img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,.15) 0%,
            rgba(0,0,0,.65) 100%
    );
}

/* Text zentriert über dem Bild */
.nf_img-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    color: #fff;
}

.nf_code {
    font-family: "Sora", sans-serif;
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,.35);
    letter-spacing: -4px;
    margin-bottom: -20px;
    display: block;
}

.nf_title {
    font-family: "Sora", sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.nf_sub {
    font-family: "Roboto", sans-serif;
    font-size: clamp(14px, 2vw, 17px);
    color: rgba(255,255,255,.8);
    margin: 0;
    line-height: 1.7;
    max-width: 520px;
}

/* Button-Leiste */
.nf_actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 48px 0 80px;
}

.nf_btn {
    gap: 8px;
    border: none;
}

/* Responsive */
@media (max-width: 575px) {
    .nf_img-wrap   { height: 65vh; }
    .nf_actions    { flex-direction: column; padding: 36px 0 60px; }
    .nf_btn        { width: 100%; justify-content: center; }
}

/* ================================================================
   REZEPT-FORMULAR (rz_ Präfix)
   ================================================================ */

/* ── Formular-Wrapper ── */
.rz_form-wrap {
    background: #ffffff;
    border-radius: 24px;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    overflow: hidden;
}

/* ── Abschnitte ── */
.rz_section {
    padding: 36px 40px;
    border-bottom: 1px solid rgba(214, 186, 123, 0.15);
}
.rz_section-last { border-bottom: none; }

.rz_section-title {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.rz_section-nr {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Felder ── */
.rz_field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rz_field label {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-body-heading);
}
.rz_req { color: var(--clr-theme-primary); }

.rz_field input,
.rz_field select,
.rz_field textarea {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: var(--clr-body-heading);
    background: #fafafa;
    border: 1.5px solid rgba(214, 186, 123, 0.3);
    border-radius: 12px;
    padding: 11px 16px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
}
.rz_field input:focus,
.rz_field select:focus,
.rz_field textarea:focus {
    border-color: var(--clr-theme-primary);
    box-shadow: 0 0 0 3px rgba(214, 186, 123, 0.15);
    background: #fff;
}
.rz_field textarea { resize: vertical; min-height: 110px; }
.rz_field select { cursor: pointer; }

.rz_hint {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,.35);
}

/* ── Medikament-Block ── */
.rz_medikament {
    background: rgba(214, 186, 123, 0.05);
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
}
.rz_medikament-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.rz_medikament-nr {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-theme-primary);
}

/* + Weiteres Medikament Button */
.rz_add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px dashed rgba(214, 186, 123, 0.5);
    border-radius: 12px;
    padding: 10px 20px;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-theme-primary);
    cursor: pointer;
    transition: all .2s;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}
.rz_add-btn:hover {
    background: rgba(214, 186, 123, 0.08);
    border-color: var(--clr-theme-primary);
}

/* Entfernen-Button */
.rz_remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,.35);
    cursor: pointer;
    transition: color .2s;
    padding: 0;
}
.rz_remove-btn:hover { color: #c0392b; }

/* ── Datenschutz-Checkbox ── */
.rz_checkbox-wrap { margin-bottom: 24px; }
.rz_checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.55);
    line-height: 1.5;
}
.rz_checkbox input[type="checkbox"] { display: none; }
.rz_checkbox-box {
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(214, 186, 123, 0.5);
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}
.rz_checkbox input:checked + .rz_checkbox-box {
    background: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
}
.rz_checkbox input:checked + .rz_checkbox-box::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}
.rz_checkbox a {
    color: var(--clr-theme-primary);
    text-decoration: underline;
}

/* ── Absenden ── */
.rz_submit-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.rz_submit-btn {
    gap: 8px;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.rz_submit-hint {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.35);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .rz_section { padding: 24px 20px; }
    .rz_medikament { padding: 16px; }
    .rz_submit-wrap { flex-direction: column; align-items: flex-start; }
    .rz_submit-btn  { width: 100%; justify-content: center; }
}

/* ================================================================
   KONTAKT & ANFAHRT (kt_ Präfix)
   ================================================================ */

/* ── Kontaktdaten-Karte ── */
.kt_info-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    overflow: hidden;
}
.kt_info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(214, 186, 123, 0.12);
}
.kt_info-item:last-child { border-bottom: none; }

.kt_info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(214, 186, 123, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-theme-primary);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.kt_info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.kt_info-label {
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-theme-primary);
}
.kt_info-value {
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-body-heading);
    line-height: 1.4;
}
.kt_info-link { transition: opacity .2s; }
.kt_info-link:hover { opacity: .7; color: var(--clr-theme-primary); }
.kt_info-sub {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,.35);
}

/* ── Gebäude-Bild ── */
.kt_img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 240px;
}
.kt_img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.kt_img-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 60px;
}

/* ── Kontaktformular-Wrapper ── */
.kt_form-wrap {
    background: #ffffff;
    border-radius: 24px;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    padding: 36px 40px;
}
.kt_form-title {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 28px;
}

/* ── Öffnungszeiten-Sektion ── */
.kt_oez-section {
    background: #ffffff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.kt_oez-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    margin-bottom: 20px;
}
.kt_oez-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(214, 186, 123, 0.1);
    transition: background .15s;
}
.kt_oez-row:last-child { border-bottom: none; }
.kt_oez-row:hover { background: rgba(214, 186, 123, 0.05); }

.kt_oez-tag {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--clr-theme-primary);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kt_oez-day {
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-body-heading);
    width: 100px;
    flex-shrink: 0;
}
.kt_oez-time {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.55);
}

.kt_oez-hinweise {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.kt_oez-hinweis {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.5);
}
.kt_oez-hinweis i { color: var(--clr-theme-primary); font-size: 15px; }
.kt_oez-hinweis strong { color: var(--clr-body-heading); }
.kt_oez-link {
    color: var(--clr-theme-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ── Parkplatz-Bild ── */
.kt_parkplatz-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
}
.kt_parkplatz-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}
.kt_parkplatz-wrap:hover img { transform: scale(1.03); }

.kt_parkplatz-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border: 1.5px solid rgba(214, 186, 123, 0.4);
    border-radius: 60px;
    padding: 8px 18px;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-body-heading);
    display: flex;
    align-items: center;
    gap: 8px;
}
.kt_parkplatz-badge i { color: var(--clr-theme-primary); }

/* ── OpenStreetMap ── */
.kt_map-wrap {
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.kt_map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Maps-Buttons + DSGVO ── */
.kt_maps-actions {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}
.kt_maps-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.kt_maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 20px;
    border-radius: 60px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 1.5px solid transparent;
}
.kt_maps-apple {
    background: var(--clr-body-heading);
    color: #fff;
}
.kt_maps-apple:hover { opacity: .85; color: #fff; }
.kt_maps-google {
    background: transparent;
    border-color: rgba(214, 186, 123, 0.5);
    color: var(--clr-body-heading);
}
.kt_maps-google:hover {
    background: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
    color: #fff;
}

.kt_maps-dsgvo {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.4);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 220px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.kt_maps-dsgvo i {
    color: var(--clr-theme-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.kt_maps-dsgvo strong { color: rgba(0,0,0,.55); }

/* ── Responsive ── */
@media (max-width: 991px) {
    .kt_form-wrap { padding: 24px 20px; }
    .kt_oez-day   { width: 80px; }
    .kt_oez-time  { font-size: 13px; }
}
@media (max-width: 575px) {
    .kt_parkplatz-wrap { height: 280px; }
    .kt_map-wrap       { height: 300px; }
    .kt_maps-actions   { flex-direction: column; }
    .kt_oez-row        { flex-wrap: wrap; gap: 8px; }
}

/* ── Barrierefreiheits-Karte ── */
.kt_barriere-card {
    background: rgba(214, 186, 123, 0.07);
    border: 1.5px solid rgba(214, 186, 123, 0.25);
    border-radius: 20px;
    padding: 22px 24px;
}
.kt_barriere-title {
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-body-heading);
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}
.kt_barriere-title i { color: var(--clr-theme-primary); font-size: 16px; }

.kt_barriere-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kt_barriere-list li {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    gap: 8px;
}
.kt_barriere-list li i { color: var(--clr-theme-primary); flex-shrink: 0; }

.kt_barriere-link {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-theme-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.kt_barriere-link:hover { gap: 10px; color: var(--clr-theme-primary); }

/* ================================================================
   BARRIEREFREIHEIT (bf_ Präfix)
   ================================================================ */

/* ── Schnellübersicht ── */
.bf_quick-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bf_quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: var(--clr-body-heading);
    font-weight: 500;
}
.bf_quick-item i {
    color: var(--clr-theme-primary);
    font-size: 17px;
    flex-shrink: 0;
}

/* ── Haupt-Bild Intro ── */
.bf_img-main {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 480px;
}
.bf_img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}
.bf_img-main:hover img { transform: scale(1.03); }
.bf_img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--clr-theme-primary);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Detail-Sektion (weiß) ── */
.bf_detail-section {
    background: #ffffff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/* ── Karten ── */
.bf_card {
    background: #fff;
    border-radius: 24px;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.bf_card-img {
    height: 220px;
    overflow: hidden;
}
.bf_card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}
.bf_card:hover .bf_card-img img { transform: scale(1.04); }

.bf_card-body {
    padding: 28px 28px 32px;
    flex: 1;
}
.bf_card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(214, 186, 123, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-theme-primary);
    font-size: 18px;
    margin-bottom: 14px;
}
.bf_card-title {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 16px;
}
.bf_card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.bf_card-list li {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.55);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}
.bf_card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
}

/* ── CTA-Box ── */
.bf_cta {
    background: rgba(214, 186, 123, 0.1);
    border: 1.5px solid rgba(214, 186, 123, 0.3);
    border-radius: 24px;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.bf_cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}
.bf_cta-text h3 {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 8px;
}
.bf_cta-text p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: rgba(0,0,0,.5);
    margin: 0;
    line-height: 1.65;
    max-width: 520px;
}
.bf_cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.bf_cta-btn { gap: 8px; border: none; cursor: pointer; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .bf_img-main { height: 340px; }
}
@media (max-width: 575px) {
    .bf_img-main  { height: 260px; }
    .bf_card-img  { height: 180px; }
    .bf_cta       { padding: 28px 20px; }
    .bf_cta-actions { flex-direction: column; width: 100%; }
    .bf_cta-btn   { width: 100%; justify-content: center; }
}

/* ================================================================
   ARZT-EINZELSEITEN (ar_ Präfix)
   ================================================================ */

/* ── Portrait ── */
.ar_portrait-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.ar_portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .5s ease;
}
.ar_portrait-wrap:hover img { transform: scale(1.03); }
.ar_portrait-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ar_badge-title {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.ar_badge-sub {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,.7);
}

/* ── Intro Text ── */
.ar_intro { padding-left: 20px; }
.ar_name {
    font-family: "Sora", sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 8px 0 6px;
    line-height: 1.2;
}
.ar_fach {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: var(--clr-theme-primary);
    font-weight: 500;
    margin: 0 0 28px;
}

/* ── Highlights ── */
.ar_highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.ar_highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ar_highlight > i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(214, 186, 123, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-theme-primary);
    font-size: 15px;
    flex-shrink: 0;
}
.ar_hl-label {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(0,0,0,.35);
    margin-bottom: 2px;
}
.ar_hl-value {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-body-heading);
}

/* ── Mitgliedschaften ── */
.ar_memberships { margin-bottom: 28px; }
.ar_block-title {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ar_block-title i { color: var(--clr-theme-primary); }
.ar_tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ar_tag {
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-theme-primary);
    /* background: rgba(214, 186, 123, 0.15); */
    background: white;
    /* border: 1px solid rgba(214, 186, 123, 0.35); */
    border: none;
    border-radius: 60px;
    padding: 4px 14px;
}

.ar_actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ar_actions button { border: none; cursor: pointer; }

/* ── Vita-Sektion (weiß) ── */
.ar_vita-section {
    background: #ffffff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}
.ar_section-title {
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ar_section-title i { color: var(--clr-theme-primary); }

/* ── Timeline ── */
.ar_timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 16px;
    border-left: 2px solid rgba(214, 186, 123, 0.3);
}
.ar_tl-item {
    position: relative;
    padding: 0 0 28px 24px;
}
.ar_tl-item:last-child { padding-bottom: 0; }
.ar_tl-dot {
    position: absolute;
    left: -9px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--clr-theme-primary);
}
.ar_tl-item--current .ar_tl-dot {
    background: var(--clr-theme-primary);
}
.ar_tl-year {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-theme-primary);
    margin-bottom: 4px;
}
.ar_tl-text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.55);
    margin: 0;
    line-height: 1.6;
}

/* ── Breites Bild ── */
.ar_breit-wrap {
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
}
.ar_breit-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Qualifikationen ── */
.ar_quali { margin-top: 4px; }
.ar_quali-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ar_quali-list li {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.55);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}
.ar_quali-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
}

/* ── Zitat ── */
.ar_quote {
    background: rgba(214, 186, 123, 0.08);
    border: 1.5px solid rgba(214, 186, 123, 0.25);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}
.ar_quote-icon {
    font-size: 32px;
    color: var(--clr-theme-primary);
    opacity: .4;
    display: block;
    margin-bottom: 16px;
}
.ar_quote-text {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    font-style: italic;
    color: var(--clr-body-heading);
    line-height: 1.7;
    margin: 0 0 16px;
}
.ar_quote-author {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: var(--clr-theme-primary);
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .ar_intro { padding-left: 0; }
    .ar_breit-wrap { height: 200px; }
}
@media (max-width: 575px) {
    .ar_portrait-wrap { aspect-ratio: 4 / 5; }
    .ar_quote { padding: 24px 20px; }
    .ar_quote-text { font-size: 15px; }
}

/* ================================================================
   AKTUELLES / NEWS (nw_ Präfix)
   ================================================================ */

/* ── News-Karte ── */
.nw_card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    overflow: hidden;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}
.nw_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

/* Featured: horizontal auf Desktop */
.nw_card--featured {
    flex-direction: row;
}
.nw_card--featured .nw_card-img {
    width: 45%;
    flex-shrink: 0;
    height: auto;
    max-height: 380px;
}
.nw_card--featured .nw_card-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nw_card--featured .nw_card-title { font-size: 24px; }
.nw_card--featured .nw_card-excerpt { display: block; }

/* Bild-Block */
.nw_card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.nw_card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.nw_card:hover .nw_card-img img { transform: scale(1.04); }

/* Kategorie-Badge */
.nw_card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--clr-theme-primary);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 60px;
}

/* Text-Block */
.nw_card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.nw_card-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.nw_card-meta span {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nw_card-title {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0;
    line-height: 1.3;
}
.nw_card-excerpt {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.5);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nw_card-more {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-theme-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap .2s;
}
.nw_card:hover .nw_card-more { gap: 10px; }

/* ── Einzelseite ── */
.nw_back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,.4);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color .2s, gap .2s;
}
.nw_back:hover { color: var(--clr-theme-primary); gap: 12px; }

.nw_beitrag-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.nw_beitrag-meta .nw_card-cat { position: static; }
.nw_beitrag-date {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nw_beitrag-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 32px;
    line-height: 1.2;
}

.nw_beitrag-img {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 40px;
}
.nw_beitrag-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fließtext */
.nw_beitrag-content {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: rgba(0,0,0,.6);
    line-height: 1.8;
    margin-bottom: 40px;
}
.nw_beitrag-content h2 {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 32px 0 12px;
}
.nw_beitrag-content p { margin: 0 0 18px; }
.nw_beitrag-content a {
    color: var(--clr-theme-primary);
    text-decoration: underline;
}
.nw_beitrag-content strong { color: var(--clr-body-heading); }

/* Autor */
.nw_beitrag-autor {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(214, 186, 123, 0.08);
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    border-radius: 16px;
    margin-bottom: 40px;
}
.nw_beitrag-autor img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
}
.nw_autor-name {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-body-heading);
}
.nw_autor-role {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,.4);
    margin-top: 2px;
}

.nw_divider {
    border: none;
    border-top: 1px solid rgba(214, 186, 123, 0.2);
    margin: 0 0 40px;
}

/* Weitere Beiträge */
.nw_weitere-title {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 20px;
}
.nw_mini-card {
    display: flex;
    gap: 14px;
    text-decoration: none;
    background: #fff;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    border-radius: 16px;
    overflow: hidden;
    padding: 14px;
    transition: transform .2s;
}
.nw_mini-card:hover { transform: translateY(-2px); }
.nw_mini-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.nw_mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nw_mini-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nw_mini-body .nw_card-cat { position: static; font-size: 10px; padding: 3px 10px; }
.nw_mini-title {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-body-heading);
    margin: 0;
    line-height: 1.4;
}
.nw_mini-date {
    font-family: "Roboto", sans-serif;
    font-size: 11px;
    color: rgba(0,0,0,.3);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .nw_card--featured { flex-direction: column; }
    .nw_card--featured .nw_card-img { width: 100%; height: 220px; }
    .nw_card--featured .nw_card-body { padding: 22px 24px; }
    .nw_card--featured .nw_card-title { font-size: 19px; }
    .nw_beitrag-img { height: 240px; }
}

/**
 IMPRESSUM
 */
.impressum-area {
    padding: 95px 0 90px;
}

.impressum-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--clr-body-text);
    margin-bottom: 50px;
    max-width: 760px;
}

/* Sektionskarte */
.impressum-card {
    background: var(--clr-bg-gray);
    border-radius: 12px;
    padding: 40px 44px;
    margin-bottom: 30px;
    border-left: 4px solid var(--clr-theme-primary);
    transition: box-shadow .25s;
}
.impressum-card:hover {
    box-shadow: 0 8px 32px rgba(53, 204, 149, .12);
}

.impressum-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.impressum-card-title .ic {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.impressum-card-title .ic i {
    color: #fff;
    font-size: 14px;
}

.impressum-card p,
.impressum-card address {
    font-style: normal;
    line-height: 1.9;
    color: var(--clr-body-text);
    margin: 0;
}

.impressum-card a {
    color: var(--clr-theme-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}
.impressum-card a:hover {
    border-bottom-color: var(--clr-theme-primary);
}

/* Trennlinie zwischen Datenbausteinen */
.impressum-card .divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,.08);
    margin: 18px 0;
}

/* Haftungs-Hinweise (schlanker) */
.impressum-legal-block {
    margin-bottom: 30px;
}
.impressum-legal-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin-bottom: 12px;
}
.impressum-legal-block p {
    line-height: 1.85;
    color: var(--clr-body-text);
}

/* Sticky Inhaltsnavigation */
.impressum-nav {
    position: sticky;
    top: 100px;
    background: var(--clr-bg-gray);
    border-radius: 12px;
    padding: 32px 28px;
}
.impressum-nav h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-theme-primary);
    margin-bottom: 18px;
}
.impressum-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.impressum-nav ul li {
    margin-bottom: 10px;
}
.impressum-nav ul li a {
    font-size: 14px;
    color: var(--clr-body-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}
.impressum-nav ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
    flex-shrink: 0;
    opacity: .4;
    transition: opacity .2s;
}
.impressum-nav ul li a:hover {
    color: var(--clr-theme-primary);
}
.impressum-nav ul li a:hover::before {
    opacity: 1;
}

/* Abstand der Anker-Ziele */
[id] {
    scroll-margin-top: 110px;
}

/* ================================================================
   STARTSEITE: KARRIERE TEASER + AKTUELLES TEASER (ix_ Präfix)
   ================================================================ */

/* ── Karriere-Sektion ── */
.ix_karriere-section {
    background: #ffffff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.ix_karriere-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--clr-body-heading);
    margin: 8px 0 16px;
    line-height: 1.1;
}

.ix_karriere-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: rgba(0,0,0,.55);
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 520px;
}

.ix_karriere-stellen {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.ix_stelle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-body-heading);
}
.ix_stelle i { color: var(--clr-theme-primary); font-size: 16px; }

.ix_karriere-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.ix_karriere-actions a { gap: 8px; border: none; }
.ix_karriere-actions .cl_theme-btn { cursor: pointer; }

/* Bild */
.ix_karriere-img {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 440px;
}
.ix_karriere-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}
.ix_karriere-img:hover img { transform: scale(1.03); }
.ix_karriere-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--clr-theme-primary);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Aktuelles Teaser: große Karte ── */
.nw_card--tall .nw_card-img {
    height: 280px;
}

/* ── Mini-Karte groß (für Startseite) ── */
.nw_mini-card--lg {
    padding: 16px;
    gap: 16px;
    flex: 1;
}
.nw_mini-img--lg {
    width: 100px;
    height: 80px;
    border-radius: 12px;
    flex-shrink: 0;
}
.nw_mini-card--lg .nw_mini-title {
    font-size: 14px;
    line-height: 1.4;
}
.nw_mini-card--lg .nw_mini-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .ix_karriere-img { height: 320px; }
    .nw_card--tall .nw_card-img { height: 220px; }
}
@media (max-width: 575px) {
    .ix_karriere-img { height: 260px; }
    .ix_karriere-actions { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   ANKER-FIX + FOOTER-WHITESPACE
   ================================================================ */

/* Smooth scroll für alle Anker */
html {
    scroll-behavior: smooth;
}

/* Scroll-Offset falls Header irgendwann sticky wird */
:target {
    scroll-margin-top: 20px;
}

/* Footer-Whitespace fix — kein leerer Raum unter dem Footer */
html, body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
}

/* Verhindert dass leere Flex/Grid-Container Whitespace erzeugen */
body {
    display: block;
}

/* ================================================================
   PATIENTENSERVICE (ps_ Präfix)
   ================================================================ */

.ps_box {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    text-decoration: none;
    background: #fff;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}
.ps_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,.1);
}

/* Bild-Block */
.ps_box-img {
    position: relative;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}
.ps_box--sm .ps_box-img {
    height: 200px;
}
.ps_box-img img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}
.ps_box:hover .ps_box-img img:first-child {
    transform: scale(1.05);
}

/* Dunkler Overlay */
.ps_box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,.05) 0%,
            rgba(0,0,0,.45) 100%
    );
    transition: opacity .3s;
}
.ps_box:hover .ps_box-overlay {
    opacity: .8;
}

/* Icon mittig auf dem Bild */
.ps_box-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ps_box-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
    transition: transform .3s ease;
}
.ps_box--sm .ps_box-icon img {
    width: 56px;
    height: 56px;
}
.ps_box:hover .ps_box-icon img {
    transform: scale(1.1);
}

/* Text-Block */
.ps_box-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.ps_box-title {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0;
    line-height: 1.25;
}
.ps_box--sm .ps_box-title {
    font-size: 16px;
}
.ps_box-text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.5);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.ps_box-link {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-theme-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap .2s;
}
.ps_box:hover .ps_box-link {
    gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .ps_box-img     { height: 220px; }
    .ps_box--sm .ps_box-img { height: 180px; }
}
@media (max-width: 575px) {
    .ps_box-img     { height: 200px; }
    .ps_box--sm .ps_box-img { height: 160px; }
    .ps_box-body    { padding: 20px; }
}

/* ================================================================
   LEISTUNGEN – STARTSEITE KACHELN (lv_kachel)
   ================================================================ */

.lv_kachel {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(214, 186, 123, 0.2);
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
    text-decoration: none;
    background: #fff;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}
.lv_kachel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0,0,0,.1);
}
.lv_kachel-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.lv_kachel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.lv_kachel:hover .lv_kachel-img img { transform: scale(1.06); }
.lv_kachel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.02) 0%, rgba(0,0,0,.3) 100%);
}
.lv_kachel-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.lv_kachel-body h3 {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0;
}
.lv_kachel-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}
.lv_kachel-body ul li {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,.5);
    padding-left: 12px;
    position: relative;
}
.lv_kachel-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
}
.lv_kachel-link {
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-theme-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s;
}
.lv_kachel:hover .lv_kachel-link { gap: 9px; }

/* ── Schnellnavigation oben auf leistungen.php ── */
.lv_quick-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.lv_quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid rgba(214, 186, 123, 0.25);
    border-radius: 60px;
    padding: 8px 20px 8px 8px;
    text-decoration: none;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-body-heading);
    transition: all .2s;
}
.lv_quick-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.lv_quick-item:hover {
    background: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
    color: #fff;
}

/* ── Leistungs-Blöcke auf leistungen.php ── */
.lv_leistung-block {
    padding: 70px 0;
    border-top: 1px solid rgba(214, 186, 123, 0.2);
}
.lv_leistung-block:first-of-type { border-top: none; }

.lv_block-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
}
.lv_block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.lv_block-img:hover img { transform: scale(1.03); }
.lv_img-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--clr-theme-primary);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 60px;
}

.lv_block-content { padding-left: 32px; }
.lv_leistung-block--reverse .lv_block-content { padding-left: 0; padding-right: 32px; }

.lv_block-title {
    font-family: "Sora", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0 0 24px;
}
.lv_block-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lv_block-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: var(--clr-body-text, rgba(0,0,0,.6));
    line-height: 1.5;
}
.lv_block-list li i { color: var(--clr-theme-primary); font-size: 17px; margin-top: 1px; flex-shrink: 0; }
.lv_block-list li strong { color: var(--clr-body-heading); font-weight: 600; }
.lv_leistung-block button.cl_theme-btn { border: none; cursor: pointer; gap: 8px; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .lv_block-content,
    .lv_leistung-block--reverse .lv_block-content { padding: 0; }
    .lv_block-img { height: 300px; }
    .lv_leistung-block--reverse .row { flex-direction: column-reverse; }
}
@media (max-width: 575px) {
    .lv_kachel-img { height: 140px; }
    .lv_block-img  { height: 240px; }
    .lv_block-title { font-size: 24px; }
    .lv_quick-item { font-size: 13px; }
}

/**
 LANG SWITCHER
 */
/* ── Trigger Button ── */
.ls_trigger {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9998;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    transition: box-shadow .2s, transform .2s;
}
.ls_trigger:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,.18);
    transform: scale(1.06);
}
.ls_trigger img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── Modal Overlay ── */
.ls_modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.ls_modal.ls_open {
    opacity: 1;
    pointer-events: auto;
}

/* ── Modal Box ── */
.ls_modal-box {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px 28px;
    width: 100%;
    max-width: 340px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    transform: translateY(16px) scale(0.97);
    transition: transform .25s ease;
}
.ls_modal.ls_open .ls_modal-box {
    transform: translateY(0) scale(1);
}

/* Schließen-Button */
.ls_close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,.06);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,.5);
    font-size: 15px;
    transition: background .15s, color .15s;
}
.ls_close:hover {
    background: rgba(0,0,0,.12);
    color: rgba(0,0,0,.8);
}

/* ── Sprach-Grid ── */
.ls_grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ls_btn {
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--clr-body-heading, #3a2a1a);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1.5px solid rgba(214, 186, 123, 0.25);
    text-align: center;
    transition: background .15s, color .15s, border-color .15s;
    display: block;
}
.ls_btn:hover {
    background: rgba(214, 186, 123, 0.12);
    border-color: var(--clr-theme-primary, #b8943f);
    color: var(--clr-theme-primary, #b8943f);
}
.ls_btn--active {
    background: var(--clr-theme-primary, #b8943f);
    border-color: var(--clr-theme-primary, #b8943f);
    color: #fff !important;
}
.ls_btn--active:hover {
    opacity: .9;
}
/* Arabisch RTL */
.ls_btn[href*="lang=ar"] { direction: rtl; }