/* Farbwelt & Grundlayout spezifisch für die Kanzlei-Seite */
/* Rosario: nur Display/Ueberschriften (lokal, fonts/). Fliesstext = System-Schrift wie styles.css body */
@font-face {
    font-family: 'Rosario';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/rosario-v35-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Rosario';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./fonts/rosario-v35-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Rosario';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('./fonts/rosario-v35-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Rosario';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./fonts/rosario-v35-latin-700.woff2') format('woff2');
}

:root {
    --kanzlei-primary: #1f2937;
    --kanzlei-secondary: #b89b5e;
    --kanzlei-bg: #f5f5f7;
    --kanzlei-text: #1f2933;
    --kanzlei-muted: #6b7280;
    --kanzlei-border: #e5e7eb;
    --kanzlei-surface: #ffffff;
    /*
     * Schrift-Stacks nur als Referenz / für künftige Properties.
     * WICHTIG (Safari iOS / WebKit): `font-family: var(--x)` mit einem Wert, der Kommas
     * enthält (mehrere Familien), wird oft ignoriert → falsche Vererbung (z. B. Rosario „überall“).
     * Daher unten überall literale font-family-Angaben, nicht var(--kanzlei-font-body).
     */
    --kanzlei-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Basis-Reset & .container: siehe styles.css (wird in HTML VOR CDNs und dieser Datei geladen). */

/* Layout-Raster: früher aus übergeordnetem styles.css; nötig wenn nur dieser Ordner als Webroot liegt (z. B. Hostinger public_html) */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Standard = Systemschrift (literal, s. :root-Kommentar zu Safari); Rosario nur an Titel-Klassen */
html {
    background-color: var(--kanzlei-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: var(--kanzlei-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--kanzlei-text);
    -webkit-font-smoothing: antialiased;
}

/* Fließtext-Basis explizit (nicht von Titel-/Display-Elementen erben, wenn Spezifität aus styles.css dazwischenfunkt) */
.kanzlei-page-wrap,
.kanzlei-main-shell,
#main {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-topbar {
    background-color: #111827;
    color: #f9fafb;
    font-size: 13px;
    padding: 8px 0;
}

.kanzlei-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kanzlei-topbar-opening {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kanzlei-topbar-break {
    display: none;
}

.kanzlei-topbar-opening .bi {
    font-size: 1em;
}

.kanzlei-topbar-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kanzlei-topbar-phone {
    color: #f9fafb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kanzlei-topbar-phone:hover {
    color: #ffffff;
}

.kanzlei-header {
    background-color: #1A364E;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.kanzlei-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    gap: 16px;
    min-width: 0;
}

.kanzlei-logo {
    display: flex;
    align-items: center;
}

.kanzlei-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.kanzlei-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kanzlei-logo-main {
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--kanzlei-muted);
}

.kanzlei-logo-sub {
    font-size: 20px;
    font-weight: 600;
    color: var(--kanzlei-primary);
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-nav-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    min-width: 0;
}

.kanzlei-nav {
    display: flex;
    gap: 24px;
    font-size: 17px;
    min-width: 0;
    flex-shrink: 1;
}

.kanzlei-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 28px;
    background-color: #FFDCA9;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.kanzlei-nav-cta:hover {
    background-color: #f5d08a;
}

/* Burger: nur auf Mobile sichtbar */
.kanzlei-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
}

.kanzlei-burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.kanzlei-menu-open .kanzlei-burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.kanzlei-menu-open .kanzlei-burger-bar:nth-child(2) {
    opacity: 0;
}
body.kanzlei-menu-open .kanzlei-burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.kanzlei-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.kanzlei-page-wrap {
    width: 100%;
}

.kanzlei-main-shell {
    width: 100%;
}

html.kanzlei-menu-open,
body.kanzlei-menu-open {
    overflow: hidden;
}

body.kanzlei-menu-open .kanzlei-page-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

body.kanzlei-menu-open .kanzlei-menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel (slide from right) – Inhalt im Panel scrollbar, Seite scrollt nicht */
.kanzlei-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #1A364E 0%, #0B1722 100%);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    padding: 20px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body.kanzlei-menu-open .kanzlei-menu-panel {
    transform: translateX(0);
}

.kanzlei-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.kanzlei-menu-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.kanzlei-menu-intro {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding: 6px 8px;
    background: rgba(4, 12, 22, 0.35);
    border-radius: 10px;
}

.kanzlei-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.kanzlei-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.kanzlei-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kanzlei-menu-link {
    display: block;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.kanzlei-menu-link:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kanzlei-menu-link:hover {
    color: #FFDCA9;
}

.kanzlei-menu-link--active,
.kanzlei-menu-link[aria-current="page"] {
    color: var(--kanzlei-secondary);
    cursor: default;
    pointer-events: none;
}

.kanzlei-menu-link--active:hover {
    color: var(--kanzlei-secondary);
}

.kanzlei-menu-cta {
    text-align: center;
    margin-top: 6px;
}

.kanzlei-menu-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kanzlei-menu-stats {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 8px;
    align-items: stretch;
}

.kanzlei-menu-stat-main {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.kanzlei-menu-stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #FFDCA9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-menu-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.kanzlei-menu-stat-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kanzlei-menu-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
}

.kanzlei-menu-stat-text {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 993px) {
    .kanzlei-menu-overlay,
    .kanzlei-menu-panel {
        display: none !important;
    }
}

.kanzlei-nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.kanzlei-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--kanzlei-secondary);
    transition: width 0.2s ease;
}

.kanzlei-nav-link:hover {
    color: #FFDCA9;
}

.kanzlei-nav-link:hover::after {
    width: 100%;
}

/* Aktueller Seitenstatus (z.B. Kanzlei auf kanzlei.html) */
.kanzlei-nav-link--active,
.kanzlei-nav-link[aria-current="page"] {
    color: var(--kanzlei-secondary);
    cursor: default;
}

.kanzlei-nav-link--active::after,
.kanzlei-nav-link[aria-current="page"]::after {
    width: 100%;
}

.kanzlei-nav-link--active:hover {
    color: var(--kanzlei-secondary);
}

.kanzlei-hero {
    position: relative;
    padding: 81px 0 130px;
    background: linear-gradient(167deg, #183B57 0%, #040C16 100%);
    overflow: hidden;
}

.kanzlei-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("./img/ffm-desktop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.07;
    filter: grayscale(100%);
    pointer-events: none;
}

.kanzlei-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 56px;
    align-items: center;
    min-width: 0;
}

.kanzlei-hero-text {
    flex: 0.96;
    min-width: 0;
}

/* Impressum / rechtliche Unterseiten: Hero + Fließtext volle Containerbreite, linksbündig */
.kanzlei-hero--legal-page .kanzlei-hero-text {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: left;
}

.kanzlei-hero--legal-page .kanzlei-hero-subtitle {
    max-width: none;
}

.kanzlei-hero-kicker {
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--kanzlei-secondary);
    font-weight: 600;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-hero-title {
    font-size: clamp(1.7rem, 3.2vw + 1.6rem, 2.7rem); /* ~27px–43px, 20% kleiner */
    font-weight: 300;
    line-height: 1.25;
    color: #FFDCA9;
    margin-bottom: 18px;
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    color: #ffffff;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 24px;
}

.kanzlei-hero-subtitle a {
    color: #ffe8c8;
    font-weight: 600;
    text-decoration: none;
}

.kanzlei-hero-subtitle a:hover {
    color: #ffffff;
}

.kanzlei-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

/* Sekundär-Button auf dunklem Hero (Startseite + Unterseiten) gut lesbar */
.kanzlei-hero .kanzlei-btn-secondary {
    border-color: #FCD9A6;
    color: #111827;
    background-color: #FCD9A6;
}

.kanzlei-hero .kanzlei-btn-secondary:hover {
    background-color: #f5d08a;
    border-color: #f5d08a;
    color: #111827;
}

.kanzlei-btn-primary,
.kanzlei-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 17.5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kanzlei-btn-primary {
    background-color: #FFDCA9;
    color: #111827;
}

.kanzlei-btn-primary:hover {
    background-color: #f5d08a;
}

.kanzlei-btn-secondary {
    background-color: transparent;
    color: var(--kanzlei-primary);
    border-color: var(--kanzlei-border);
}

.kanzlei-anwaelte .kanzlei-btn-secondary {
    border-color: var(--kanzlei-secondary);
}

.kanzlei-btn-secondary:hover {
    border-color: var(--kanzlei-secondary);
    color: var(--kanzlei-secondary);
    background-color: #f9fafb;
}

.kanzlei-hero-image {
    flex: 0.92;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Unterseiten-Hero mit Bild (Kanzlei, Rechtsgebiete, Anwälte, Termin): Fließtext nutzt volle Textspalte neben dem Bild */
@media (min-width: 901px) {
    .kanzlei-hero--split .kanzlei-hero-subtitle {
        max-width: none;
    }
}

/* Split-Hero: 1:1-Bild wie Startseite/anw-1, Navy/Gold-Atmosphäre, leichter Schatten */
.kanzlei-hero--split .kanzlei-hero-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    height: auto;
    box-shadow: 0 20px 50px rgba(2, 12, 22, 0.45);
}

.kanzlei-hero-img {
    width: 90%;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.kanzlei-section {
    padding: 70px 0;
    background-color: var(--kanzlei-bg);
}

.kanzlei-section-header {
    text-align: left;
    max-width: 720px;
    margin-bottom: 32px;
}

.kanzlei-section-kicker {
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--kanzlei-secondary);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-section-title {
    font-size: 30px;
    color: var(--kanzlei-primary);
    margin-bottom: 12px;
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-section-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    color: var(--kanzlei-muted);
    line-height: 1.7;
}

.kanzlei-section-text a,
.kanzlei-faq .faq-answer a {
    color: var(--kanzlei-secondary);
    font-weight: 600;
    text-decoration: none;
}

.kanzlei-section-text a:hover,
.kanzlei-faq .faq-answer a:hover {
    color: #9a8048;
}

/* Kanzlei-Unterseite – individuelle Sektionen */

/* Wer wir sind: hell, klar strukturiert – Karten optisch angelehnt an Rechtsgebiete-Cards */
.kanzlei-about {
    background-color: #ffffff;
}

.kanzlei-about-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kanzlei-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.kanzlei-about-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--kanzlei-primary);
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Bessere Lesbarkeit der Untertitel auf dunklem Hintergrund im Team-Block */
.kanzlei-team-teaser .kanzlei-about-subtitle {
    color: #FCD9A6;
}

.kanzlei-about-icon svg {
    display: block;
}

.kanzlei-about-icon {
    color: var(--kanzlei-secondary);
}

.kanzlei-about-point {
    padding: 18px 18px 16px;
    border-radius: 16px;
    background-color: var(--kanzlei-surface);
    border: 1px solid rgba(184, 155, 94, 0.8);
}

.kanzlei-about-dots {
    display: none;
}

/* So arbeiten wir: dezente Verlauf-Fläche mit Steps */
.kanzlei-arbeitsweise {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.kanzlei-arbeitsweise-inner {
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: 32px;
    align-items: center;
}

.kanzlei-arbeitsweise-visual {
    min-width: 0;
}

.kanzlei-arbeitsweise-image-frame {
    border-radius: 18px;
    overflow: hidden;
}

.kanzlei-arbeitsweise-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.kanzlei-arbeitsweise-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.kanzlei-arbeitsweise-list li {
    padding: 18px 18px 16px;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid rgba(209, 213, 219, 0.9);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA-Box ohne weiße Box-Styling (soll nur normaler Button wirken) */
.kanzlei-arbeitsweise-list li.kanzlei-arbeitsweise-cta-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
}

/* CTA-Button in "So arbeiten wir" wie im Hero */
.kanzlei-arbeitsweise-list li.kanzlei-arbeitsweise-cta-card .kanzlei-btn-secondary {
    border-color: #FCD9A6;
    color: #111827;
    background-color: #FCD9A6;
}

.kanzlei-arbeitsweise-list li.kanzlei-arbeitsweise-cta-card .kanzlei-btn-secondary:hover {
    background-color: #f5d08a;
    border-color: #f5d08a;
    color: #111827;
}

/* Team-Teaser: dunkler Abschnitt als Kontrast */
.kanzlei-team-teaser {
    background: radial-gradient(circle at top left, #1f2937 0%, #020617 80%);
    color: #f9fafb;
}

.kanzlei-team-teaser .kanzlei-section-title {
    color: #f9fafb;
}

.kanzlei-team-teaser .kanzlei-section-text {
    color: #d1d5db;
}

.kanzlei-team-teaser a {
    color: #FCD9A6;
}

.kanzlei-team-teaser a:hover {
    color: #ffe0a8;
}

.kanzlei-team-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.kanzlei-team-column {
    padding: 18px 18px 16px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(250, 204, 149, 0.75);
}

.kanzlei-team-teaser .kanzlei-section-cta {
    margin-top: 28px;
}

.kanzlei-team-teaser .kanzlei-btn-secondary {
    border-color: #e5e7eb;
    color: #111827;
    background-color: #f9fafb;
}

.kanzlei-team-teaser .kanzlei-btn-secondary:hover {
    background-color: #e5e7eb;
    color: #111827;
}

/* Standort: helle Karten mit feiner Abgrenzung */
.kanzlei-standort {
    background-color: #ffffff;
}

.kanzlei-standort-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kanzlei-standort-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.kanzlei-standort-box {
    padding: 18px 18px 16px;
    border-radius: 14px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    background-color: #f9fafb;
}

/* In der Standort-Sektion: Telefon & E-Mail ebenfalls in goldener Akzentfarbe */
.kanzlei-standort .kanzlei-footer-link-inline {
    color: var(--kanzlei-secondary);
}

.kanzlei-standort .kanzlei-footer-link-inline:hover {
    color: #ffe0a8;
}

/* Links in hellen Kanzlei-Sektionen: bessere Lesbarkeit als Footer-Farbe */
/* Standard: E-Mail & Telefon in goldener Akzentfarbe */
.kanzlei-footer-link-inline {
    color: var(--kanzlei-secondary);
    text-decoration: none;
}

.kanzlei-footer-link-inline:hover {
    color: #ffe0a8;
}

.kanzlei-rechtsgebiete {
    background-color: #ffffff;
}

.kanzlei-rechtsgebiete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Desktop: immer genau 3 Karten pro Reihe; einzelne letzte Karte mittig */
@media (min-width: 901px) {
    .kanzlei-rechtsgebiete-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .kanzlei-rechtsgebiete-grid .kanzlei-rechtsgebiet-card:last-child:nth-child(3n + 1) {
        grid-column: 2;
    }
}

.kanzlei-rechtsgebiete-dots {
    display: none;
}

.kanzlei-rechtsgebiete-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background-color: rgba(24, 59, 87, 0.35);
    cursor: default;
}

.kanzlei-rechtsgebiete-dot.is-active {
    width: 18px;
    background-color: var(--kanzlei-primary);
}

.kanzlei-card {
    position: relative;
    background-color: var(--kanzlei-surface);
    border-radius: 16px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(184, 155, 94, 0.8);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    isolation: isolate;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.kanzlei-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 220, 169, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.kanzlei-card:hover,
.kanzlei-card:focus-visible {
    background-color: #fdfaf5;
    border-color: rgba(184, 155, 94, 1);
}

.kanzlei-card:hover::before,
.kanzlei-card:focus-visible::before {
    opacity: 1;
}

/* Wenn ein Accordion-Card geöffnet ist: Hover-Look beibehalten */
.kanzlei-card.is-open,
.kanzlei-card.is-open:focus-visible {
    background-color: #fdfaf5;
    border-color: rgba(184, 155, 94, 1);
}

.kanzlei-card.is-open::before {
    opacity: 1;
}

.kanzlei-card-kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--kanzlei-secondary);
    font-weight: 600;
    text-transform: none;
    margin-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-card-kicker .bi {
    font-size: 1em;
}

.kanzlei-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--kanzlei-primary);
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-card-tags {
    font-size: 14px;
    color: var(--kanzlei-muted);
}

.kanzlei-card-link {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--kanzlei-secondary);
}

/* Rechtsgebiet Accordion (für die Unterseite "Rechtsgebiete") */
.kanzlei-rechtsgebiet-card {
    gap: 6px;
    cursor: pointer;
}

/* Aufgeklappt: kein Abschneiden des Accordion-Inhalts (Basis .kanzlei-card hat overflow: hidden) */
.kanzlei-rechtsgebiet-card.is-open {
    overflow: visible;
}

.kanzlei-rechtsgebiet-card:focus-visible {
    outline: 2px solid rgba(184, 155, 94, 0.95);
    outline-offset: 2px;
}

.kanzlei-rechtsgebiet-toggle {
    align-self: flex-start;
    margin-top: 6px;
    padding: 10px 18px !important;
    font-size: 14px !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.kanzlei-rechtsgebiet-chevron {
    transition: transform 0.2s ease;
    line-height: 1;
}

.kanzlei-rechtsgebiet-toggle[aria-expanded="true"] .kanzlei-rechtsgebiet-chevron {
    transform: rotate(180deg);
}

.kanzlei-rechtsgebiet-toggle[aria-expanded="true"] {
    border-color: var(--kanzlei-secondary);
    color: var(--kanzlei-secondary);
    background-color: #f9fafb;
}

.kanzlei-rechtsgebiet-details {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.2s ease;
}

/* Genug Höhe für alle Karten (Zivilrecht, Sozialrecht mit langer Liste u. a.); kein künstliches Kürzen */
.kanzlei-rechtsgebiet-card.is-open .kanzlei-rechtsgebiet-details {
    max-height: 20000px;
    opacity: 1;
    overflow: visible;
}

.kanzlei-rechtsgebiet-examples {
    margin: 12px 0 0 0;
    padding-left: 18px;
    color: var(--kanzlei-muted);
    line-height: 1.7;
    font-size: 15px;
}

.kanzlei-rechtsgebiet-examples li {
    margin: 6px 0;
}

.kanzlei-rechtsgebiet-details p + p {
    margin-top: 10px;
}

.kanzlei-section-cta {
    margin-top: 30px;
}

.kanzlei-section-cta--center {
    text-align: center;
}

.kanzlei-anwaelte {
    position: relative;
    background-color: #f3f4f6;
    overflow: hidden;
}

.kanzlei-anwaelte::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("./img/ffm1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    filter: grayscale(100%);
    pointer-events: none;
}

.kanzlei-anwaelte .container {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.kanzlei-anwaelte-inner {
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: 40px;
    align-items: center;
}

.kanzlei-anwaelte-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kanzlei-anwaelte-content .kanzlei-section-cta {
    margin-top: 0;
}

.kanzlei-anwaelte-images {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.kanzlei-anwaelte-marquees {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    overflow: hidden;
}

.kanzlei-anwaelte-row {
    min-width: 0;
    overflow: hidden;
}

.kanzlei-anwaelte-track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.kanzlei-anwaelte-track .kanzlei-anwalt-card {
    flex: 0 0 25%;
    max-width: 25%;
}

.kanzlei-anwalt-card {
    background-color: transparent;
    border: none;
    padding: 0;
}

.kanzlei-anwalt-bild {
    border-radius: 12px;
    background: none;
    color: inherit;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.kanzlei-anwalt-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.kanzlei-bewertungen {
    background-color: #111827;
    color: #f9fafb;
}

.kanzlei-bewertungen-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.kanzlei-bewertungen-text {
    text-align: center;
}

.kanzlei-bewertungen-widget {
    width: 100%;
    min-height: 200px;
    position: relative;
    isolation: isolate;
}

.kanzlei-bewertungen-widget-embed {
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 220px;
}

/* Kein filter/opacity auf dem Embed: Online oft leer oder iframe bricht – stattdessen Milchglas-Lage ÜBER dem Widget */

/* Overlay sichtbar: Milchglas über dem laufenden Widget (backdrop-filter blur) */
.kanzlei-bewertungen-consent-placeholder:not(.kanzlei-bewertungen-consent-placeholder--hidden) {
    background: rgba(17, 24, 39, 0.22);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
}

/* Platzhalter-Overlay über dem Embed */
.kanzlei-bewertungen-consent-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Klicks nur auf die Box selbst */
    border-radius: 4px;
}

.kanzlei-bewertungen-consent-placeholder--hidden {
    display: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.kanzlei-bewertungen-consent-placeholder-inner {
    pointer-events: auto;
    width: 100%;
    max-width: 480px;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    text-align: center;
}

.kanzlei-bewertungen-consent-text {
    font-size: 15px;
    line-height: 1.6;
    color: #e5e7eb;
    margin: 0 0 18px 0;
}

.kanzlei-bewertungen-consent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    background-color: #FFDCA9;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.kanzlei-bewertungen-consent-btn:hover {
    background-color: #f5d08a;
}

.kanzlei-bewertungen .kanzlei-section-title {
    color: #f9fafb;
}

.kanzlei-bewertungen .kanzlei-section-text {
    color: #d1d5db;
}

.kanzlei-online {
    background-color: #ffffff;
}

/* Dark-Variante für Online-Formulare auf Unterseiten */
.kanzlei-online--dark {
    background: linear-gradient(180deg, #0b1722 0%, #111827 100%);
}

.kanzlei-online--dark .kanzlei-section-title {
    color: #f9fafb;
}

.kanzlei-online--dark .kanzlei-section-text {
    color: #d1d5db;
}

.kanzlei-online--dark .kanzlei-section-kicker {
    color: var(--kanzlei-secondary);
}

.kanzlei-online-inner {
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: 40px;
    align-items: center;
}

.kanzlei-online-image,
.kanzlei-online-content {
    min-width: 0;
}

.kanzlei-online-image-frame {
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.kanzlei-online-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.kanzlei-online-content .kanzlei-section-header {
    text-align: left;
}

.kanzlei-online-content .kanzlei-section-text {
    max-width: 620px;
}

/* FAQ: vollständige Regeln (früher in übergeordnetem styles.css; ohne max-height:0 auf .faq-answer
   bleiben alle Antworten sichtbar und Buttons wirken wie Browser-Standard) */
.kanzlei-faq {
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
}

.kanzlei-faq .kanzlei-section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.kanzlei-faq .faq-list {
    max-width: 800px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.kanzlei-faq .faq-item {
    margin-bottom: 14px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(229, 231, 235, 0.9);
}

.kanzlei-faq .faq-question {
    width: 100%;
    margin: 0;
    padding: 18px 22px;
    padding-right: 28px;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--kanzlei-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    -webkit-appearance: none;
    appearance: none;
    transition: background-color 0.2s ease;
}

.kanzlei-faq .faq-question:hover {
    background-color: rgba(249, 250, 251, 0.95);
}

.kanzlei-faq .faq-question:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(184, 155, 94, 0.45);
}

.kanzlei-faq .faq-question:focus:not(:focus-visible) {
    box-shadow: none;
}

.kanzlei-faq .faq-question:focus-visible {
    outline: 2px solid var(--kanzlei-secondary);
    outline-offset: 2px;
    box-shadow: none;
}

.kanzlei-faq .faq-question::after {
    content: "+";
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: var(--kanzlei-secondary);
    transition: transform 0.3s ease;
}

.kanzlei-faq .faq-question.active::after {
    transform: rotate(45deg);
}

.kanzlei-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.kanzlei-faq .faq-answer.active {
    max-height: 1200px;
}

.kanzlei-faq .faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--kanzlei-muted);
}

.kanzlei-faq .faq-answer p:first-of-type {
    padding-top: 2px;
}

.kanzlei-footer {
    position: relative;
    background-color: #111827;
    color: #e5e7eb;
    padding: 48px 0 36px;
    margin-top: 0;
    overflow: hidden;
    /* Einheitliche, kompakte Footer-Typografie (unterhalb des Fließtexts der Sektionen) */
    --kanzlei-footer-fs-heading: 0.75rem;
    --kanzlei-footer-fs-body: 0.8125rem;
    --kanzlei-footer-fs-meta: 0.6875rem;
}

.kanzlei-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("./img/ffm-desktop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    filter: grayscale(100%);
    pointer-events: none;
}

.kanzlei-footer > .container {
    position: relative;
    z-index: 1;
}

.kanzlei-footer-top {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.kanzlei-footer-block {
    min-width: 0;
    flex: 1 1 120px;
    max-width: 260px;
}

.kanzlei-footer-title {
    font-size: var(--kanzlei-footer-fs-heading);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 8px;
}

.kanzlei-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kanzlei-footer-link,
.kanzlei-footer-link-inline {
    color: #e5e7eb;
    text-decoration: none;
}

.kanzlei-footer .kanzlei-footer-link,
.kanzlei-footer .kanzlei-footer-link-inline {
    font-size: var(--kanzlei-footer-fs-body);
    line-height: 1.45;
}

.kanzlei-footer-link:hover,
.kanzlei-footer-link-inline:hover {
    color: var(--kanzlei-secondary);
}

.kanzlei-footer-link--current,
.kanzlei-footer-link[aria-current="page"] {
    color: var(--kanzlei-secondary);
    cursor: default;
    pointer-events: none;
}

.kanzlei-footer-text {
    font-size: var(--kanzlei-footer-fs-body);
    color: #d1d5db;
    line-height: 1.45;
    margin-bottom: 5px;
}

.kanzlei-footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 22px;
    font-size: var(--kanzlei-footer-fs-meta);
    color: #9ca3af;
    line-height: 1.4;
}

.kanzlei-footer-bottom p {
    margin: 0;
    font-size: inherit;
}

/* Cookie-Banner (DSGVO-konforme Einwilligung für externe Dienste) */
.kanzlei-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.97);
    color: #e5e7eb;
    padding: 16px 0;
}

.kanzlei-cookie-banner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(184, 155, 94, 0.4) 15%,
        rgba(255, 220, 169, 0.9) 50%,
        rgba(184, 155, 94, 0.4) 85%,
        transparent 100%
    );
    pointer-events: none;
}

.kanzlei-cookie-banner--hidden {
    display: none;
}

.kanzlei-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    align-items: center;
}

.kanzlei-cookie-text-wrap {
    flex: 1 1 260px;
    font-size: 12px;
    line-height: 1.4;
}

.kanzlei-cookie-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.kanzlei-cookie-text a {
    color: #bfdbfe;
    font-weight: 600;
    text-decoration: none;
}

.kanzlei-cookie-text a:hover {
    color: #e0f2fe;
}

.kanzlei-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.kanzlei-cookie-btn {
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    color: #e5e7eb;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.kanzlei-cookie-btn--primary {
    background-color: #FFDCA9;
    color: #111827;
    border-color: #FCD9A6;
}

.kanzlei-cookie-btn--primary:hover {
    background-color: #f5d08a;
}

.kanzlei-cookie-btn--secondary {
    border-color: #4b5563;
}

.kanzlei-cookie-btn--secondary:hover {
    background-color: #1f2937;
}

/* Responsive – Layout-Tuning bis 1024px (z. B. iPad Pro) */
@media (max-width: 1024px) {
    /* Hero: weniger Abstand, passt besser auf schmale Viewports */
    .kanzlei-hero {
        padding: 56px 0 90px;
    }

    .kanzlei-hero-inner {
        gap: 36px;
    }

    .kanzlei-hero-title {
        font-size: clamp(1.5rem, 2.8vw + 1.2rem, 2.35rem);
    }

    .kanzlei-hero-subtitle {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .kanzlei-hero-image .kanzlei-hero-img {
        max-width: 70%;
    }

    /* Footer: in eine Reihe bei 1024px */
    .kanzlei-footer-top {
        gap: 20px;
    }

    .kanzlei-footer-block {
        max-width: 220px;
        flex: 1 1 100px;
    }

}

/* Zwischen Tablet- und Desktop-Bereich: horizontales Überlaufen abschneiden,
   aber mit overflow-x: clip, damit position: sticky der Navbar erhalten bleibt. */
@media (min-width: 769px) and (max-width: 1024px) {
    html,
    body {
        overflow-x: clip;
    }

    /* Online-Formulare: etwas schmaleres Grid + geringerer Abstand,
       damit Bild und Text sicher innerhalb der Inhaltsbreite bleiben. */
    .kanzlei-online-inner {
        grid-template-columns: minmax(0, 42%) minmax(0, 58%);
        gap: 32px;
    }

    .kanzlei-online-content .kanzlei-section-text {
        max-width: 100%;
    }
}

/* Ab 992px runter: Desktop-Navigation weicht Burger-Menü */
@media (max-width: 992px) {
    .kanzlei-nav-wrap {
        display: none;
    }

    .kanzlei-burger {
        display: flex;
    }

    .kanzlei-header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 900px) {
    .kanzlei-hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .kanzlei-hero-text {
        text-align: left;
    }

    /* Gestapelter Hero: Bild oben, Text darunter */
    .kanzlei-hero-image {
        order: -1;
    }

    .kanzlei-hero-text {
        order: 0;
    }

    .kanzlei-bewertungen-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .kanzlei-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px 12px; /* wenig vertikaler Abstand zwischen Text und Buttons */
    }

    .kanzlei-cookie-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: 2px;
    }

    .kanzlei-footer-top {
        flex-direction: column;
        gap: 28px;
    }

    .kanzlei-arbeitsweise-inner {
        grid-template-columns: 1fr;
    }

}

/* Tablet (z. B. iPad Mini/Air): Bild nicht die ganze Breite */
@media (min-width: 481px) and (max-width: 900px) {
    .kanzlei-arbeitsweise-image-frame {
        max-width: 50%;
        width: 50%;
        margin-right: auto;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    /* Auf kleinen Screens horizontalen Overflow nur im Inhaltsbereich abschneiden,
       damit die Sticky-Navbar unbeeinflusst bleibt */
    .kanzlei-main-shell {
        overflow-x: hidden;
    }

    .kanzlei-hero {
        padding: 48px 0 80px;
    }

    .kanzlei-hero::before {
        background-image: url("./img/ffm-mobile.webp");
    }

    .kanzlei-topbar {
        padding: 10px 0;
        font-size: 12px;
    }

    /* Cookie-Banner kompakter auf Mobile */
    .kanzlei-cookie-banner {
        padding: 14px 0;
    }

    .kanzlei-cookie-inner {
        padding: 0 14px;
        gap: 6px 10px;
    }

    .kanzlei-cookie-text-wrap {
        font-size: 11px;
        flex: 0 0 auto;   /* keine Mindesthöhe erzwingen */
        width: 100%;
    }

    .kanzlei-cookie-actions {
        gap: 6px;
        margin-top: 8px; /* angenehmer Abstand zwischen Text und Buttons */
    }

    .kanzlei-topbar-inner {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        min-width: 0;
    }

    .kanzlei-topbar-opening {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .kanzlei-topbar-contact {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .kanzlei-header-inner {
        min-width: 0;
        padding: 14px 20px;
    }

    .kanzlei-hero-inner,
    .kanzlei-hero-text {
        min-width: 0;
    }

    .kanzlei-logo-img {
        height: 38px;
    }

    .kanzlei-section {
        padding: 50px 0;
    }

    .kanzlei-anwaelte-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kanzlei-anwaelte-content {
        gap: 6px;
    }

    .kanzlei-anwaelte-content .kanzlei-section-cta {
        margin-top: 0;
    }

    .kanzlei-anwaelte-grid {
        margin-top: 0;
    }

    /* Anwälte-Marquees: auf kleineren Tablets/Mobiles größer, aber kompakt */
    .kanzlei-anwaelte-track .kanzlei-anwalt-bild {
        transform: scale(0.94);
    }

    /* Kanzlei-Unterseite: About-Cards als horizontales Carousel wie Rechtsgebiete */
    .kanzlei-about-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        margin-top: 24px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .kanzlei-about-grid::-webkit-scrollbar {
        display: none;
    }

    .kanzlei-about-grid .kanzlei-about-point {
        flex: 0 0 85vw;
        max-width: 85vw;
        scroll-snap-align: start;
    }

    .kanzlei-about-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
    }

    .kanzlei-about-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        border: none;
        padding: 0;
        background-color: rgba(24, 59, 87, 0.35);
        cursor: pointer;
        transition: background-color 0.2s ease, width 0.2s ease;
    }

    .kanzlei-about-dot.is-active {
        width: 18px;
        background-color: var(--kanzlei-primary);
    }

    .kanzlei-anwaelte-track .kanzlei-anwalt-card {
        flex: 0 0 35%;
        max-width: 35%;
    }

    /* Rechtsgebiete: mobiles Carousel mit einer Karte pro Ansicht */
    .kanzlei-rechtsgebiete-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        margin-top: 24px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .kanzlei-rechtsgebiete-grid::-webkit-scrollbar {
        display: none;
    }

    .kanzlei-rechtsgebiete-grid .kanzlei-card {
        flex: 0 0 85vw;
        max-width: 85vw;
        scroll-snap-align: start;
    }

    .kanzlei-rechtsgebiete-dots {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        row-gap: 6px;
        margin-top: 12px;
        padding: 0 12px;
        max-width: 100%;
    }

    .kanzlei-rechtsgebiete-dot {
        cursor: pointer;
    }

    /* Online-Formulare: Stack auf Mobile, Bild kleiner */
    .kanzlei-online-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .kanzlei-online-image-frame {
        max-width: 60%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .kanzlei-hero {
        padding: 40px 0 60px;
    }

    /* ca. 10% kleiner als die Desktop-Clamp-Größe, aber weiterhin responsiv */
    .kanzlei-hero-title {
        font-size: clamp(1.53rem, 2.88vw + 1.44rem, 2.43rem);
    }

    .kanzlei-hero-subtitle {
        font-size: 17px;
    }

    .kanzlei-topbar-opening {
        flex-wrap: wrap;
    }

    .kanzlei-topbar-break {
        display: block;
    }
}

/* Unterseite „Anwälte“ – Profilkarten */
.kanzlei-anwalt-profiles {
    background-color: #ffffff;
}

.kanzlei-anwalt-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    max-width: 100%;
}

.kanzlei-anwalt-profile-card {
    position: relative;
    display: flex;
        flex-direction: column;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(184, 155, 94, 0.8);
    background-color: var(--kanzlei-surface);
}

.kanzlei-anwalt-profile-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #f3f4f6;
}

.kanzlei-anwalt-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.kanzlei-anwalt-profile-img--placeholder {
    object-fit: cover;
    object-position: center center;
}

/* Sichtbarer Hintergrund, falls SVG kurz nicht laedt oder Parser streng ist */
.kanzlei-anwalt-profile-photo:has(.kanzlei-anwalt-profile-img[src$="anwalt-portrait-placeholder.svg"]) {
    background: linear-gradient(165deg, #efe9df 0%, #d4c9b8 100%);
}

.kanzlei-anwalt-bild:has(.kanzlei-anwalt-img[src$="anwalt-portrait-placeholder.svg"]) {
    background: linear-gradient(165deg, #efe9df 0%, #d4c9b8 100%);
}

.kanzlei-anwalt-profile-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px 20px;
    flex: 1;
    min-width: 0;
}

.kanzlei-anwalt-profile-name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--kanzlei-primary);
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.25;
}

/* „Rechtsanwalt seit …“ als goldene Kapsel (ohne Icon) */
.kanzlei-anwalt-profile-since {
    margin: 0;
    align-self: flex-start;
    display: inline-block;
    max-width: 100%;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: #111827;
    background: linear-gradient(135deg, #ffe8c8 0%, #ffdba6 45%, #ffd49a 100%);
    border: none;
    box-sizing: border-box;
}

.kanzlei-anwalt-profile-qual,
.kanzlei-anwalt-profile-edu {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--kanzlei-muted);
    display: flex;
        align-items: flex-start;
        gap: 8px;
    }

.kanzlei-anwalt-profile-qual i,
.kanzlei-anwalt-profile-edu i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--kanzlei-secondary);
    font-size: 1rem;
}

.kanzlei-anwalt-profiles-cta {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 1100px) {
    .kanzlei-anwalt-profile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .kanzlei-anwalt-profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 520px) {
    .kanzlei-anwalt-profile-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .kanzlei-anwalt-profile-name {
        font-size: 19px;
    }

    .kanzlei-anwalt-profile-since {
        font-size: 14px;
        padding: 8px 15px;
    }

    .kanzlei-anwalt-profile-qual,
    .kanzlei-anwalt-profile-edu {
        font-size: 15px;
    }
}

/* —— Termin vereinbaren: Header-CTA auf aktiver Seite —— */
.kanzlei-nav-cta--current {
    cursor: default;
    pointer-events: none;
    opacity: 0.95;
}

.kanzlei-nav-cta--current:hover {
    background-color: #FFDCA9;
}

/* —— Termin: Formular (weiß, volle Inhaltsbreite) —— */
.kanzlei-termin-form {
    background-color: #ffffff;
}

.kanzlei-termin-form-inner {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.kanzlei-termin-form .kanzlei-section-header {
    max-width: none;
    width: 100%;
    text-align: left;
}

.kanzlei-termin-form-note {
    margin-top: 28px;
    margin-bottom: 0;
    text-align: left;
}

.kanzlei-termin-form-note-list {
    margin: 0.35rem 0 0;
    padding-left: 1.25rem;
}

.kanzlei-termin-form-note-list li {
    margin-bottom: 0.45rem;
    font-size: 15px;
    line-height: 1.6;
    color: var(--kanzlei-muted);
}

.kanzlei-termin-form-note-list li:last-child {
    margin-bottom: 0;
}

.kanzlei-form-danke {
    margin-bottom: 24px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(184, 155, 94, 0.55);
    background: linear-gradient(135deg, #fffdf8 0%, #fff5e6 100%);
    color: var(--kanzlei-text);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
}

.kanzlei-form-danke:focus {
    outline: 2px solid var(--kanzlei-secondary);
    outline-offset: 2px;
}

.kanzlei-contact-form {
    margin-top: 8px;
    padding: 8px 0 0;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    max-width: none;
    width: 100%;
}

.kanzlei-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

@media (max-width: 640px) {
    .kanzlei-form-row {
        grid-template-columns: 1fr;
    }
}

.kanzlei-form-group {
    margin-bottom: 18px;
}

.kanzlei-form-group--full {
    grid-column: 1 / -1;
}

.kanzlei-form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--kanzlei-primary);
}

.kanzlei-form-label .kanzlei-form-opt {
    font-weight: 400;
    color: var(--kanzlei-muted);
}

/* Pflichtfeld-Sternchen (Labels + Hinweistext über dem Formular) */
.kanzlei-form-required-star,
.kanzlei-contact-form .kanzlei-form-label span[aria-hidden="true"],
.kanzlei-contact-form .kanzlei-form-checkbox span[aria-hidden="true"] {
    color: #dc2626;
    font-weight: 700;
}

.kanzlei-form-input,
.kanzlei-form-select,
.kanzlei-form-textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.45;
    font-family: inherit;
    color: var(--kanzlei-text);
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.kanzlei-form-input:focus,
.kanzlei-form-select:focus,
.kanzlei-form-textarea:focus {
    outline: none;
    border-color: var(--kanzlei-secondary);
    box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.25);
}

.kanzlei-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.kanzlei-form-hint {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--kanzlei-muted);
    line-height: 1.45;
}

.kanzlei-form-radios {
    display: flex;
        flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 4px;
}

.kanzlei-form-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--kanzlei-text);
    cursor: pointer;
}

.kanzlei-form-radio input {
    width: 18px;
    height: 18px;
    accent-color: var(--kanzlei-secondary);
}

.kanzlei-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--kanzlei-muted);
    cursor: pointer;
}

.kanzlei-form-checkbox input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--kanzlei-secondary);
}

.kanzlei-form-checkbox a {
    color: var(--kanzlei-secondary);
    font-weight: 600;
    text-decoration: none;
}

.kanzlei-form-checkbox a:hover {
    color: #9a8048;
}

.kanzlei-form-actions {
    margin-top: 24px;
}

.kanzlei-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    color: #111827;
    background: linear-gradient(135deg, #ffe8c8 0%, #ffdba6 45%, #ffd49a 100%);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.1s ease;
}

.kanzlei-form-submit:hover {
    filter: brightness(1.03);
}

.kanzlei-form-submit:active {
    transform: scale(0.98);
}

.kanzlei-form-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.kanzlei-contact-form-wrap {
    position: relative;
    width: 100%;
    max-width: none;
}

/* Termin-Seite: Anfahrt & Kontakt auf grauem Grund (wie früher Formular-Sektion) */
.kanzlei-standort--termin-bg {
    background-color: #f9fafb;
}

.kanzlei-standort--termin-bg .kanzlei-standort-box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
}

.kanzlei-standort--termin-bg .kanzlei-footer-link-inline:hover {
    color: #9a8048;
}

/* Skip-Link (Barrierefreiheit, fokussierbar) */
.kanzlei-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10001;
    padding: 12px 20px;
    background: #ffDCA9;
    color: #111827;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 0 0 10px 0;
}

.kanzlei-skip-link:focus {
    left: 0;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Impressum & Datenschutz */
.kanzlei-legal-page {
    background-color: #ffffff;
    text-align: left;
}

.kanzlei-legal-inner {
    max-width: 720px;
    margin: 0 auto;
}

/* Impressum: volle Breite innerhalb des Seiten-Containers, linksbündig */
.kanzlei-legal-inner--full {
    max-width: none;
    width: 100%;
    margin: 0;
    text-align: left;
}

.kanzlei-legal-inner--full .kanzlei-legal-dl div {
    grid-template-columns: minmax(5.5rem, 11rem) minmax(0, 1fr);
}

.kanzlei-legal-muted {
    color: var(--kanzlei-muted);
    font-size: 0.95rem;
}

.kanzlei-legal-inner h2 {
    font-size: 1.2rem;
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(26, 54, 78, 0.12);
    color: var(--kanzlei-primary);
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.01em;
}

.kanzlei-legal-inner h2:first-of-type {
    margin-top: 0;
}

.kanzlei-legal-inner h3 {
    font-size: 1.05rem;
    margin-top: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--kanzlei-primary);
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
}

.kanzlei-legal-inner h3:first-child {
    margin-top: 0;
}

.kanzlei-legal-inner p,
.kanzlei-legal-inner li {
    font-size: 16px;
    line-height: 1.65;
    color: var(--kanzlei-muted);
}

.kanzlei-legal-inner ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0 1rem;
}

.kanzlei-legal-inner a {
    color: var(--kanzlei-secondary);
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

.kanzlei-legal-inner a:hover {
    color: #9a8048;
}

/* Kontakt & Kennzahlen: saubere Zeilen */
.kanzlei-legal-dl {
    margin: 0 0 0.25rem;
}

.kanzlei-legal-dl div {
    display: grid;
    grid-template-columns: minmax(5.5rem, 7.5rem) 1fr;
    gap: 0.35rem 1.25rem;
    align-items: baseline;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(26, 54, 78, 0.06);
}

.kanzlei-legal-dl div:last-child {
    border-bottom: none;
}

.kanzlei-legal-dl dt {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--kanzlei-primary);
}

.kanzlei-legal-dl dd {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--kanzlei-muted);
}

/* Hervorgehobene Infoboxen (EU, Berufshaftpflicht) */
.kanzlei-legal-panel {
    margin-top: 1.75rem;
    padding: 1.25rem 1.35rem;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(26, 54, 78, 0.04) 0%, rgba(184, 148, 74, 0.06) 100%);
    border: 1px solid rgba(26, 54, 78, 0.1);
    border-left: 4px solid var(--kanzlei-secondary, #b8944a);
}

.kanzlei-legal-panel h2 {
    margin-top: 0;
    margin-bottom: 0.65rem;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 1.1rem;
}

.kanzlei-legal-panel-title {
    margin-top: 0;
    margin-bottom: 0.65rem;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 1.1rem;
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    color: var(--kanzlei-primary);
}

.kanzlei-legal-panel p {
    margin: 0 0 0.75rem;
}

.kanzlei-legal-panel p:last-child {
    margin-bottom: 0;
}

.kanzlei-legal-footnote {
    margin-top: 0.5rem;
    font-size: 14px;
    line-height: 1.55;
    color: var(--kanzlei-muted);
    opacity: 0.95;
}

.kanzlei-legal-stand {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 15px;
    color: var(--kanzlei-primary);
}

.kanzlei-legal-note {
    font-size: 14px;
    color: var(--kanzlei-muted);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--kanzlei-border);
}

@media (max-width: 520px) {
    .kanzlei-legal-inner {
        padding-left: 0;
        padding-right: 0;
    }

    .kanzlei-legal-dl div {
        grid-template-columns: 1fr;
        gap: 0.15rem;
        padding: 0.5rem 0;
    }

    .kanzlei-legal-inner--full .kanzlei-legal-dl div {
        grid-template-columns: 1fr;
    }
}

/* Unterseite „Online-Formulare“: Download-Karten (optisch an Rechtsgebiete-Cards) + Hinweise + Zusenden */
.kanzlei-formulare-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    margin-top: 12px;
}

@media (min-width: 901px) {
    .kanzlei-formulare-download-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.kanzlei-formulare-download-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 0;
    min-width: 0;
    padding: 22px 20px 20px;
    border-radius: 16px;
    background: linear-gradient(165deg, #ffffff 0%, #faf8f5 100%);
    border: 1px solid rgba(184, 155, 94, 0.78);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
    isolation: isolate;
}

.kanzlei-formulare-download-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 0% 0%, rgba(255, 220, 169, 0.22), transparent 58%);
    opacity: 0.85;
    pointer-events: none;
    z-index: -1;
}

.kanzlei-formulare-download-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--kanzlei-secondary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-formulare-download-kicker .bi {
    font-size: 1rem;
    opacity: 0.95;
}

.kanzlei-formulare-download-title {
    margin: 0;
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--kanzlei-primary);
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-formulare-download-desc {
    margin: 0;
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.55;
    color: var(--kanzlei-muted);
}

.kanzlei-formulare-download-card .kanzlei-btn-primary {
    align-self: stretch;
    justify-content: center;
    margin-top: auto;
    padding-top: 11px;
    padding-bottom: 11px;
}

.kanzlei-formulare-hinweise {
    margin-top: 36px;
    padding: 26px 24px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26, 54, 78, 0.04) 0%, rgba(249, 250, 251, 0.98) 45%, rgba(255, 252, 247, 0.98) 100%);
    border: 1px solid rgba(26, 54, 78, 0.08);
    border-left: 4px solid var(--kanzlei-secondary, #b8944a);
}

.kanzlei-formulare-hinweise-title {
    margin: 0 0 18px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--kanzlei-primary);
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-formulare-hinweise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px 24px;
}

@media (min-width: 901px) {
    .kanzlei-formulare-hinweise-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.kanzlei-formulare-hinweis-box {
    margin: 0;
    min-width: 0;
}

.kanzlei-formulare-hinweis-box-title {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--kanzlei-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-formulare-hinweis-list {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 14px;
    line-height: 1.55;
    color: var(--kanzlei-muted);
}

.kanzlei-formulare-hinweis-list li {
    margin-bottom: 0.45rem;
}

.kanzlei-formulare-hinweis-list li:last-child {
    margin-bottom: 0;
}

.kanzlei-formulare-send {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(26, 54, 78, 0.1);
}

.kanzlei-formulare-send-title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kanzlei-primary);
    font-family: "Rosario", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-formulare-send-intro {
    margin-bottom: 18px;
    max-width: 52rem;
}

.kanzlei-formulare-send-box-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--kanzlei-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kanzlei-formulare-send-cta {
    margin-top: 24px;
}

