/**
 * Praxisseite – Ausgabe der Shortcodes
 * Card-Design wie im Dashboard: Rand, Header mit Icon, Body
 * Eigene Klassen (bv-praxis-*) – keine Überschneidung mit Dashboard-CSS
 */
.bv-praxis-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 0;
    margin-bottom: 24px;
    overflow: hidden;
}
.bv-praxis-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

/* Card-Header wie Dashboard: Icon + Titel (optional Beschreibung/Badge) */
.bv-praxis-card-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 25px;
    margin: 0;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
}
.bv-praxis-card-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
}
.bv-praxis-card-title-icon svg {
    width: 16px;
    height: 16px;
}
.bv-praxis-card-title-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}
.bv-praxis-card-title-icon.green {
    background: #d1fae5;
    color: #059669;
}
.bv-praxis-card-title-icon.orange {
    background: #fef3c7;
    color: #d97706;
}
.bv-praxis-card-title-icon.cyan {
    background: #cffafe;
    color: #0891b2;
}
.bv-praxis-card-title-icon.purple {
    background: #ede9fe;
    color: #7c3aed;
}
.bv-praxis-card-title-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.bv-praxis-card-title-text,
.bv-praxis-card-header h3.bv-praxis-card-title-text {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.25;
}
.bv-praxis-card-title-desc {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.25;
    margin: 0;
}
.bv-praxis-card-header .bv-praxis-badge {
    margin-left: auto;
}

/* Card-Body: einheitliches Padding */
.bv-praxis-card-body {
    padding: 24px 25px;
}

/* Badge „Jetzt geöffnet“ */
.bv-praxis-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}
.bv-praxis-badge--open {
    background: #dcfce7;
    color: #166534;
}

/* Kontakt-Card: strukturiert und übersichtlich */
.bv-praxis-kontakt .bv-praxis-card-body {
    padding: 1.25rem;
}
.bv-praxis-kontakt-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.bv-praxis-kontakt-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem 0;
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}
.bv-praxis-kontakt-title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #111827;
}
.bv-praxis-kontakt-subtitle {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #6b7280;
    margin: 0.2rem 0 0;
    line-height: 1.4;
}
.bv-praxis-kontakt-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.bv-praxis-kontakt-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #374151;
}
.bv-praxis-kontakt-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    color: #6b7280;
}
.bv-praxis-kontakt-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.bv-praxis-kontakt-text {
    flex: 1;
    min-width: 0;
}
.bv-praxis-kontakt-text a {
    color: #2563eb;
    text-decoration: none;
}
.bv-praxis-kontakt-text a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Versichertenarten als Segments */
.bv-praxis-versichertenarten-segments {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
.bv-praxis-segment-pill {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
}
.bv-praxis-segment-pill:first-child {
    border-radius: 6px 0 0 6px;
}
.bv-praxis-segment-pill:last-child {
    border-radius: 0 6px 6px 0;
}
.bv-praxis-segment-pill:only-child {
    border-radius: 6px;
}
.bv-praxis-segment-pill + .bv-praxis-segment-pill {
    margin-left: -1px;
}

/* Barrierefreiheit mit grünem Häkchen */
.bv-praxis-barrierefreiheit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9375rem;
    color: #4b5563;
}
.bv-praxis-barrierefreiheit-item {
    margin: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.bv-praxis-barrierefreiheit-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Weitere Informationen (Kombi Versicherung + Barrierefreiheit) */
.bv-praxis-weitere-informationen {
    padding: 1rem 1.25rem;
}
.bv-praxis-weitere-informationen .bv-praxis-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.bv-praxis-wi-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.bv-praxis-wi-subtitle {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
}
.bv-praxis-wi-versicherung-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.bv-praxis-wi-versicherung-list .bv-praxis-segment-pill {
    margin-left: 0;
}
.bv-praxis-wi-barrierefreiheit .bv-praxis-barrierefreiheit-list {
    margin: 0;
    padding: 0;
}

/* Bewertungen Hero (große Zahl + Basierend auf …) */
.bv-praxis-bewertungen-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}
.bv-praxis-rating-big {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}
.bv-praxis-bewertungen-hero .bv-praxis-stars {
    margin-right: 0.25rem;
}
.bv-praxis-bewertungen-hero-text {
    font-size: 0.875rem;
    color: #6b7280;
}
.bv-praxis-bewertungen-hero-link {
    margin-left: auto;
    font-size: 0.875rem;
}
.bv-praxis-bewertungen-hero-link a {
    color: #2563eb;
    text-decoration: underline;
}
.bv-praxis-bewertungen-hero-link a:hover { color: #1d4ed8; }

/* Einzelbewertung mit Initialen-Kreis */
.bv-praxis-review-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.bv-praxis-review-item:last-child { border-bottom: 0; }
.bv-praxis-review-initials {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.bv-praxis-review-body {
    flex: 1;
    min-width: 0;
}

/* Header: Praxisbild-Banner oben (hoch genug), Logo ragt halb ins Banner */
.bv-praxis-header-banner {
    height: 240px;
    background-color: #f3f4f6;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bv-praxis-header-banner-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}
.bv-praxis-header .bv-praxis-header-inner {
    margin-top: 0;
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.5rem 1.25rem;
    background: #fff;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}
.bv-praxis-header-inner {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.bv-praxis-header-logo {
    flex-shrink: 0;
    margin-top: -85px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
}
/* Blöcke: Abstand zwischen Blöcken größer als innerhalb */
.bv-praxis-header-identity,
.bv-praxis-header-contact,
.bv-praxis-header-status,
.bv-praxis-header-categories,
.bv-praxis-header-actions {
    margin-bottom: 1rem;
}
.bv-praxis-header-main > *:last-child {
    margin-bottom: 0;
}
.bv-praxis-header-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem 0;
    margin-bottom: 0;
}
.bv-praxis-badge--verified {
    background: #d1fae5;
    color: #059669;
}
.bv-praxis-header-logo img {
    display: block;
    border-radius: 8px;
    object-fit: cover;
    width: 140px;
    height: 140px;
}
.bv-praxis-header-main {
    flex: 1;
    min-width: 0;
}
.bv-praxis-header-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}
.bv-praxis-card.bv-praxis-header .bv-praxis-header-title,
h1.bv-praxis-header-title {
    font-size: 23px !important;
    line-height: 28px !important;
    font-weight: 700;
    margin: 0;
    color: #111827;
}
.bv-praxis-header-heading .bv-praxis-header-subtitle {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #4b5563;
    margin: 0.25rem 0 0;
}
.bv-praxis-header-contact .bv-praxis-header-address,
.bv-praxis-header-contact .bv-praxis-header-website {
    margin: 0.25rem 0;
    font-size: 0.9375rem;
    color: #4b5563;
}
.bv-praxis-header-address:first-child,
.bv-praxis-header-website:first-child {
    margin-top: 0;
}
.bv-praxis-header-website a {
    color: #2563eb;
    text-decoration: underline;
}
.bv-praxis-header-website a:hover {
    color: #1d4ed8;
}
.bv-praxis-header-status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}
.bv-praxis-header-status .bv-praxis-header-open-badge,
.bv-praxis-header-status .bv-praxis-header-rating {
    margin: 0;
}
.bv-praxis-header-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin: 0.5rem 0 0;
    padding: 0.35rem 0.75rem;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 999px;
}
.bv-praxis-header-open-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
    flex-shrink: 0;
}
.bv-praxis-header-open-badge--soon {
    background: #e0e7ff;
    color: #3730a3;
}
.bv-praxis-header-open-badge-dot--muted {
    background: #6366f1;
}
.bv-praxis-header-open-badge-sep {
    color: #047857;
    font-weight: 700;
}
.bv-praxis-header-rating {
    margin: 0.5rem 0 0.75rem 0;
}
.bv-praxis-header-status .bv-praxis-header-rating {
    margin: 0;
}
.bv-praxis-stars {
    display: inline-flex;
    gap: 1px;
}
.bv-praxis-star {
    color: #e5e7eb;
}
.bv-praxis-star--full,
.bv-praxis-star--half {
    color: #eab308;
}
.bv-praxis-rating-count {
    font-size: 0.875rem;
    color: #6b7280;
    margin-left: 0.25rem;
}
.bv-praxis-header-rating-breakdown {
    margin: 0.25rem 0 0 0;
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}
.bv-praxis-no-reviews {
    font-size: 0.875rem;
    color: #9ca3af;
}
.bv-praxis-header-social {
    margin: 0.75rem 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.bv-praxis-header-social.bv-praxis-social-list--icons-only a:hover { background: rgba(37, 99, 235, 0.1); }

/* Fachgebiete & Sprachen in der Header-Card: kompakt, „Mehr anzeigen“ */
.bv-praxis-header-categories .bv-praxis-header-meta-tags {
    margin-top: 0;
}
.bv-praxis-header-meta-tags {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.bv-praxis-header-tag-group {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    font-size: 0.8125rem;
}
.bv-praxis-header-tag-label {
    flex-shrink: 0;
    font-weight: 600;
    color: #4b5563;
    margin-right: 0.25rem;
}
.bv-praxis-header-tags {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}
.bv-praxis-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 999px;
    font-size: 0.75rem;
    white-space: nowrap;
}
.bv-praxis-header-pill--lang .bv-praxis-header-flag {
    width: 14px;
    height: 10px;
    object-fit: contain;
    flex-shrink: 0;
}
.bv-praxis-header-tags-more {
    display: none;
}
.bv-praxis-header-tag-group.is-expanded .bv-praxis-header-tags-more {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}
/* Inline wie eine Pill, kein Button – Template-Override: kein großer Button */
.bv-praxis-header-more-trigger {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0;
    padding: 0.2rem 0.5rem !important;
    font-size: 0.75rem !important;
    color: #2563eb !important;
    background: #eff6ff !important;
    border: none !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    appearance: none !important;
    box-shadow: none !important;
    line-height: 1.2 !important;
}
.bv-praxis-header-more-trigger:hover {
    background: #dbeafe !important;
    color: #1d4ed8 !important;
}
.bv-praxis-header-tag-group.has-more .bv-praxis-header-more-trigger {
    display: inline-flex !important;
}
.bv-praxis-header-tag-group:not(.has-more) .bv-praxis-header-more-trigger {
    display: none !important;
}
.bv-praxis-header-actions .bv-praxis-header-ctas {
    margin-top: 0;
}
.bv-praxis-header-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.bv-praxis-header-actions .bv-praxis-header-social {
    margin-top: 0.75rem;
}
.bv-praxis-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.bv-praxis-btn-primary {
    background: #2563eb;
    color: #fff;
    border: 1px solid #2563eb;
}
.bv-praxis-btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
}
.bv-praxis-btn-secondary {
    background: #fff;
    color: #374151;
    border: 1px solid #d1d5db;
}
.bv-praxis-btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Sprechzeiten – ein gemeinsames Grid, Zeilen enger, Schrift minimal kleiner */
.bv-praxis-hours-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.1rem 1.5rem;
    margin: 0;
    font-size: 0.9rem;
}
.bv-praxis-hours-row {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    align-items: baseline;
    padding: 0.2rem 0.5rem;
    margin: 0 -0.5rem;
    border-radius: 6px;
    transition: background 0.15s ease;
}
.bv-praxis-hours-row--today {
    background: #f1f5f9;
}
.bv-praxis-hours-row--today .bv-praxis-hours-day,
.bv-praxis-hours-row--today .bv-praxis-hours-time {
    color: #1668e3;
}
.bv-praxis-hours-day {
    margin: 0;
    color: #374151;
    font-weight: 500;
}
.bv-praxis-hours-time {
    margin: 0;
    color: #4b5563;
}
.bv-praxis-hours-notes {
    margin: 0.75rem 0 0 0;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Über die Praxis – eingeklappt mit Mehr/Weniger lesen */
.bv-praxis-ueber-gallery-wrap {
    margin-bottom: 1rem;
}
.bv-praxis-ueber-gallery-wrap .bv-praxis-gallery--layout-hero {
    border-radius: 8px;
    overflow: hidden;
}
.bv-praxis-ueber-wrap { position: relative; }
.bv-praxis-ueber-content {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4b5563;
}
.bv-praxis-ueber-content.bv-praxis-ueber--collapsed {
    max-height: 10em;
    overflow: hidden;
}
.bv-praxis-ueber-content p:last-child { margin-bottom: 0; }
/* Link-Optik, kein Button: Theme-Button-Stile explizit ausgeschlossen */
.bv-praxis-ueber .bv-praxis-ueber-toggle,
.bv-praxis-card-body .bv-praxis-ueber-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    padding: 0;
    border: none;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0;
    cursor: pointer;
    color: #2563eb;
    font-size: 14px;
    text-decoration: none;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}
.bv-praxis-ueber .bv-praxis-ueber-toggle:hover,
.bv-praxis-card-body .bv-praxis-ueber-toggle:hover {
    color: #1d4ed8;
    text-decoration: none;
    background: none !important;
    border: none;
    box-shadow: none !important;
}
.bv-praxis-ueber-toggle-icon { flex-shrink: 0; line-height: 1; }
.bv-praxis-ueber-toggle-icon svg { display: block; vertical-align: middle; }
.bv-praxis-ueber-toggle[aria-expanded="true"] .bv-praxis-ueber-toggle-icon svg { transform: rotate(180deg); }

/* Fachgebiete */
.bv-praxis-specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.bv-praxis-spec-pill {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 999px;
    font-size: 0.875rem;
}

/* Fachgebiete: Grid mit Titel + Beschreibung (Card-Header wie andere Cards) */
.bv-praxis-leistungsspektrum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
}
.bv-praxis-leistungsspektrum-item {
    margin: 0;
}
.bv-praxis-leistungsspektrum-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.35rem 0;
    font-size: 0.975rem !important;
    font-weight: 600;
    color: #111827 !important;
    line-height: 1.3 !important;
}
.bv-praxis-leistungsspektrum-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
}
.bv-praxis-leistungsspektrum-icon svg { width: 100%; height: 100%; display: block; }
.bv-praxis-leistungsspektrum-desc {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
}
@media (max-width: 639px) {
    .bv-praxis-leistungsspektrum-grid {
        grid-template-columns: 1fr;
    }
}

/* Kontakt: Karte + Route + CTAs + Social */
.bv-praxis-kontakt-map-wrap {
    margin: 0 0 0.75rem;
}
.bv-praxis-kontakt-map-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    min-height: 80px;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    color: #374151;
    font-size: 0.8125rem;
    text-align: center;
}
.bv-praxis-kontakt-map-preview:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}
.bv-praxis-kontakt-map-preview-icon {
    color: #6b7280;
    flex-shrink: 0;
}
.bv-praxis-kontakt-map-preview-icon svg {
    width: 22px;
    height: 22px;
}
.bv-praxis-kontakt-map-preview-text { font-weight: 500; color: #111827; }
.bv-praxis-kontakt-map-preview-hint { font-size: 0.6875rem; color: #9ca3af; }
.bv-praxis-kontakt-map-cta-wrap {
    margin-bottom: 1rem;
}
.bv-praxis-kontakt-btn-route {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
}
.bv-praxis-kontakt-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.bv-praxis-kontakt-ctas .bv-praxis-btn {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}
.bv-praxis-kontakt-social {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}
.bv-praxis-kontakt-social.bv-praxis-social-list--icons-only {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
}
.bv-praxis-kontakt-social .bv-praxis-social-icon svg {
    width: 18px;
    height: 18px;
}
.bv-praxis-kontakt-online-links {
    margin: 1rem 0;
}
.bv-praxis-kontakt-online-links-title {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0 0 0.5rem;
}
.bv-praxis-kontakt-online-links .bv-praxis-verzeichnisse-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.bv-praxis-kontakt-online-links .bv-praxis-verzeichnisse-list li { margin: 0.25rem 0; }
.bv-praxis-kontakt-online-links .bv-praxis-verzeichnisse-list a { color: #2563eb; text-decoration: none; }
.bv-praxis-kontakt-online-links .bv-praxis-verzeichnisse-list a:hover { color: #1d4ed8; text-decoration: underline; }
/* Modal Standortkarte */
.bv-praxis-location-modal {
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.bv-praxis-location-modal[aria-hidden="true"] { display: none; }
.bv-praxis-location-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 80vh;
    max-height: 560px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.bv-praxis-location-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 1000;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #374151;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.bv-praxis-location-modal__close:hover { background: #fff; }
.bv-praxis-location-modal__locate {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 1002;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
    color: #374151;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bv-praxis-location-modal__locate:hover:not(:disabled) { background: #fff; }
.bv-praxis-location-modal__locate:disabled { opacity: 0.7; cursor: wait; }
.bv-praxis-location-modal__locate svg { display: block; }
/* Marker wie bv_map (Pin-Icon) */
.bv-praxis-location-modal .bv-marker.bv-praxis-location-marker .bv-pin {
    display: inline-flex;
    width: 28px;
    height: 38px;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 1px 0 #fff) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}
.bv-praxis-location-modal .bv-marker.bv-praxis-location-marker .bv-pin svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
#bv-praxis-location-map {
    width: 100%;
    height: 100%;
    min-height: 320px;
}
/* Zoom-Control oben rechts zuverlässig sichtbar (Template-Overrides) */
.bv-praxis-location-modal .leaflet-control-zoom {
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    margin: 10px 10px 0 0 !important;
    z-index: 1001;
}
.bv-praxis-location-modal .leaflet-control-zoom a {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    background: rgba(255, 255, 255, 0.98) !important;
}
.bv-praxis-location-modal .leaflet-control-zoom a:hover {
    background: #f3f4f6 !important;
    color: #111827 !important;
}
.bv-praxis-location-modal .leaflet-control-zoom .leaflet-control-zoom-in,
.bv-praxis-location-modal .leaflet-control-zoom .leaflet-control-zoom-out {
    display: block;
}
/* Kein zweites Zoom-Control (nur top right) */
.bv-praxis-location-modal .leaflet-bottom.leaflet-left { display: none !important; }

/* Praxisbilder – Galerie randlos, Card behält unten Padding */
.bv-praxis-praxisbilder .bv-praxis-card-body {
    padding-bottom: 24px;
}
.bv-praxis-gallery {
    display: grid;
    gap: 0.75rem;
    max-width: 100%;
    margin-bottom: 0;
}
/* Ein Bild: volle Breite, 16:9 */
.bv-praxis-gallery--layout-hero .bv-praxis-gallery-item:only-child {
    grid-column: 1 / -1;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}
/* 2–3 Bilder + optional „mehr“: 3 Spalten, 2 Zeilen */
.bv-praxis-gallery--layout-hero {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 32/9;
}
.bv-praxis-gallery--layout-hero .bv-praxis-gallery-slot-main {
    grid-column: 1;
    grid-row: 1 / -1;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: unset;
    min-height: 100%;
    align-self: stretch;
}
.bv-praxis-gallery--layout-hero .bv-praxis-gallery-slot-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bv-praxis-gallery--layout-hero .bv-praxis-gallery-slot-top {
    grid-column: 2;
    grid-row: 1;
    border-radius: 8px;
    overflow: hidden;
}
.bv-praxis-gallery--layout-hero .bv-praxis-gallery-slot-bottom {
    grid-column: 2;
    grid-row: 2;
    border-radius: 8px;
    overflow: hidden;
}
.bv-praxis-gallery--layout-hero .bv-praxis-gallery-more {
    grid-column: 3;
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: rgba(55, 65, 81, 0.85);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    padding: 0.5rem;
    transition: background-color 0.15s ease;
}
.bv-praxis-gallery--layout-hero .bv-praxis-gallery-more:hover {
    background-color: rgba(31, 41, 55, 0.9);
}
.bv-praxis-gallery-more-count {
    display: block;
    font-size: 1.25rem;
    line-height: 1.2;
}
.bv-praxis-gallery-more-label {
    font-size: 0.875rem;
    font-weight: 500;
}
.bv-praxis-gallery-more-label::after {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    margin: 0.25rem auto 0;
    background: currentColor;
    opacity: 0.8;
}
/* Nur 1 Bild: volle Breite, 16:9 */
.bv-praxis-gallery--layout-hero:has(.bv-praxis-gallery-item:only-child) {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
}
/* Nur 2 Bilder: groß links, ein klein rechts (2 Spalten) */
.bv-praxis-gallery--layout-hero:has(.bv-praxis-gallery-item:nth-child(2):last-child) {
    grid-template-columns: 2fr 1fr;
}
.bv-praxis-gallery--layout-hero:has(.bv-praxis-gallery-item:nth-child(2):last-child) .bv-praxis-gallery-slot-top {
    grid-column: 2;
    grid-row: 1 / -1;
}
/* Nur 2 Bilder: Haupt + oben, dritte Zelle leer */
.bv-praxis-gallery-item {
    display: block;
    aspect-ratio: 16/9;
    background: #f3f4f6;
    cursor: pointer;
    min-height: 0;
}
.bv-praxis-gallery-slot-main {
    aspect-ratio: auto;
    min-height: 0;
}
.bv-praxis-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 639px) {
    .bv-praxis-gallery--layout-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        aspect-ratio: auto;
    }
    .bv-praxis-gallery--layout-hero .bv-praxis-gallery-slot-main,
    .bv-praxis-gallery--layout-hero .bv-praxis-gallery-slot-top,
    .bv-praxis-gallery--layout-hero .bv-praxis-gallery-slot-bottom {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 16/9;
    }
    .bv-praxis-gallery--layout-hero .bv-praxis-gallery-more {
        grid-column: 1;
        grid-row: auto;
        min-height: 80px;
    }
}

/* Lightbox – hohe Spezifität, damit Theme/Template die Buttons nicht überschreibt */
#bv-praxis-lightbox-root.bv-praxis-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 4rem;
    cursor: pointer;
}
#bv-praxis-lightbox-root .bv-praxis-lightbox-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    cursor: default;
}
#bv-praxis-lightbox-root.bv-praxis-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
}
#bv-praxis-lightbox-root button.bv-praxis-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    color: #fff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    min-width: 44px;
    min-height: 44px;
    box-shadow: none !important;
    z-index: 2;
    transition: opacity 0.2s ease;
}
#bv-praxis-lightbox-root button.bv-praxis-lightbox-close:hover {
    opacity: 0.85;
    background: transparent !important;
    background-color: transparent !important;
}
#bv-praxis-lightbox-root button.bv-praxis-lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
}
#bv-praxis-lightbox-root button.bv-praxis-lightbox-prev,
#bv-praxis-lightbox-root button.bv-praxis-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    color: #fff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    min-width: 48px;
    min-height: 48px;
    box-shadow: none !important;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    z-index: 2;
}
#bv-praxis-lightbox-root button.bv-praxis-lightbox-prev:hover,
#bv-praxis-lightbox-root button.bv-praxis-lightbox-next:hover {
    opacity: 0.85;
    background: transparent !important;
    background-color: transparent !important;
}
#bv-praxis-lightbox-root button.bv-praxis-lightbox-prev svg,
#bv-praxis-lightbox-root button.bv-praxis-lightbox-next svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
}
#bv-praxis-lightbox-root button.bv-praxis-lightbox-prev {
    left: 1rem;
}
#bv-praxis-lightbox-root button.bv-praxis-lightbox-next {
    right: 1rem;
}
#bv-praxis-lightbox-root .bv-praxis-lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}
#bv-praxis-lightbox-root.bv-praxis-lightbox[aria-hidden="true"] {
    display: none;
}

/* Bewertungen (Details in Hero/Initialen oben) */
.bv-praxis-bewertungen-summary { margin-bottom: 1rem; }
.bv-praxis-reviews-list { list-style: none; margin: 0 0 1rem 0; padding: 0; }
.bv-praxis-review-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; font-size: 0.875rem; color: #6b7280; }
.bv-praxis-review-title { font-size: 1rem; font-weight: 600; margin: 0 0 0.25rem 0; color: #1f2937; }
.bv-praxis-review-content { margin: 0 0 0.5rem 0; font-size: 0.9375rem; line-height: 1.5; color: #4b5563; }
.bv-praxis-review-reply { margin-top: 0.5rem; padding: 0.5rem 0 0 0; border-top: 1px solid #e5e7eb; font-size: 0.875rem; color: #4b5563; }
.bv-praxis-review-reply strong { display: block; margin-bottom: 0.25rem; color: #374151; }
.bv-praxis-bewertungen-cta { margin: 0.5rem 0 0 0; }

/* Sprachen – kleine Badges inkl. Länderflagge */
.bv-praxis-sprachen-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #4b5563;
}
.bv-praxis-sprachen-list li {
    margin: 0;
}
.bv-praxis-sprachen-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.45rem;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 0.775rem;
    font-weight: 500;
    color: #374151;
}
.bv-praxis-sprachen-flag-img {
    width: 16px;
    height: auto;
    max-height: 11px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
    object-fit: cover;
}

/* Social – Icon vor jedem Link */
.bv-praxis-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bv-praxis-social-list li {
    margin: 0.35rem 0;
}
.bv-praxis-social-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: underline;
    font-size: 0.9375rem;
}
.bv-praxis-social-list a:hover {
    color: #1d4ed8;
}
.bv-praxis-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: currentColor;
}
.bv-praxis-social-icon svg {
    width: 20px;
    height: 20px;
}
.bv-praxis-social-list--icons-only {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.bv-praxis-social-list--icons-only li { margin: 0; }
.bv-praxis-social-list--icons-only a {
    text-decoration: none;
    padding: 0.25rem;
    border-radius: 6px;
}
.bv-praxis-social-list--icons-only a:hover { background: rgba(37, 99, 235, 0.1); }

/* FAQ – 2 Spalten wie Fachgebiete (Leistungsspektrum-Grid) */
.bv-praxis-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
}
.bv-praxis-faq-item {
    margin: 0;
}
.bv-praxis-faq-item .bv-praxis-faq-list { margin: 0; }
.bv-praxis-faq-q {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}
.bv-praxis-faq-q-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
}
.bv-praxis-faq-q-icon svg { width: 100%; height: 100%; display: block; }
.bv-praxis-faq-a {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #4b5563;
}
.bv-praxis-faq-a p:last-child { margin-bottom: 0; }
@media (max-width: 639px) {
    .bv-praxis-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Versichertenarten (Pills wie Fachgebiete) */
.bv-praxis-versichertenarten-list { margin: 0; padding: 0; }

/* Verzeichnisse (Doctolib, Jameda, Formular) */
.bv-praxis-verzeichnisse-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9375rem;
}
.bv-praxis-verzeichnisse-list a {
    color: #2563eb;
    text-decoration: underline;
}
.bv-praxis-verzeichnisse-list a:hover { color: #1d4ed8; }
.bv-praxis-verzeichnisse-list li { margin: 0.35rem 0; }

/* Stellenanzeigen – kompakt und übersichtlich wie im Dashboard */
.bv-praxis-stellenanzeigen-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.bv-praxis-stelle-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bv-praxis-stelle-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bv-praxis-stelle-card-header {
    display: flex;
    align-items: center;
    gap: 0.4rem 0.6rem;
    padding: 0.5rem 0.75rem;
    min-height: 2.25rem;
    box-sizing: border-box;
}
.bv-praxis-stelle-card-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #6b7280;
}
.bv-praxis-stelle-card-icon svg { display: block; width: 100%; height: 100%; }
.bv-praxis-stelle-card-heading {
    flex: 1;
    min-width: 0;
}
/* Template-Override: Titel der Stellenanzeigen */
.bv-praxis-card.bv-praxis-stellenanzeigen .bv-praxis-stelle-title,
.bv-praxis-stellenanzeigen .bv-praxis-stelle-title,
.bv-praxis-stelle-title {
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: #111827 !important;
    line-height: 1.3 !important;
}
.bv-praxis-stelle-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}
.bv-praxis-stelle-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}
.bv-praxis-stelle-badge--aktiv {
    background: #d1fae5;
    color: #065f46;
}
.bv-praxis-stelle-card-desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0.1rem 0 0 0;
    line-height: 1.3;
}
/* Template-Override: Aufklappen-Button (Chevron) */
.bv-praxis-card.bv-praxis-stellenanzeigen .bv-praxis-stelle-toggle,
.bv-praxis-stellenanzeigen .bv-praxis-stelle-toggle,
.bv-praxis-stelle-toggle {
    flex-shrink: 0 !important;
    background: #f3f4f6 !important;
    border: 1px solid #e5e7eb !important;
    padding: 4px 8px !important;
    cursor: pointer !important;
    color: #6b7280 !important;
    border-radius: 4px !important;
    appearance: none !important;
    font: inherit !important;
}
.bv-praxis-stelle-toggle:hover {
    color: #374151 !important;
    background: #e5e7eb !important;
}
.bv-praxis-stelle-toggle svg {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    transition: transform 0.2s ease;
}
.bv-praxis-stelle-card:not(.bv-praxis-stelle-card--collapsed) .bv-praxis-stelle-toggle svg {
    transform: rotate(180deg);
}
.bv-praxis-stelle-card--collapsed .bv-praxis-stelle-card-body {
    display: none !important;
}
.bv-praxis-stelle-card-body {
    padding: 0.6rem 0.75rem 0.75rem 0.75rem;
    padding-left: calc(18px + 0.6rem);
    border-top: 1px solid #e5e7eb;
}
@media (max-width: 480px) {
    .bv-praxis-stelle-card-body { padding-left: 0.75rem; }
}
.bv-praxis-stelle-card-body .bv-praxis-stelle-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}
.bv-praxis-stelle-card-body .bv-praxis-stelle-meta-label {
    font-weight: 500;
    color: #6b7280;
    flex-shrink: 0;
}
.bv-praxis-stelle-description {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #4b5563;
    margin: 0 0 0.5rem 0;
}
.bv-praxis-stelle-description p:last-child { margin-bottom: 0; }
.bv-praxis-stelle-salary-row { margin: 0 0 0.5rem 0; }
.bv-praxis-stelle-salary-row .bv-praxis-stelle-meta-label { margin-right: 0.25rem; }
.bv-praxis-stelle-salary { font-size: 0.8125rem; font-weight: 500; color: #374151; }
/* Template-Override: "Jetzt bewerben"-Button */
.bv-praxis-stelle-apply { margin: 0.5rem 0 0 0 !important; }
.bv-praxis-card.bv-praxis-stellenanzeigen .bv-praxis-stelle-apply-btn,
.bv-praxis-stellenanzeigen .bv-praxis-stelle-apply-btn,
.bv-praxis-stelle-apply-btn {
    font-size: 0.8125rem !important;
    padding: 0.35rem 0.75rem !important;
    display: inline-block !important;
    background: #2563eb !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-weight: 500 !important;
}
.bv-praxis-stelle-apply-btn:hover {
    background: #1d4ed8 !important;
    color: #fff !important;
}

/* Team – Bild oben mittig, darunter Name und Funktion; große Bildschirme 4 pro Reihe */
.bv-praxis-team-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 1rem 0 0.5rem 0;
}
.bv-praxis-team-subtitle:first-of-type { margin-top: 0; }
.bv-praxis-team-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.bv-praxis-team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.bv-praxis-team-photo {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    margin: 0 auto 0.75rem;
    flex-shrink: 0;
}
.bv-praxis-team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bv-praxis-team-photo-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: #e5e7eb;
}
.bv-praxis-team-info { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.bv-praxis-team-name { font-weight: 600; font-size: 0.9375rem; color: #1f2937; }
.bv-praxis-team-function { font-size: 0.875rem; color: #6b7280; }
@media (max-width: 1023px) {
    .bv-praxis-team-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
    .bv-praxis-team-list { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
 * Entry-Footer (Shortcode) – Card wie übrige Sektionen, kompakt für Sidebar
 * -------------------------------------------------------------------------- */
.bv-praxis-entry-footer-card .bv-praxis-card-header {
    padding: 14px 18px;
}
.bv-praxis-entry-footer-card .bv-praxis-card-title-text,
.bv-praxis-entry-footer-card .bv-praxis-card-header h3.bv-praxis-card-title-text {
    font-size: 14px;
}
.bv-praxis-entry-footer-card .bv-praxis-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #4b5563;
}
.bv-praxis-entry-footer-card .bv-praxis-card-body > p {
    margin: 0;
}
.bv-praxis-entry-footer-claim a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.bv-praxis-entry-footer-claim a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
.bv-praxis-entry-footer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 0.125rem;
}
.bv-praxis-entry-footer-action {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
    box-sizing: border-box;
}
.bv-praxis-entry-footer-actions .bv-praxis-entry-footer-action:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.bv-praxis-entry-footer-action:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
.bv-praxis-entry-footer-meta {
    margin: 0;
    padding-top: 0.35rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #6b7280;
}
.bv-praxis-entry-footer-meta-label {
    display: block;
    margin-bottom: 0.15rem;
}
.bv-praxis-entry-footer-meta-date {
    display: block;
    font-size: 0.6875rem;
    color: #9ca3af;
    word-break: break-word;
}
