/* === ABOUT PAGE === */

.tl-about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px clamp(20px, 4vw, 60px);
}

.tl-about-hero {
    display: flex;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 60px;
}

.tl-about-hero img {
    width: 280px;
    height: 360px;
    object-fit: cover;
    filter: grayscale(0.8);
    transition: filter 0.6s ease;
}

.tl-about-hero:hover img {
    filter: grayscale(0.3);
}

.tl-about-hero-text h1 {
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 8px;
}

.tl-about-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dim);
}

.tl-about-bio {
    font-size: 16px;
    line-height: 1.8;
    max-width: 640px;
    color: var(--text);
}

.tl-about-bio p {
    margin-bottom: 1.5em;
}

.tl-about-bio strong {
    color: var(--fluo);
    font-weight: 500;
}

@media (max-width: 700px) {
    .tl-about-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .tl-about-hero img {
        width: 100%;
        height: auto;
        max-height: 400px;
    }
}
