/* ── Grid ── */
.tt-committee-grid {
    display: grid;
    gap: 24px;
}
.tt-committee-cols-1 { grid-template-columns: 1fr; }
.tt-committee-cols-2 { grid-template-columns: repeat(2, 1fr); }
.tt-committee-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tt-committee-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
    .tt-committee-cols-3,
    .tt-committee-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .tt-committee-grid { grid-template-columns: 1fr !important; }
}

/* ── Card ── */
.tt-member-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* ── Header ── */
.tt-member-card__header {
    display: flex;
    gap: 0;
    background: #a0a0a0;
    min-height: 130px;
}

.tt-member-card__photo {
    flex: 0 0 110px;
    width: 110px;
    align-self: stretch;
    overflow: hidden;
}

.tt-member-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.tt-member-card__photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 130px;
    background: #888;
}

.tt-member-card__info {
    flex: 1;
    padding: 16px 14px;
    color: #fff;
}

.tt-member-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.25;
    color: #fff;
    border: none;
    padding: 0;
}

.tt-member-card__role {
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
    color: #fff;
}

/* ── Section bar ── */
.tt-member-card__bar {
    padding: 8px 14px;
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .01em;
}

/* ── Body ── */
.tt-member-card__body {
    flex: 1;
    padding: 16px 14px;
}

.tt-member-card__body p {
    font-size: .875rem;
    line-height: 1.55;
    margin: 0 0 12px;
    color: #333;
}

.tt-member-card__body p:last-child { margin-bottom: 0; }

/* ── Footer ── */
.tt-member-card__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
    border-top: 1px solid #ececec;
}

/* ── Social circles ── */
.tt-member-social,
.tt-member-bio-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #9e9e9e;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .18s ease;
    padding: 0;
    flex-shrink: 0;
}

.tt-member-social svg,
.tt-member-bio-btn svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: #fff;
}

.tt-member-social:hover,
.tt-member-bio-btn:hover {
    background: #555;
    color: #fff;
    text-decoration: none;
}

/* ── Bio Modal ── */
.tt-bio-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.tt-bio-modal.is-open {
    display: flex;
}

.tt-bio-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.tt-bio-modal__box {
    position: relative;
    background: #fff;
    border-radius: 6px;
    padding: 36px 32px 32px;
    max-width: 620px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,.2);
}

.tt-bio-modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #aaa;
    padding: 0;
}

.tt-bio-modal__close:hover { color: #333; }

.tt-bio-modal__name {
    margin: 0 0 16px;
    font-size: 1.3rem;
    padding-right: 24px;
    color: #111;
}

.tt-bio-modal__content {
    font-size: .95rem;
    line-height: 1.75;
    color: #444;
    white-space: pre-line;
}
