/* ─────────────────────────────────────────────
   MEET THE BOARD SECTION
───────────────────────────────────────────── */
.ab-meet-board {
    position: relative;
    min-height: 420px;
    background-color: #ffffff;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
	margin-top: -100px;
}

/* Dark scrim so text is always readable over any photo */
.ab-meet-board-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: none;
    z-index: 1;
}

/* Force the container to fill and center properly */
.ab-meet-board .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ab-meet-board-inner {
    position: relative;
    z-index: 2;
    color: #1a3a6b;
    max-width: 1600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ab-meet-board-inner h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #1a3a6b;
    margin: 0 0 18px 0;
    line-height: 1.2;
}

.ab-meet-board-inner p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: #1a3a6b;
    margin: 0;
}

/* iOS doesn't support background-attachment: fixed — fall back gracefully */
@media (max-width: 768px) {
    .ab-meet-board {
        background-attachment: scroll;
        min-height: 320px;
        padding: 80px 20px;
    }
}

/* ─────────────────────────────────────────────
   BOARD MEMBERS SECTION WRAPPER
───────────────────────────────────────────── */
.ab-members-section {
    padding: 80px 0 100px;
    background-color: #f5f5f7;
}

/* Wide enough container that 85% card width reads as staggered */
.ab-members-section .container {
    max-width: 2200px;
}

/* ─────────────────────────────────────────────
   STAGGER LAYOUT
───────────────────────────────────────────── */
.ab-member-card-wrap {
    width: 85%;
    margin-bottom: 48px;
}

.ab-card--left {
    margin-left: 0;
    margin-right: auto;
}

.ab-card--right {
    margin-left: auto;
    margin-right: 0;
}

/* ─────────────────────────────────────────────
   CARD — GRADIENT BORDER
   US flag palette: red #B22234 · white #FFFFFF · blue #3C3B6E
───────────────────────────────────────────── */
.ab-member-card {
    background: linear-gradient(
        135deg,
        #B22234 0%,
        #ffffff 35%,
        #3C3B6E 70%,
        #B22234 100%
    );
    border-radius: 22px;
    padding: 4px; /* this 4px IS the visible gradient border */
    overflow: hidden;
}

/* White inner surface that sits inside the gradient ring */
.ab-member-card-inner {
    background: #ffffff;
    border-radius: 19px;
    padding: 30px 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ─────────────────────────────────────────────
   PROFILE PHOTO
───────────────────────────────────────────── */
.ab-photo-ring {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 4px; /* this 4px IS the visible gradient ring */
    background: linear-gradient(
        135deg,
        #B22234 0%,
        #ffffff 40%,
        #3C3B6E 100%
    );
}

.ab-member-photo,
.ab-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    background-color: #d8d8d8;
}

/* ─────────────────────────────────────────────
   MEMBER INFO TEXT
───────────────────────────────────────────── */
.ab-member-info {
    flex: 1;
    margin-left: 32px;
}

.ab-member-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3a6b;
    margin: 0 0 6px 0;
    line-height: 1.25;
}

.ab-member-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #B22234;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0 0 14px 0;
}

.ab-member-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444444;
    margin: 0;
}

/* Empty state */
.ab-empty-notice {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .ab-member-card-wrap {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 620px) {
    .ab-member-card-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .ab-member-card-inner .ab-photo-ring {
        margin-bottom: 20px;
    }

    .ab-member-info {
        margin-left: 0;
    }

    .ab-photo-ring {
        width: 120px;
        height: 120px;
    }

    .ab-card--left,
    .ab-card--right {
        margin-left: auto;
        margin-right: auto;
    }
}