.about-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.about-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.about-photo {
    max-width: 56rem;
    margin: 0 auto 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(30,41,59,0.1);
}

.about-photo img {
    width: 100%;
    display: block;
}

.about-body {
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.about-body p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0 0 1.5rem;
}

.about-body strong {
    color: var(--foreground);
}

.about-highlight {
    background: var(--secondary);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

.about-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--foreground);
}

.team-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

.team-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.team-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.team-card {
    border-radius: 1rem;
    border: 1px solid rgba(226,232,240,0.6);
    background: var(--card);
    padding: 1.5rem;
    text-align: center;
}

.team-card__avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 1.125rem;
    font-weight: 700;
}

.team-card__name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .about-header h1 {
        font-size: 3rem;
    }

    .team-header h2 {
        font-size: 2.25rem;
    }
}
