/* Section wrapper */
.committee-section {
    width: min(1200px, 92vw);
    margin: 32px auto;
    text-align: center;
}

.committee-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    margin: 0 0 16px 0;
    color: var(--paper);
}

/* Grid layout */
.committee-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: start;
}

/* Tile (base) */
.committee-tile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 16px;
    background: var(--accent-1);

    /* Size standardization */
    height: 350px;
    min-height: 350px;
    max-height: 350px;
    box-sizing: border-box;
}

/* Left side (image + name/role) */
.committee-left {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tile media / image */
.committee-tile-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid var(--brand-2);
    border-radius: 8px;
    margin-bottom: 8px;
}

/* Name + role below image */
.committee-left h3 {
    margin: 6px 0 2px 0;
    font-size: 1.25rem;
    color: var(--paper);
    text-align: center;
    line-height: 1.2;
}

.committee-left p {
    font-size: 0.95rem;
    color: var(--paper);
    opacity: 0.9;
    text-align: center;
    line-height: 1.2;
}

/* Right side (description text) */
.committee-right {
    flex: 1;
    text-align: left;
}

.committee-right p {
    margin: 4px 0;
    font-size: 1rem;
    color: var(--paper);
    opacity: 0.85;
    line-height: 1.5;
}

/* Mobile layout */
@media (max-width: 640px) {
    .committee-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}