.about-intro p {
    max-width: 760px;
    margin-bottom: 14px;
    line-height: 1.7;
    color: var(--color-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 18px;
}

.team-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
    background: rgba(255, 255, 255, 0.55);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.team-photo.placeholder {
    background: #d9d9d9;
}

.team-name {
    margin: 0 0 4px;
}

.team-role {
    margin: 0 0 10px;
    font-weight: 700;
    opacity: 0.7;
}

.team-text {
    margin: 0;
    line-height: 1.6;
    color: var(--color-muted);
}

.about-closure {
    text-align: center;
    font-weight: 800;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
