.about-page {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 3.5rem 2rem 5rem;
}

.about-header {
    margin-bottom: 1rem;
    border-bottom: 0.5px solid var(--line);
}

.about-header h1 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 10px;
}

.about-header .underline {
    width: 32px;
    height: 2px;
    background: var(--red);
    margin-bottom: 1.5rem;
}

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

.section-select {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    border: 0.5px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.section-btn {
    padding: 0.5rem 1.5rem;
    font-size: 14px;
    font-family: var(--font-sans, inherit);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    transition: background 0.15s, color 0.15s;
}

.section-btn.active {
    background: var(--red);
    color: #fff;
}

.section-btn:not(.active):hover {
    background: var(--line);
}

.committee-section {
    margin-bottom: 3.5rem;
    text-align: center;
}

.committee-heading {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--teal);
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.5px solid var(--line);
    text-align: center;
}

.members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 160px;
}

.member-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8e4df;
    border: 0.5px solid var(--line);
    object-fit: cover;
}

.member-name {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
}

.member-role {
    font-size: 12.5px;
    color: #999;
    margin: 2px 0 0;
}
