.hiddenCard { display: none !important; }

.footer_top .container {
    background-color: #175D87 !important;
}

/* ── Therapist detail page ── */

.therapist-wrapper {
    background: var(--white);
    margin-top: 100px;
}

.therapist-wrapper img {
    width: auto;
}

.therapist-header {
    padding: 150px 0 0px 0;
    text-align: center;
}

@media(max-width: 1000px) {
    .therapist-wrapper {
        margin-top: 0px;
    }
    .therapist-header {
    padding: 50px 0 0px 0;
    text-align: center;
}
}




.therapist-header .para-heading {
    margin-top: 8px;
    letter-spacing: 1.5px;
    color: var(--colors-text-text-tertiary-600, #535862);
text-align: center;

/* intro */
font-family: Roboto;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 175%; /* 35px */
letter-spacing: 0.4px;
}

.therapist-body {
    display: flex;
    gap: 100px;
    max-width: 1330px;
    margin: 0 auto;
    padding: 48px 20px 80px;
    background: #fff;
}

.therapist-col-left {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.therapist-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.therapist-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid #e9eaeb;
    border-radius: 12px;
    padding: 20px;
}

.therapist-card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.therapist-card-name {
    font-weight: 700;
    color: var(--Brand-Dark);
}

.therapist-card-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.therapist-card-row svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.therapist-card-avatar {
    display: flex;
}

.therapist-card-row a.body-sm {
    color: #535862; 
    text-decoration: underline; 
}

.therapist-card-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.therapist-section .para-heading {
    margin: 0;
    color: #535862;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: normal;
}

.therapist-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.therapist-list li::before {
    content: "•";
    color: #535862;
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .therapist-body {
        flex-direction: column;
        gap: 32px;
        padding: 32px 20px 60px;
    }

    .therapist-col-left {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .therapist-card {
        flex-direction: column;
        align-items: flex-start;
}
}