/* ═══════════════════════════════════════════════════════════
   people-shared.css
   Shared styles used across all People sub-pages:
   OSA · Founders · Executive Committee · Former Committees
   ═══════════════════════════════════════════════════════════ */

/* ── Page banner ─────────────────────────────────────────── */
.page-banner {
    position: relative;
    width: 100%;
    height: 200px;
    background: url('../Photos/Cover.gif') center center / cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative blobs */
.page-banner::before,
.page-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.page-banner::before {
    width: 320px;
    height: 320px;
    top: -130px;
    left: -70px;
}

.page-banner::after {
    width: 240px;
    height: 240px;
    bottom: -110px;
    right: 80px;
}

/* Outline ring on the right */
.page-banner-overlay::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 20px solid rgba(255, 255, 255, 0.09);
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    pointer-events: none;
}

.page-banner-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.page-banner-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 0;
    line-height: 1.1;
}

.page-banner-sub {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 2px;
    margin: 6px 0 0;
}

/* ── Responsive banner ───────────────────────────────────── */
@media (max-width: 768px) {
    .page-banner          { height: 150px; }
    .page-banner-title    { font-size: 1.9rem; letter-spacing: 2px; }
    .page-banner-sub      { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .page-banner-title    { font-size: 1.4rem; letter-spacing: 1.5px; }
}
