.tsg-bio-page {
    width: 100%;
}

.tsg-bio-header {
    padding: 0;
    margin: 0;
}

.tsg-bio-header-inner {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.tsg-bio-photo-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding-right: 30px;
}

.tsg-bio-photo {
    width: 100%;
    height: auto;
    display: block;
}

.tsg-bio-info-col {
    flex: 1;
    padding-top: 0;
    padding-left: 0;
}

.tsg-bio-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.tsg-bio-contact-row {
    display: flex;
    align-items: center;
}

.tsg-bio-phone {
    font-size: 1.1em;
    color: #17367b;
    text-decoration: none;
    font-weight: 600;
}

.tsg-bio-phone:hover {
    color: #008ecc;
}

.tsg-bio-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.tsg-bio-icon-link {
    color: #008ecc;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1;
}

.tsg-bio-icon-link:hover {
    color: #1e73be;
}

.tsg-bio-icon-link .fa {
    font-size: 1.8em;
}

.tsg-bio-body {
    font-size: 10pt;
    line-height: 1.7;
    color: #333;
    margin-top: 20px;
}

.tsg-bio-body p {
    margin-bottom: 1em;
}

.tsg-bio-content {
    width: 100%;
}

@media ( max-width: 768px ) {
    .tsg-bio-header-inner {
        flex-direction: column;
    }

    .tsg-bio-photo-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .tsg-bio-info-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}