/* ==========================================================================
   Therapist Detail Page
   Extracted from therapists/show.blade.php inline styles
   ========================================================================== */

/* --- Layout: Two-column bio + image --- */

.therapist-layout {
    display: flex;
    flex-wrap: wrap;
}

.therapist-layout > .therapist-bio-col {
    width: 50%;
    padding-right: 15px;
    box-sizing: border-box;
}

.therapist-layout > .therapist-photo-col {
    width: 50%;
    padding-left: 15px;
    box-sizing: border-box;
}

.therapist-photo {
    max-width: 100%;
    height: auto;
}

/* --- Credentials section --- */

.therapist-credentials-section {
    margin-top: 30px;
}

.therapist-credentials {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
}

.therapist-credentials > h3 {
    color: #203965;
    margin: 0 0 20px 0;
    font-size: 18px;
}

.therapist-credentials > h3 .accent {
    color: #aeaa8b;
}

/* --- Credential groups (degrees, certifications) --- */

.credentials-group {
    margin-bottom: 20px;
}

.credentials-group:last-child {
    margin-bottom: 0;
}

.credentials-group h4 {
    color: #666;
    font-size: 14px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credentials-group h4 .credential-icon {
    margin-right: 6px;
}

.credentials-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.credentials-group ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.credentials-group ul li:last-child {
    border-bottom: none;
}

.credentials-group ul li strong {
    color: #333;
}

.credential-meta {
    color: #666;
    font-size: 14px;
}

/* --- Course tags (flex layout) --- */

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.course-tag {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    color: #555;
}

.course-tag .course-year {
    color: #999;
}

/* --- Responsive: Stack columns on tablet/mobile --- */

@media (max-width: 991px) {
    .therapist-layout {
        flex-direction: column;
    }

    .therapist-layout > .therapist-bio-col,
    .therapist-layout > .therapist-photo-col {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }
}
