.about-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Intro / company description */
.about-intro {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--color-border);
}

.about-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-dark);
    white-space: pre-wrap;
    margin: 0;
}

/* Team section */
.about-team-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Staff card */
.about-card {
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about-card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-background);
}

.about-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-card-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary);
}

.about-card-body {
    padding: 20px;
}

.about-card-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.about-card-role {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    background: color-mix(in srgb, var(--color-primary) 10%, transparent);
    border-radius: var(--radius-full);
    padding: 2px 10px;
    margin-bottom: 12px;
}

.about-card-bio {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
    white-space: pre-wrap;
}

@media (max-width: 600px) {
    .about-intro { padding: 20px; }
    .about-team-grid { grid-template-columns: 1fr; }
}
