/* ── Executive Committee Page ────────────────────────────── */
/* Banner + avatar base styles → people-shared.css           */

.exec-section {
    padding: 60px 0 80px;
    background: #fff;
}

/* ── Tier layout ─────────────────────────────────────────── */
.exec-tier {
    display: flex;
    justify-content: center;
}

.exec-tier--row {
    flex-wrap: wrap;
    gap: 28px 20px;
    justify-content: center;
    align-items: flex-start;
}

/* ── Vertical connector ──────────────────────────────────── */
.exec-connector {
    width: 2px;
    height: 48px;
    background: #b0c8e0;
    margin: 0 auto;
}

/* ── Section sub-label ───────────────────────────────────── */
.exec-section-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a72b8;
    margin: 32px 0 20px;
    position: relative;
}

.exec-section-label::before,
.exec-section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #d0e4f0;
    transform: translateY(-50%);
}

.exec-section-label::before { right: calc(50% + 8px + 50%/2); }
.exec-section-label::after  { left:  calc(50% + 8px + 50%/2); }

/* ── Row divider between tiers ───────────────────────────── */
.exec-row-divider {
    height: 1px;
    background: #e8f1f8;
    margin: 40px auto;
    max-width: 700px;
}

/* ── Individual card ─────────────────────────────────────── */
.exec-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}

.exec-card--top {
    padding: 0;
}

/* ── Avatar wrappers ─────────────────────────────────────── */
.exec-avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #b0c8e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    margin-bottom: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exec-avatar-wrapper--lg {
    width: 130px;
    height: 130px;
    border-width: 4px;
    margin-bottom: 14px;
}

.exec-avatar-wrapper:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 26px rgba(26, 114, 184, 0.25);
}

.exec-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ── Name ────────────────────────────────────────────────── */
.exec-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f2027;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.exec-name--sm {
    font-size: 0.78rem;
}

/* ── Role ────────────────────────────────────────────────── */
.exec-role {
    font-size: 0.82rem;
    color: #666;
    margin: 0;
    line-height: 1.45;
}

.exec-role--sm {
    font-size: 0.72rem;
    max-width: 140px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .exec-tier--row     { gap: 20px 12px; }

    .exec-section-label::before,
    .exec-section-label::after { width: 15%; }
}

@media (max-width: 480px) {
    .exec-name--sm  { font-size: 0.7rem; }
    .exec-role--sm  { font-size: 0.65rem; max-width: 110px; }

    .exec-section-label::before,
    .exec-section-label::after { display: none; }
}
