/* ============================================
   Therapist Directory & Profile Styles
   ============================================ */

/* --- Variables (scoped to therapist pages) --- */
/* .therapist-book-cta steht im Markup AUSSERHALB von .therapist-directory-page
   und braucht die Tokens daher selbst */
.therapist-directory-page,
.therapist-profile-page,
.therapist-book-cta {
    --td-accent: var(--color-primary-500);
    --td-accent-light: #D1E0AF;
    --td-accent-pale: var(--color-neutral-warm-200);
    --td-bg-card: var(--color-bg-surface);
    --td-bg-main: var(--color-bg-surface);
    --td-bg-body: var(--color-bg-page);
    --td-text-main: var(--color-text-primary);
    --td-text-muted: var(--color-text-secondary);
    --td-star-color: #FFC20F;
    --td-border-color: var(--color-border-default);
    --td-radius: 16px;
    --td-radius-sm: 10px;
    --td-radius-xs: 6px;
    --td-max-width: 1280px;
}


.therapist-directory-page,
.therapist-profile-page {
    background-color: var(--td-bg-body);
    min-height: 100vh;
}

/* ===========================================
   DIRECTORY PAGE — Header Section
   =========================================== */

/* Hero analog zu /wissen/ (.articles-hero in artikel.php) */
.therapist-hero-wrap {
    background-color: var(--color-bg-surface);
    padding: 16px 16px 0;
}

@media (min-width: 768px) {
    .therapist-hero-wrap {
        padding: 24px 24px 0;
    }
}

.therapist-header-section {
    font-family: var(--font-family-sans);
    background-color: var(--color-neutral-warm-300);
    border-radius: 1.5rem;
    margin-top: -76px;
    padding: 76px 16px 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .therapist-header-section {
        margin-top: -80px;
        padding-top: 80px;
        padding-bottom: 56px;
        border-radius: 2.5rem;
    }
}

.therapist-header-section .container {
    max-width: var(--td-max-width);
    margin: 0 auto;
}

.therapist-header-section .hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--color-primary-500);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.therapist-header-section h1 {
    font-family: var(--font-family-sans);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.therapist-header-section .lead {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 32rem;
    margin: 0 auto;
    font-weight: 400;
}


/* ===========================================
   DIRECTORY PAGE — Filter Section
   =========================================== */

.therapist-filter-section {
    max-width: 1000px; /* Matches the therapist list width */
    margin: 40px auto 24px;
    padding: 0 20px;
}

.therapist-filter-section .filter-card {
    background: var(--td-bg-card);
    border-radius: var(--td-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--td-border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.therapist-filter-section .filter-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Search Input */
.therapist-filter-section .search-input-wrapper {
    flex-grow: 1;
    min-width: 250px;
    position: relative;
}

.therapist-filter-section #filter-radius {
    flex-grow: 0;
    min-width: 180px;
}

.therapist-filter-section .search-input-wrapper svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--td-text-muted);
    pointer-events: none;
}

.therapist-filter-section .search-input {
    width: 100%;
    padding: 14px 16px 14px 40px;
    border: 1px solid var(--td-border-color);
    border-radius: var(--td-radius-sm);
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    background: var(--td-bg-main);
    color: var(--td-text-main);
    transition: border-color 0.2s;
}

.therapist-filter-section .search-input:focus {
    border-color: var(--td-accent);
}

.therapist-filter-section .search-input.has-value {
    border-color: var(--td-accent);
    background-color: var(--td-accent-pale);
}

.therapist-filter-section .search-input::placeholder {
    color: var(--td-text-muted);
}

/* Geocoding Loading Spinner */
.therapist-filter-section .search-input-wrapper .search-spinner {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid var(--td-border-color);
    border-top-color: var(--td-accent);
    border-radius: 50%;
    animation: td-spin 0.6s linear infinite;
    display: none;
}

.therapist-filter-section .search-input-wrapper.is-loading .search-spinner {
    display: block;
}

@keyframes td-spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Filter Select Dropdowns */
.therapist-filter-section .filter-select {
    padding: 14px 36px 14px 16px;
    border: 1px solid var(--td-border-color);
    border-radius: var(--td-radius-sm);
    font-size: 15px;
    font-family: inherit;
    background-color: var(--td-bg-main);
    color: var(--td-text-main);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%234b5563%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    flex-grow: 1;
    min-width: 160px;
}

.therapist-filter-section .filter-select:focus {
    border-color: var(--td-accent);
}

.therapist-filter-section .filter-select.has-value {
    border-color: var(--td-accent);
    background-color: var(--td-accent-pale);
    color: var(--td-accent);
    font-weight: 600;
}

.therapist-filter-section .filter-select option {
    font-weight: normal;
    color: var(--td-text-main);
}

/* Filter Toggle Chips */
.therapist-filter-section .filter-toggles {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 4px;
}

.therapist-filter-section .filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background-color: var(--td-bg-main);
    border: 1px solid var(--td-border-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--td-text-muted);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.therapist-filter-section .filter-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.therapist-filter-section .filter-toggle:focus-within {
    outline: 2px solid var(--td-accent);
    outline-offset: 2px;
}

.therapist-filter-section .filter-toggle:has(input:checked) {
    background-color: var(--td-accent-pale);
    color: var(--td-accent);
    border-color: var(--td-accent);
    font-weight: 600;
}

.therapist-filter-section .filter-toggle:has(input:checked) svg {
    fill: var(--td-accent);
}

.therapist-filter-section .filter-toggle svg {
    width: 16px;
    height: 16px;
    fill: var(--td-text-muted);
    transition: fill 0.2s;
}

/* Disabled states (when Video is active) */
.therapist-filter-section .search-input.is-disabled,
.therapist-filter-section .filter-select.is-disabled {
    opacity: 0.4;
    pointer-events: none;
    background-color: var(--td-bg-body);
}

.therapist-filter-section .filter-toggle.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Active Filter Tags */
.therapist-filter-section .filter-active-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.filter-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px 6px 12px;
    background-color: var(--td-accent-pale);
    color: var(--td-accent);
    border: 1px solid var(--td-accent-light);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.filter-active-tag svg {
    width: 14px;
    height: 14px;
    fill: var(--td-accent);
    flex-shrink: 0;
}

.filter-active-tag__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: none;
    background: none;
    color: var(--td-accent);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background-color 0.15s;
}

.filter-active-tag__remove:hover {
    background-color: var(--td-accent-light);
}

/* Results count */
.therapist-filter-section .results-count {
    font-size: 14px;
    color: var(--td-text-muted);
    padding-top: 4px;
}

.therapist-filter-section .results-count strong {
    color: var(--td-text-main);
}


/* ===========================================
   DIRECTORY PAGE — Listing Cards
   =========================================== */

.therapist-list {
    max-width: 1000px; /* Slightly narrower than the full max-width to create an indent */
    margin: 0 auto;
    padding: 0 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.therapist-card {
    background: var(--td-bg-card);
    border-radius: var(--td-radius);
    padding: 32px;
    display: flex;
    gap: 32px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    border: 1px solid var(--td-border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
}

.therapist-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--td-accent-light);
}

/* Card Image */
.therapist-card__image {
    width: 160px;
    height: auto;
    align-self: stretch;
    min-height: 160px;
    border-radius: 12px;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
    background-color: var(--td-bg-body);
    border: 1px solid var(--td-border-color);
}

/* Card Avatar Placeholder */
.therapist-card__avatar {
    width: 160px;
    min-height: 160px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--td-accent-pale);
    border: 1px solid var(--td-accent-light);
    color: var(--td-accent);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    align-self: stretch;
}

/* Card Content */
.therapist-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.therapist-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.therapist-card__name {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 4px 0;
    color: var(--td-text-main);
    line-height: 1.3;
}

.therapist-card__title {
    font-size: 15px;
    color: var(--td-text-muted);
    margin: 0;
}

/* Rating Badge */
.therapist-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 700;
    background: var(--td-bg-body);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--td-border-color);
    flex-shrink: 0;
    color: var(--td-text-main);
    line-height: 1;
}

.therapist-card__rating svg {
    width: 16px;
    height: 16px;
    fill: var(--td-star-color);
}

.therapist-card__rating-count {
    color: var(--td-text-muted);
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
}

/* Location */
.therapist-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--td-text-muted);
    margin-bottom: 4px;
}

.therapist-card__location svg {
    width: 16px;
    height: 16px;
    fill: var(--td-text-muted);
    flex-shrink: 0;
}

.therapist-card__location {
    min-width: 0;
}

.therapist-card__location-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.therapist-card__distance {
    font-size: 13px;
    font-weight: 600;
    color: var(--td-accent);
    white-space: nowrap;
    margin-left: 4px;
}

/* Badges */
.therapist-card__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.therapist-card__badge {
    background: var(--td-bg-body);
    border: 1px solid var(--td-border-color);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--td-text-muted);
    transition: all 0.2s;
}

.therapist-card__badge.is-highlighted {
    background-color: var(--td-accent-pale);
    color: var(--td-accent);
    border-color: var(--td-accent-light);
    font-weight: 600;
}

/* Insurance Badges */
.therapist-card__insurance {
    display: flex;
    gap: 8px;
    margin-top: auto;
    flex-wrap: wrap;
}

.therapist-card__insurance-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--td-radius-xs);
}

.therapist-card__insurance-badge--gkv {
    background-color: var(--color-accent-teal-bg);
    color: var(--color-accent-teal-text);
    border: 1px solid var(--color-accent-teal-bg);
}

.therapist-card__insurance-badge--pkv {
    background-color: var(--color-accent-lavender-bg);
    color: #3b4c7a;
    border: 1px solid var(--color-accent-lavender-bg);
}

.therapist-card__insurance-badge--selbstzahler {
    background-color: var(--color-neutral-warm-200);
    color: var(--td-text-muted);
    border: 1px solid var(--color-neutral-warm-300);
}

.therapist-card__insurance-badge.is-highlighted {
    color: var(--td-accent);
    background-color: var(--td-accent-pale);
    border-color: var(--td-accent-light);
}

.therapist-card__insurance-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Card Actions (right side) */
.therapist-card__actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 170px;
    border-left: 1px solid var(--td-border-color);
    padding-left: 24px;
    flex-shrink: 0;
}

.therapist-card__appointment-types {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.therapist-card__appointment-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--td-radius-sm);
}

.therapist-card__appointment-type svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.therapist-card__appointment-type--vor-ort {
    background-color: var(--color-neutral-warm-200);
    color: var(--td-text-main);
    border: 1px solid var(--color-neutral-warm-300);
}

.therapist-card__appointment-type--video {
    background-color: var(--color-accent-teal-bg);
    color: var(--color-accent-teal-text);
    border: 1px solid var(--color-accent-teal-bg);
}

/* Profile Button */
.therapist-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: var(--td-accent);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: var(--td-radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

.therapist-card__btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.2s;
}

.therapist-card__btn:hover {
    background-color: #65702b;
    color: #ffffff;
}

.therapist-card__btn:hover svg {
    transform: translateX(3px);
}

/* No Results */
.therapist-list .no-results {
    text-align: center;
    padding: 48px 24px;
    background: var(--td-bg-card);
    border-radius: var(--td-radius);
    border: 1px solid var(--td-border-color);
}

.therapist-list .no-results h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--td-text-main);
}

.therapist-list .no-results p {
    font-size: 15px;
    color: var(--td-text-muted);
    margin: 0;
}


/* ===========================================
   PROFILE PAGE — Layout
   =========================================== */

.therapist-profile-page {
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Disclaimer bricht als 100%-Kind unter den Inhalt um */
}

.therapist-profile-page .profile-wrapper {
    max-width: 1280px;
    width: 100%;
}

.therapist-profile-page .profile-container {
    display: grid;
    grid-template-columns: 320px 1fr 360px;
    gap: 50px;
    width: 100%;
    align-items: start;
}

.therapist-profile-page .profile-container--no-rating {
    grid-template-columns: 320px 1fr;
}

/* --- Left Column --- */
.profile-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-left__image-container {
    background-color: var(--td-bg-card);
    border-radius: var(--td-radius);
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--td-border-color);
}

.profile-left__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.profile-left__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.profile-left__image-placeholder svg {
    width: 120px;
    height: 120px;
    fill: var(--td-accent-light);
}

/* Profile Avatar Placeholder */
.profile-left__image-container--placeholder {
    background-color: var(--td-accent-pale);
    border-color: var(--td-accent-light);
}

.profile-left__avatar {
    font-size: 80px;
    font-weight: 700;
    color: var(--td-accent);
    letter-spacing: 4px;
    line-height: 1;
}

.profile-left__appointment-types {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-left__appointment-type {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--td-text-main);
}

.profile-left__appointment-type svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.profile-left__appointment-type--vor-ort {
    background-color: var(--color-neutral-warm-200);
    color: var(--td-text-main);
    border: 1px solid var(--color-neutral-warm-300);
}

.profile-left__appointment-type--video {
    background-color: var(--color-accent-teal-bg);
    color: var(--color-accent-teal-text);
    border: 1px solid var(--color-accent-teal-bg);
}

/* Contact Info */
.profile-left__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    background-color: var(--td-bg-card);
    padding: 20px;
    border-radius: var(--td-radius);
    border: 1px solid var(--td-border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.profile-left__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--td-text-main);
    line-height: 1.4;
}

.profile-left__contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--td-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.profile-left__contact-item a {
    color: var(--td-accent);
    text-decoration: none;
}

.profile-left__contact-item a:hover {
    text-decoration: underline;
}

/* Languages */
.profile-left__languages {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-left__languages li {
    background-color: var(--td-bg-card);
    padding: 4px 10px;
    border-radius: var(--td-radius-xs);
    font-size: 12px;
    font-weight: 600;
    color: var(--td-text-main);
    border: 1px solid var(--td-border-color);
}

/* Map */
.profile-left__map {
    width: 100%;
    height: 160px;
    background-color: var(--color-gray-200);
    border-radius: 12px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}


/* --- Middle Column --- */
.profile-mid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 0;
}

.profile-mid__header h1 {
    margin: -6px 0 12px 0;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--td-text-main);
    line-height: 1.1;
}

.profile-mid__header .specialty {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--td-accent);
}

.profile-mid__intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--td-text-muted);
}

/* Insurance Info */
.profile-mid__insurance {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.profile-mid__insurance-badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-mid__insurance-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.profile-mid__insurance-badge--gkv {
    background-color: var(--color-accent-teal-bg);
    color: var(--color-accent-teal-text);
    border: 1px solid var(--color-accent-teal-bg);
}

.profile-mid__insurance-badge--pkv {
    background-color: var(--color-accent-lavender-bg);
    color: #3b4c7a;
    border: 1px solid var(--color-accent-lavender-bg);
}

.profile-mid__insurance-badge--selbstzahler {
    background-color: var(--color-neutral-warm-200);
    color: var(--td-text-muted);
    border: 1px solid var(--color-neutral-warm-300);
}

/* Expertise Tags */
.profile-mid__section-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 24px 0;
    color: var(--td-text-main);
}

.profile-mid__expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-mid__expertise-tag {
    background-color: var(--td-bg-card);
    color: var(--td-text-main);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--td-border-color);
}

/* Education Timeline */
.profile-mid__education-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-mid__education-item {
    display: flex;
    gap: 16px;
}

.profile-mid__education-year {
    font-weight: 700;
    color: var(--td-text-muted);
    width: 60px;
    flex-shrink: 0;
}

.profile-mid__education-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-mid__education-title {
    font-weight: 700;
    color: var(--td-text-main);
}

.profile-mid__education-inst {
    font-size: 14px;
    color: var(--td-text-muted);
}


/* --- Right Column --- */
.profile-right {
    background-color: var(--td-bg-card);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-self: start;
    border: 1px solid var(--td-border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.profile-right h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--td-text-main);
}

/* Rating Overview */
.profile-right__rating-overview {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-right__score-circle {
    background-color: var(--td-bg-body);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    flex-shrink: 0;
    color: var(--td-accent);
    border: 2px solid var(--td-accent-light);
}

.profile-right__rating-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-right__stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.profile-right__stars .star {
    width: 18px;
    height: 18px;
}

.profile-right__stars .star--full {
    fill: var(--td-star-color);
}

.profile-right__stars .star--empty {
    fill: var(--td-border-color);
}

.profile-right__review-count {
    font-size: 14px;
    color: var(--td-text-muted);
    font-weight: 500;
}

/* AI Summary */
.profile-right__ai-summary {
    font-size: 14px;
    line-height: 1.5;
    color: var(--td-text-muted);
    background-color: var(--td-bg-body);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--td-border-color);
}

.profile-right__ai-summary strong {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--td-text-main);
    margin-bottom: 8px;
    font-weight: 800;
}

/* Detailed Ratings */
.profile-right__detailed-ratings {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.profile-right__rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-right__rating-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--td-text-muted);
}

.profile-right__score-bar-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 140px;
}

.profile-right__score-bar {
    flex: 1;
    height: 6px;
    background-color: var(--td-border-color);
    border-radius: 3px;
    overflow: hidden;
}

.profile-right__score-fill {
    height: 100%;
    background-color: var(--td-accent);
    border-radius: 3px;
}

.profile-right__score-value {
    font-size: 13px;
    font-weight: 700;
    width: 24px;
    text-align: right;
    color: var(--td-text-main);
}

/* Sources List */
.profile-right__sources-title {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--td-text-muted);
}

.profile-right__sources-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-right__source-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--td-border-color);
}

.profile-right__source-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.profile-right__source-name {
    font-weight: 600;
    color: var(--td-text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-right__source-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.profile-right__source-score {
    font-weight: 700;
    color: var(--td-text-main);
}

.profile-right__source-reviews {
    color: var(--td-text-muted);
    font-size: 12px;
    font-weight: 500;
}

/* Back link */
.therapist-profile-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--td-text-muted);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.therapist-profile-page .back-link:hover {
    color: var(--td-accent);
}

.therapist-profile-page .back-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1100px) {
    .therapist-profile-page .profile-container,
    .therapist-profile-page .profile-container--no-rating {
        grid-template-columns: 280px 1fr;
        gap: 32px;
    }

    .profile-right {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }

    .profile-right > * {
        flex: 1;
        min-width: 200px;
    }

    .profile-right h2 {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    /* Directory Cards */
    .therapist-card {
        flex-direction: column;
        padding: 20px;
    }

    .therapist-card__image,
    .therapist-card__image-placeholder {
        width: 100%;
        height: 200px;
        border: none;
    }

    .therapist-card__avatar {
        width: 100%;
        height: 200px;
        min-height: unset;
        border: none;
    }

    .therapist-card__actions {
        border-left: none;
        border-top: 1px solid var(--td-border-color);
        padding-left: 0;
        padding-top: 20px;
        gap: 16px;
        min-width: unset;
        flex-direction: column;
    }

    .therapist-card__appointment-types {
        flex-direction: column;
        width: 100%;
    }

    .therapist-card__insurance {
        margin-top: 12px;
    }

    /* Filter */
    .therapist-filter-section .search-input-wrapper {
        min-width: 100%;
    }

    .therapist-filter-section .filter-select {
        min-width: calc(50% - 6px);
    }

    /* Profile */
    .therapist-profile-page {
        padding: 24px 16px;
    }

    .therapist-profile-page .profile-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .profile-left__image-container {
        height: 280px;
    }

    .profile-mid__header h1 {
        font-size: 28px;
    }

    .profile-right {
        flex-direction: column;
        padding: 24px;
    }

    .profile-right > * {
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .therapist-filter-section .filter-select {
        min-width: 100%;
    }

    .therapist-card__appointment-types {
        flex-direction: column;
    }

    .therapist-card__appointment-type {
        justify-content: center;
    }
}

/* ===========================================
   DIRECTORY PAGE — SEO-Content-Block
   =========================================== */

.therapist-seo-section {
    padding: 48px 20px 64px;
}

.therapist-seo-section .container {
    max-width: 760px;
    margin: 0 auto;
}

.therapist-seo-section h2 {
    font-family: var(--font-family-sans);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--color-text-primary);
    margin: 32px 0 12px;
}

.therapist-seo-section h2:first-child {
    margin-top: 0;
}

.therapist-seo-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0 0 16px;
}

.therapist-seo-section a {
    color: var(--color-primary-500);
    text-decoration: underline;
}

.therapist-seo-section .therapist-seo-note {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    opacity: 0.85;
    margin-top: 24px;
}

/* ===========================================
   INTERNE VERLINKUNG: Städte-Element
   =========================================== */

.therapist-cities-section {
    padding: 0 20px 48px;
}

.therapist-cities-section .container {
    max-width: 760px;
    margin: 0 auto;
}

.therapist-cities-section h2,
.profile-related-links h2 {
    font-family: var(--font-family-sans);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--color-text-primary);
    margin: 0 0 16px;
}

.therapist-cities__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.therapist-cities__link {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--color-border-default);
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.therapist-cities__link:hover {
    border-color: var(--color-primary-500);
    color: var(--color-primary-500);
}

.profile-related-links {
    max-width: 1080px;
    margin: 32px auto 0;
    padding: 0 20px;
}

/* ===========================================
   DIRECTORY PAGE — Mobile: kompakte Filter
   =========================================== */

.therapist-filter-section .filter-collapse-toggle {
    display: none;
}

@media (max-width: 767px) {
    /* Standort + Umkreis in einer Zeile */
    .therapist-filter-section .filter-row--location {
        flex-wrap: nowrap;
    }

    .therapist-filter-section .search-input-wrapper {
        min-width: 0;
        flex: 1 1 auto;
    }

    .therapist-filter-section #filter-radius {
        min-width: 0;
        flex: 0 0 auto;
    }

    /* Select-Filter aufklappbar */
    .therapist-filter-section .filter-collapse-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 16px;
        background: var(--td-bg-main);
        border: 1px solid var(--td-border-color);
        border-radius: var(--td-radius-sm);
        font-size: 15px;
        font-weight: 600;
        font-family: inherit;
        color: var(--td-text-main);
        cursor: pointer;
    }

    .therapist-filter-section .filter-collapse-toggle svg {
        width: 20px;
        height: 20px;
        fill: var(--td-text-muted);
        transition: transform 0.2s;
    }

    .therapist-filter-section .filter-collapse-toggle.is-open svg {
        transform: rotate(180deg);
    }

    .therapist-filter-section .filter-row--selects {
        display: none;
    }

    .therapist-filter-section .filter-row--selects.is-open {
        display: flex;
    }

    /* Kompaktere Filter-Chips (zweizeilig) */
    .therapist-filter-section .filter-toggles {
        gap: 8px;
    }

    .therapist-filter-section .filter-toggle {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ===========================================
   Disclaimer (Verzeichnis + Profil)
   =========================================== */

.therapist-disclaimer-section {
    padding: 0 20px 48px;
}

.therapist-disclaimer-section .container {
    max-width: 760px;
    margin: 0 auto;
}

.therapist-disclaimer-section .therapist-seo-note,
.profile-disclaimer p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--td-text-muted);
    opacity: 0.85;
    margin: 0;
}

.therapist-disclaimer-section a,
.profile-disclaimer a {
    color: var(--td-accent);
    text-decoration: underline;
}

.profile-disclaimer {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 20px;
}

/* ===========================================
   CLAIM PAGE — Eintrag übernehmen
   =========================================== */

.claim-wrapper {
    max-width: var(--td-max-width);
    margin: 0 auto;
    padding: 40px 20px 64px;
    font-family: var(--font-family-sans);
}

.claim-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 900px) {
    .claim-grid {
        grid-template-columns: 5fr 7fr;
        gap: 48px;
    }
}

/* --- Linke Spalte: Preis & Leistungen --- */

.claim-price-card {
    background-color: var(--color-neutral-warm-200);
    border: 1px solid var(--td-border-color);
    border-radius: var(--td-radius);
    padding: 28px;
    text-align: center;
}

.claim-price-card__label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--td-accent);
    margin-bottom: 8px;
}

.claim-price-card__price {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--td-text-main);
    line-height: 1.1;
}

.claim-price-card__price span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--td-text-muted);
}

.claim-price-card__terms {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--td-text-muted);
}

.claim-features {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.claim-features li {
    position: relative;
    padding-left: 34px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--td-text-muted);
}

.claim-features li strong {
    display: block;
    color: var(--td-text-main);
    margin-bottom: 2px;
}

.claim-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--td-accent);
    /* Häkchen als Inline-SVG-Maske, Farbe über Token */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat, linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.claim-info__note {
    margin-top: 28px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--td-text-muted);
    opacity: 0.85;
}

/* --- Rechte Spalte: Formular --- */

.claim-form-card {
    background-color: var(--td-bg-card);
    border: 1px solid var(--td-border-color);
    border-radius: var(--td-radius);
    padding: 28px;
}

@media (min-width: 768px) {
    .claim-form-card {
        padding: 36px;
    }
}

.claim-form-card h2 {
    font-family: var(--font-family-sans);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--td-text-main);
    margin: 0 0 20px;
}

.claim-form__hp {
    position: absolute;
    left: -9999px;
}

.claim-form__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
}

.claim-form__row .claim-form__group {
    flex: 1 1 200px;
}

.claim-form__row .claim-form__group--small {
    flex: 0 1 120px;
}

.claim-form__group {
    margin-bottom: 18px;
}

.claim-form__group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--td-text-main);
    margin-bottom: 6px;
}

.claim-form__group input,
.claim-form__group textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--td-text-main);
    background-color: var(--td-bg-main);
    border: 1px solid var(--td-border-color);
    border-radius: var(--td-radius-sm);
    outline: none;
    transition: border-color 0.15s ease;
}

.claim-form__group input:focus,
.claim-form__group textarea:focus {
    border-color: var(--td-accent);
}

.claim-form__hint {
    display: block;
    margin-top: 5px;
    font-size: 0.78rem;
    color: var(--td-text-muted);
}

.claim-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--td-text-muted);
    cursor: pointer;
}

.claim-form__checkbox input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--td-accent);
}

.claim-form__checkbox a {
    color: var(--td-accent);
    text-decoration: underline;
}

.claim-form__submit {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 24px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-inverse);
    background-color: var(--td-accent);
    border: none;
    border-radius: var(--td-radius-sm);
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.claim-form__submit:hover {
    opacity: 0.9;
}

.claim-form__legal {
    margin: 14px 0 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--td-text-muted);
    opacity: 0.85;
}

/* --- Meldungen --- */

.claim-message {
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 24px 28px;
    border-radius: var(--td-radius);
    font-family: var(--font-family-sans);
    font-size: 0.95rem;
    line-height: 1.6;
}

.claim-message strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.claim-message p {
    margin: 0;
}

.claim-message--success {
    background-color: var(--td-accent-pale);
    border: 1px solid var(--td-accent);
    color: var(--td-text-main);
}

.claim-message--error {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-error);
    color: var(--color-error);
}

.claim-back-link {
    display: inline-block;
    margin-top: 14px;
    font-weight: 600;
    color: var(--td-accent);
    text-decoration: underline;
}

/* --- Claim-CTA auf Profilseiten --- */

.profile-claim-cta {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 22px 26px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: var(--color-neutral-warm-200);
    border: 1px solid var(--td-border-color);
    border-radius: var(--td-radius);
    font-family: var(--font-family-sans);
}

.profile-claim-cta__text {
    flex: 1 1 380px;
}

.profile-claim-cta__text strong {
    display: block;
    font-size: 1rem;
    color: var(--td-text-main);
    margin-bottom: 4px;
}

.profile-claim-cta__text p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--td-text-muted);
}

.profile-claim-cta__btn {
    flex-shrink: 0;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-inverse);
    background-color: var(--td-accent);
    border-radius: var(--td-radius-sm);
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.profile-claim-cta__btn:hover {
    opacity: 0.9;
    color: var(--color-text-inverse);
}

/* ===========================================
   PROFILE PAGE — Unterer Seitenbereich
   Vollbreiter Block-Wrapper: verhindert, dass Related-Links,
   Claim-CTA und Disclaimer im flex-wrap-Layout der Profilseite
   auf breiten Screens nebeneinander rutschen.
   =========================================== */

.profile-bottom {
    width: 100%;
    flex-basis: 100%;
}

/* ===========================================
   PREMIUM — Badge & Karten-Hervorhebung
   =========================================== */

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background-color: var(--td-accent);
    color: var(--color-text-inverse);
    border-radius: 999px;
    font-family: var(--font-family-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.premium-badge svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0;
}

.premium-badge--card {
    padding: 3px 10px;
    font-size: 0.66rem;
    margin-bottom: 6px;
}

.therapist-card--premium {
    border: 2px solid var(--td-accent);
    background-color: var(--color-neutral-warm-100);
}

/* ===========================================
   PROFILE PAGE — Anfrage-Button (linke Spalte)
   =========================================== */

.profile-left__inquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 16px;
    padding: 13px 20px;
    font-family: var(--font-family-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-inverse);
    background-color: var(--td-accent);
    border-radius: var(--td-radius-sm);
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.profile-left__inquiry-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.profile-left__inquiry-btn:hover {
    opacity: 0.9;
    color: var(--color-text-inverse);
}

/* ===========================================
   PROFILE PAGE — Anfrageformular (Premium)
   =========================================== */

.profile-inquiry {
    max-width: 760px;
    margin: 48px auto 0;
    padding: 28px;
    background-color: var(--td-bg-card);
    border: 1px solid var(--td-border-color);
    border-radius: var(--td-radius);
    font-family: var(--font-family-sans);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .profile-inquiry {
        padding: 36px;
    }
}

.profile-inquiry h2 {
    font-family: var(--font-family-sans);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--td-text-main);
    margin: 0 0 8px;
}

.profile-inquiry__sub {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--td-text-muted);
    margin: 0 0 24px;
}

.profile-inquiry .claim-message {
    padding: 20px 22px;
    margin-bottom: 0;
}

.claim-form__select {
    width: 100%;
    padding: 11px 36px 11px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--td-text-main);
    background-color: var(--td-bg-main);
    border: 1px solid var(--td-border-color);
    border-radius: var(--td-radius-sm);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%234b5563%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.claim-form__select:focus {
    border-color: var(--td-accent);
}

/* ===========================================
   MANAGE PAGE — Premium-Selbstpflege
   =========================================== */

.claim-form-card--narrow {
    max-width: 560px;
    margin: 0 auto;
}

.claim-form-card--manage {
    max-width: 860px;
    margin: 0 auto;
}

.claim-form__grouplabel {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--td-text-main);
    margin-bottom: 8px;
}

.manage-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4px 16px;
}

.manage-checkbox-grid--single {
    grid-template-columns: 1fr;
}

.claim-form__checkbox--compact {
    margin-bottom: 6px;
    font-size: 0.88rem;
    color: var(--td-text-main);
}

.manage-image-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.manage-image-preview img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--td-radius-sm);
    border: 1px solid var(--td-border-color);
}

.manage-image-preview span {
    font-size: 0.78rem;
    color: var(--td-text-muted);
}

.claim-form__group input[type="file"] {
    padding: 9px 10px;
    font-size: 0.85rem;
    cursor: pointer;
}

/* ===========================================
   DIRECTORY PAGE — CTA "Eintrag buchen"
   Akzent-Sektion analog Startseite (bg-warm,
   2.5rem-Radius, zentriert, .badge + .btn-primary)
   =========================================== */

.therapist-book-cta {
    padding: 16px 16px 0;
    margin-top: 48px;
    font-family: var(--font-family-sans);
}

@media (min-width: 768px) {
    .therapist-book-cta {
        padding: 24px 24px 0;
    }
}

.therapist-book-cta__card {
    max-width: 1280px;
    margin: 0 auto;
    background-color: var(--color-bg-warm);
    border-radius: var(--radius-5xl);
    padding: 48px 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .therapist-book-cta__card {
        padding: 72px 64px;
    }
}

.therapist-book-cta__card h2 {
    font-family: var(--font-family-sans);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
    color: var(--color-text-primary);
    margin: 6px 0 20px;
}

.therapist-book-cta__lead {
    max-width: 42rem;
    margin: 0 auto 24px;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
}

.therapist-book-cta__benefits {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
}

.therapist-book-cta__benefits li {
    position: relative;
    padding-left: 24px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.therapist-book-cta__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-color: var(--color-primary-500);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Größerer Button analog Startseiten-CTAs (btn-primary + px-8 py-4) */
.therapist-book-cta__btn {
    padding: 16px 32px;
    font-size: var(--font-size-base);
}

.therapist-book-cta__price {
    margin: 14px 0 0;
    font-size: var(--font-size-xs);
    color: var(--color-text-tertiary);
}
