/* ===== MY THERAPIST CARD ===== */

.therapist-card {
    max-width: 980px;
    margin: 0 auto;
}

.therapist-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.therapist-avatar-lg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.22);
}

.therapist-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.therapist-name {
    font-weight: 600;
    color: var(--rlv-text-main, #111827);
}

:root[data-theme="dark"] .therapist-name {
    color: rgba(255, 255, 255, 0.96);
}

.therapist-specialization,
.therapist-experience {
    font-size: 0.95rem;
}

/* тело карточки */

.therapist-body {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 20px;
    margin-top: 16px;
}

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

.therapist-section-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--rlv-text-main, #111827);
}

:root[data-theme="dark"] .therapist-section-title {
    color: rgba(255, 255, 255, 0.92);
}

.therapist-about {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 0.95rem;
    color: var(--rlv-text-main, #111827);
}

:root[data-theme="dark"] .therapist-about {
    color: rgba(255, 255, 255, 0.9);
}

.therapist-meta-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.therapist-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.9rem;
}

.therapist-meta-label {
    font-weight: 500;
    color: var(--rlv-text-soft);
}

.therapist-meta-value {
    color: var(--rlv-text-main, #111827);
    word-break: break-word;
    overflow-wrap: anywhere;
}

:root[data-theme="dark"] .therapist-meta-value {
    color: rgba(255, 255, 255, 0.9);
}

.therapist-hint {
    margin-top: 10px;
}

/* адаптив */

@media (max-width: 768px) {
    .therapist-header {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .therapist-main {
        align-items: center;
    }

    .therapist-body {
        grid-template-columns: 1fr;
    }
}
