/* about.css — styles for the /about page */

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: hidden;
}

main {
    max-width: 900px;
    width: 100%;
}

h1 {
    font-size: clamp(48px, 10vw, 96px);
    line-height: 0.95;
    margin-bottom: 40px;
    font-weight: normal;
    letter-spacing: -0.02em;
}

.intro {
    max-width: 720px;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 48px;
}

.team-member img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.team-member h2 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member p {
    font-size: var(--text-xs);
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.linkedin-icon {
    vertical-align: middle;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.linkedin-icon:hover {
    opacity: 1;
}

.follow-us {
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
    margin-top: 16px;
}

.follow-us h2 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 12px;
}

.follow-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.follow-links a {
    font-size: var(--text-sm);
    color: var(--color-link);
    text-decoration: none;
}

.follow-links a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .team-member {
        text-align: center;
    }

    .team-member p {
        text-align: left;
    }
}
