/* Committee Pages Styles */
.committee-page {
    min-height: 100vh;
    background-color: #fffefc;
}

.committee-page .page-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: #337ab7;
}

@media (min-width: 768px) {
    .committee-page .page-title {
        font-size: 2.25rem;
    }
}

.committee-page .committee-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0 1rem 1.5rem;
}

.committee-page .committee-section {
    margin-bottom: 2rem;
}

.committee-page .committee-section h2 {
    font-size: 1.9rem;
    font-weight: bold;
    color: #337ab7;
    margin-bottom: 0.9rem;
}

.committee-page .committee-section p {
    color: #18181b;
    margin-bottom: 0.5rem;
    line-height: 1.55;
    font-size: 1.35rem;
}

.committee-page .honorary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    align-items: stretch;
}

.committee-page .honorary-card {
    margin-bottom: 0;
    padding: 2rem 1.5rem 1.75rem;
    border: 1px solid #e9d5ff;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #fdf9ff 100%);
    box-shadow: 0 12px 30px rgba(107, 33, 168, 0.08);
    text-align: center;
}

.committee-page .honorary-card img {
    width: 100%;
    max-width: 185px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 1rem;
    padding: 0.35rem;
    background: #ffffff;
    border: 1px solid rgba(107, 33, 168, 0.18);
    border-radius: 0.9rem;
    box-shadow: 0 8px 24px rgba(24, 24, 27, 0.10);
}

.committee-page .honorary-card-body h2 {
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: #5b21b6;
}

.committee-page .honorary-card-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    color: #3f3f46;
}

@media (max-width: 640px) {
    .committee-page .honorary-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .committee-page .honorary-card {
        padding: 1.25rem 1rem 1.1rem;
    }

    .committee-page .honorary-card img {
        max-width: 160px;
    }

    .committee-page .honorary-card-body h2 {
        font-size: 1.35rem;
    }

    .committee-page .honorary-card-body p {
        font-size: 1rem;
    }
}
