/* =========================================================
   About Us
   ========================================================= */

.about-page {
    background: #f5f7f8;
    flex: 1;
}


/* =========================================================
   Container
   ========================================================= */

.about-container {
    width: min(900px, 92%);
    margin: 40px auto 60px;
}


/* =========================================================
   Page Header
   ========================================================= */

.about-header {

    border-radius: 14px;
    padding: 32px;
    margin-bottom: 24px;

    text-align: center;
}

.about-header h1 {
    margin: 0 0 8px;
    color: #0b3d2e;
    font-size: 2rem;
}

.about-header p {
    margin: 4px 0 0;
    color: #666666;
    font-size: 1rem;
}


/* =========================================================
   Sections
   ========================================================= */

.about-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eeeeee;
    color: #0b3d2e;
    font-size: 1.35rem;
}

.about-section p {
    margin: 0 0 16px;
    color: #444444;
    font-size: 1rem;
    line-height: 1.7;
}

.about-section p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   Committee Grid
   ========================================================= */

.committee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================================================
   Committee Member
   ========================================================= */

.committee-member {
    background: #f7f9fa;
    border: 1px solid #e6e9eb;
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
}


.committee-member-photo-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 16px;
}


.committee-member-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}


.committee-member-details h3 {
    margin: 0 0 6px;
    color: #111111;
    font-size: 1rem;
    font-weight: 600;
}


.committee-member-details p {
    margin: 0;
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.4;
}


/* =========================================================
   Empty State
   ========================================================= */

.about-empty {
    background: #f7f9fa;
    border: 1px solid #e6e9eb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.about-empty p {
    margin: 0;
    color: #666666;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 900px) {

    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .about-container {
        width: 94%;
        margin-top: 25px;
        margin-bottom: 40px;
    }


    .about-header {
        padding: 24px;
    }


    .about-header h1 {
        font-size: 1.6rem;
    }


    .about-section {
        padding: 20px;
    }


    .committee-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .committee-member {
        padding: 18px 14px;
    }

}