/* Team member detail pages — layout aligned with site palette (scheme-01) */
.team-detail-photo{
    aspect-ratio: 1 / 1;
    background: rgba(126, 143, 135, 0.12);
}
.team-detail-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-detail-heading{
    position: relative;
    padding-left: 14px;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--heading-font-color);
}
.team-detail-heading::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 3px;
    border-radius: 2px;
    background: var(--primary-color);
}

.team-detail-block{
    margin-bottom: 1.75rem;
}
.team-detail-block:last-child{
    margin-bottom: 0;
}

.team-detail-list{
    margin: 0;
    padding-left: 1.15rem;
    color: var(--body-font-color);
    font-size: 1.05rem;
    line-height: 1.75;
}
.team-detail-list li{
    margin-bottom: 0.35rem;
}

/* Text size for the main content (incl. <pre> used for full copy) */
.team-detail-block p,
.team-detail-block pre{
    font-size: 1.05rem;
    line-height: 1.75;
}
