.employee-bio-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.employee-bio-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.employee-bio-photo-col {
    flex: 0 0 280px;
    text-align: center;
}

.employee-bio-photo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.employee-bio-photo-fallback {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    border-radius: 12px;
    background: var(--bs-tertiary-bg, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: var(--bs-secondary-color, #6c757d);
}

.employee-bio-socials {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.employee-bio-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bs-tertiary-bg, #e9ecef);
    color: var(--bs-body-color, #212529);
    transition: background 0.2s, color 0.2s;
}

.employee-bio-social:hover {
    background: var(--bs-primary, #0d6efd);
    color: #fff;
}

.employee-bio-social svg {
    width: 18px;
    height: 18px;
}

.employee-bio-content-col {
    flex: 1;
    min-width: 0;
}

.employee-bio-name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.employee-bio-title {
    font-size: 1.15rem;
    color: var(--bs-secondary-color, #6c757d);
    margin: 0 0 0.15rem;
}

.employee-bio-department {
    font-size: 0.9rem;
    color: var(--bs-tertiary-color, #adb5bd);
    margin: 0 0 1.25rem;
}

.employee-bio-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.employee-bio-links {
    margin-top: 1.5rem;
}

.employee-bio-links-heading {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.employee-bio-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.employee-bio-links-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-link-color, #0d6efd);
    text-decoration: none;
    font-size: 0.95rem;
}

.employee-bio-links-list a:hover {
    text-decoration: underline;
}

.employee-bio-link-icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .employee-bio-layout {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .employee-bio-photo-col {
        flex: none;
        width: 100%;
        max-width: 220px;
    }

    .employee-bio-content-col {
        text-align: center;
    }

    .employee-bio-links-list {
        align-items: center;
    }

    .employee-bio-name {
        font-size: 1.6rem;
    }
}
