/* ================= Committee Page ================= */

.committee-wrapper {
    padding: 60px 0;
}

/* Top cards row spacing */
.committee-row {
    padding: 40px 0 70px;
}

/* Square cards */
.committee-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;

    margin: 0 auto;
    padding: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #6f4bd8;
    border-radius: 24px;

    text-align: center;
}

/* Remove all hover effects */
.committee-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Card text */
.committee-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ffffff;
}

.committee-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}

/* Committee sections */
.committee-section {
    padding: 40px 0;
}

.committee-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 24px;
    font-weight: 600;
}

.committee-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.committee-list li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #eaeaea;
}

/* Responsive */
@media (max-width: 768px) {
    .committee-card {
        max-width: 280px;
    }
}