/* BOARD PAGE - reference UI styles.
   Donation styles are supplied exclusively by person.css.
   Load person.css first, then board.css. */

:root {
    --board-navy: #001b3a;
    --board-navy-2: #00284d;
    --board-blue: #07345c;
    --board-gold: #fbb801;
    --board-gold-2: #ffca28;
    --board-white: #ffffff;
    --board-bg: #f4f8fc;
    --board-border: #dce6ef;
    --board-text: #092746;
    --board-muted: #536b83;
}

.board-page *,
.board-hero * {
    box-sizing: border-box;
}

.board-page img,
.board-hero img {
    max-width: 100%;
}

.board-hero {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
}

.board-hero-bg {
    position: absolute;
    inset: 0;

    background-image: url("../img/person-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    z-index: 0;
}

.board-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 20, 45, 0.72) 0%,
            rgba(0, 20, 45, 0.32) 45%,
            rgba(0, 15, 35, 0.58) 100%);

    z-index: 1;
}

.board-hero-content {
    position: relative;
    z-index: 3;

    width: min(900px, calc(100% - 40px));

    text-align: center;

    margin: 0 auto;

    padding-top: 12px;
}

.board-hero-eyebrow {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 7px;
    color: var(--board-gold);
}

.board-hero-content h1 {
    margin: 0;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.05;

    font-weight: 800;

    color: #fff;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.25);
}

.board-hero-content h1 span {
    display: block;

    margin-top: 4px;

    color: var(--board-gold);
}

.board-hero-line {
    width: 70px;
    height: 4px;

    margin: 22px auto 18px;

    background: var(--board-gold);

    border-radius: 10px;
}

.board-hero-content p {
    margin: 0;

    color: #fff;

    font-size: 24px;
    line-height: 1.7;

    font-weight: 500;
}

.board-hero-side {
    position: absolute;

    left: 32px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 4;

    width: 120px;

    display: flex;
    flex-direction: column;

    font-size: 22px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.95);
}

.board-hero-side span {
    display: block;
}

.board-hero-side strong {
    display: block;

    margin-top: 2px;

    color: var(--board-gold);

    font-weight: 700;
}

.board-hero-side::after {
    content: "";

    width: 42px;
    height: 3px;

    margin-top: 15px;

    background: var(--board-gold);
}

.board-hero-quote {
    position: absolute;

    right: 35px;
    bottom: 55px;

    z-index: 4;

    width: 185px;

    color: #fff;

    font-size: 20px;
    line-height: 1.7;

    font-style: italic;

    text-align: left;
}

.board-hero-quote span {
    color: var(--board-gold);

    font-size: 38px;
    line-height: 0;
}

.board-hero-quote span:last-child {
    float: right;

    margin-top: 8px;
}

.board-container {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;
}

.board-leadership {
    position: relative;

    width: 100%;

    padding: 52px 0 48px;

    background: #fff;
}

.leadership-layout {
    display: grid;

    grid-template-columns: 250px minmax(0, 1fr);

    gap: 55px;

    align-items: center;
}

.leadership-intro {
    padding-left: 2px;
}

.section-eyebrow {
    margin-bottom: 10px;

    color: var(--board-gold);

    font-size: 20px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.leadership-intro h2 {
    margin: 0;

    color: var(--board-text);

    font-size: 35px;
    line-height: 1.2;

    font-weight: 800;
}

.section-line {
    width: 62px;
    height: 4px;

    margin: 18px 0 20px;

    background: var(--board-gold);

    border-radius: 5px;
}

.leadership-intro p {
    margin: 0;

    max-width: 235px;

    color: #38536d;

    font-size: 20px;
    line-height: 1.8;
}

.leader-card {
    position: relative;

    display: grid;

    grid-template-columns: 48% 52%;

    width: 100%;

    min-height: 285px;

    overflow: hidden;

    border: 1px solid #dba900;

    border-radius: 9px;

    background: var(--board-navy);

    box-shadow:
        0 12px 35px rgba(0, 27, 58, 0.14);
}

.leader-image {
    position: relative;

    min-width: 0;
    min-height: 285px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #f7bd27 0%,
            #ffe18b 100%);
}

.leader-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    max-width: 100%;
    max-height: 100%;
    padding: 20px 20px 0px 20px;
}

.leader-info {
    position: relative;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 34px 42px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #00284d 0%,
            #00182f 100%);
}

.leader-info::after {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -65px;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(251, 184, 1, 0.65);

    transform: rotate(45deg);

    pointer-events: none;
}

.leader-role {
    position: relative;
    z-index: 2;

    align-self: flex-start;

    display: inline-flex;

    padding: 7px 15px;

    margin-bottom: 14px;

    border-radius: 5px;

    background: var(--board-gold);

    color: #102b45;

    font-size: 20px;
    line-height: 1;

    font-weight: 800;
}

.leader-info h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 5px;

    color: #fff;

    font-size: 27px;
    line-height: 1.25;

    font-weight: 800;
}

.leader-info p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 20px;
    line-height: 1.6;
}

.leader-line {
    position: relative;
    z-index: 2;

    width: 38px;
    height: 3px;

    margin: 18px 0 14px;

    background: var(--board-gold);
}

.leader-info blockquote {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #fff;

    font-size: 20px;
    line-height: 1.6;

    font-style: italic;
}

.board-position-section {
    position: relative;

    width: 100%;

    padding: 38px 0 42px;
}

.board-group-leadership {
    background: #f3f7fb;
}

.board-group-executive {
    background: #fff;
}

.board-group-other {
    background: #fff;
}

.section-heading {
    display: flex;

    align-items: flex-end;

    width: 100%;

    margin-bottom: 25px;
}

.section-heading>div:first-child {
    flex: 0 0 auto;
}

.section-heading-line {
    flex: 1;

    height: 1px;

    margin-left: 35px;
    margin-bottom: 9px;

    background: #d6e0ea;
}

.section-heading h2 {
    margin: 0;

    color: var(--board-text);

    font-size: 27px;
    line-height: 1.25;

    font-weight: 800;
}

.board-grid-executive {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.board-grid-leadership {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 16px;

    align-items: stretch;
}

.board-grid-other {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 16px;
}

.board-member-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--board-border);

    border-radius: 6px;

    background: #fff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.board-member-card:hover {
    transform: translateY(-3px);

    border-color: #c9d8e6;

    box-shadow:
        0 10px 25px rgba(0, 35, 70, 0.08);
}

.board-grid-executive .board-member-image {
    position: relative;

    width: 100%;

    height: 185px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e9f0f6;
}

.board-grid-executive .board-member-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center bottom;
}

.board-grid-executive .board-member-info {
    position: relative;

    min-height: 115px;

    padding: 12px 16px 16px;

    background: #fff;
}

.board-grid-executive .board-member-position {
    display: inline-flex;

    align-items: center;

    max-width: 100%;

    padding: 6px 10px;

    margin-bottom: 8px;

    border-radius: 5px;

    background: #ffd76a;

    color: #1a2c3f;

   font-size: 20px;
    line-height: 1.2;

    font-weight: 800;
}

.board-grid-executive .board-member-info h3 {
    margin: 0 0 3px;

    color: var(--board-text);

    font-size: 22px;
    line-height: 1.35;

    font-weight: 800;
}

.board-grid-executive .board-member-job {
    margin: 0;

    color: #506a82;

    font-size: 20px;
    line-height: 1.5;
}

.board-grid-executive .board-member-line {
    width: 28px;
    height: 3px;

    margin-top: 11px;

    background: var(--board-gold);

    border-radius: 5px;
}

.board-grid-leadership .board-member-card,
.board-grid-other .board-member-card {
    display: grid;

    grid-template-columns: 72px minmax(0, 1fr);

    min-height: 92px;

    border-radius: 6px;
}

.board-grid-leadership .board-member-image,
.board-grid-other .board-member-image {
    position: relative;

    width: 72px;
    height: 92px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7eef5;
}

.board-grid-leadership .board-member-image img,
.board-grid-other .board-member-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center bottom;
}

.board-grid-leadership .board-member-info,
.board-grid-other .board-member-info {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 10px 10px 9px;
}

.board-grid-leadership .board-member-info h3,
.board-grid-other .board-member-info h3 {
    margin: 0;

    color: var(--board-text);

    font-size: 20px;
    line-height: 1.4;

    font-weight: 800;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.board-grid-leadership .board-member-job,
.board-grid-other .board-member-job {
    margin: 1px 0 0;

    color: #506a82;

   font-size: 20px;
    line-height: 1.35;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.board-grid-leadership .board-member-line,
.board-grid-other .board-member-line {
    width: 20px;
    height: 2px;

    margin-top: 7px;

    background: var(--board-gold);

    border-radius: 5px;
}

.board-view-all {
    display: flex;

    justify-content: center;

    width: 100%;

    margin-top: 25px;
}

.board-view-all-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 145px;

    height: 40px;

    padding: 0 20px;

    border: 1px solid var(--board-gold);

    border-radius: 30px;

    background: #fff;

    color: var(--board-text);

    text-decoration: none;

    font-size: 20px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.board-view-all-btn i {
    color: var(--board-gold);

    font-size: 20px;
}

.board-view-all-btn:hover {
    background: var(--board-gold);

    color: #102b45;

    transform: translateY(-2px);
}

.board-view-all-btn:hover i {
    color: #102b45;
}

.board-empty {
    padding: 100px 20px;

    text-align: center;

    background: #fff;
}

.board-empty-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf3f8;

    color: var(--board-gold);

    font-size: 30px;
}

.board-empty h3 {
    margin: 0 0 8px;

    color: var(--board-text);

    font-size: 22px;
}

.board-empty p {
    margin: 0;

    color: #71869a;

    font-size: 20px;
}

@media (min-width: 1400px) {
    .board-container {
        width: min(1180px, calc(100% - 80px));
    }

    .board-hero {
        height: 440px;
        min-height: 440px;
    }

    .board-grid-executive {
        gap: 20px;
    }

    .board-grid-leadership {
        gap: 18px;
    }
}

@media (max-width: 1100px) {
    .board-hero {
        height: 390px;
        min-height: 390px;
    }

    .board-hero-side {
        left: 20px;
    }

    .board-hero-quote {
        right: 20px;
    }

    .leadership-layout {
        grid-template-columns: 210px minmax(0, 1fr);

        gap: 30px;
    }

    .leader-card {
        min-height: 255px;
    }

    .leader-image {
        min-height: 255px;
    }

    .leader-info {
        padding: 28px;
    }

    .leader-info h3 {
        font-size: 23px;
    }

    .board-grid-executive {
        grid-template-columns: repeat(4, minmax(0, 1fr));

        gap: 12px;
    }

    .board-grid-executive .board-member-image {
        height: 155px;
    }

    .board-grid-leadership {
        grid-template-columns: repeat(5, minmax(0, 1fr));

        gap: 10px;
    }

    .board-grid-leadership .board-member-card {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .board-grid-leadership .board-member-image {
        width: 58px;
        height: 82px;
    }
}

@media (max-width: 767px) {
    .board-container {
        width: min(100% - 30px, 600px);
    }

    .board-hero {
        height: 350px;
        min-height: 350px;
    }

    .board-hero-content {
        width: calc(100% - 40px);

        padding-top: 0;
    }

    .board-hero-eyebrow {

       font-size: 20px;
        letter-spacing: 4px;
    }

    .board-hero-content h1 {
        font-size: 37px;
    }

    .board-hero-line {
        width: 55px;

        margin: 16px auto 13px;
    }

    .board-hero-content p {
        font-size: 20px;
    }

    .board-hero-side {
        display: none;
    }

    .board-hero-quote {
        display: none;
    }

    .board-leadership {
        padding: 35px 0;
    }

    .leadership-layout {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .leadership-intro {
        text-align: center;
    }

    .leadership-intro h2 {
        font-size: 30px;
    }

    .section-line {
        margin-left: auto;
        margin-right: auto;
    }

    .leadership-intro p {
        max-width: 100%;
    }

    .leader-card {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .leader-image {
        height: 270px;
        min-height: 270px;
    }

    .leader-info {
        min-height: 230px;

        padding: 25px;
    }

    .leader-info h3 {
        font-size: 24px;
    }

    .board-position-section {
        padding: 32px 0;
    }

    .section-heading {
        align-items: center;

        margin-bottom: 20px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .section-heading-line {
        margin-left: 18px;
    }

    .board-grid-executive {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .board-grid-executive .board-member-image {
        height: 170px;
    }

    .board-grid-leadership,
    .board-grid-other {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .board-grid-leadership .board-member-card,
    .board-grid-other .board-member-card {
        grid-template-columns: 62px minmax(0, 1fr);

        min-height: 82px;
    }

    .board-grid-leadership .board-member-image,
    .board-grid-other .board-member-image {
        width: 62px;
        height: 82px;
    }
}

@media (max-width: 480px) {
    .board-hero {
        height: 310px;
        min-height: 310px;
    }

    .board-hero-content h1 {
        font-size: 31px;
    }

    .board-hero-content p {
        font-size: 20px;
    }

    .board-grid-executive {
        grid-template-columns: 1fr;
    }

    .board-grid-executive .board-member-image {
        height: 230px;
    }

    .board-grid-leadership,
    .board-grid-other {
        grid-template-columns: 1fr;
    }

    .board-grid-leadership .board-member-card,
    .board-grid-other .board-member-card {
        grid-template-columns: 80px minmax(0, 1fr);

        min-height: 95px;
    }

    .board-grid-leadership .board-member-image,
    .board-grid-other .board-member-image {
        width: 80px;
        height: 95px;
    }
}

.board-hero,
.board-page {
    --board-navy: #001a35;
    --board-text: #071e3a;
    --board-gold: #ffb511;
    --board-border: #dce7f0;
}

.board-page {
    position: relative;
    background: #fff;
    isolation: isolate;
}

.board-page *,
.board-page *::before,
.board-page *::after,
.board-hero,
.board-hero *,
.board-hero *::before,
.board-hero *::after {
    box-sizing: border-box;
}

.board-page .board-container {
    width: min(1180px, 85.4%);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.board-hero {
    height: auto;
    min-height: clamp(306px, 30vw, 500px);
    padding: 48px 0 34px;
    background: #001a35;
}

.board-hero-bg {
    background-position: center;
}

.board-hero-overlay {
    background: linear-gradient(90deg, rgba(0, 20, 42, .22), rgba(0, 20, 42, .42) 48%, rgba(0, 20, 42, .2)),
        linear-gradient(0deg, rgba(0, 18, 38, .48), transparent 55%);
}

.board-hero-content {
    width: min(900px, 72%);
    padding: 0;
}

.board-hero-eyebrow {
    font-size: 20px;
    letter-spacing: 5px;
    line-height: 1.5;
}

.board-hero-content h1 {
    font-size: clamp(38px, 5.3vw, 72px);
    line-height: 1.15;
    font-weight: 800;
}

.board-hero-content h1 span {
    margin-top: 0;
}

.board-hero-line {
    width: 66px;
    height: 4px;
    margin: 18px auto 16px;
}

.board-hero-content p {
    font-size: clamp(15px, 1.75vw, 24px);
    line-height: 1.2;
}

.board-hero-side {
    left: 3%;
    width: 108px;
    top: 55%;
    font-size: 25px;
    line-height: 1.3;
}

.board-hero-side strong {
    color: #fff;
    font-weight: 400;
}

.board-hero-side::after {
    width: 33px;
    margin-top: 16px;
}

.board-hero-quote {
    right: 3.5%;
    bottom: 28px;
    width: 125px;
    font-size: 24px;
    line-height: 1.45;
    transform: rotate(-9deg);
}

.board-hero-quote span {
    color: #fff;
    font-size: 24px;
}

.board-hero-quote::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--board-gold);
    margin: 8px 0 0 auto;
}

.board-page .board-leadership {
    padding: 30px 0 26px;
}

.board-page .leadership-layout {
    grid-template-columns: 27% minmax(0, 1fr);
    gap: 4.2%;
    align-items: start;
}

.board-page .leadership-intro {
    padding: 8px 0 0;
}

.board-page .section-eyebrow {
    font-size: 20px;
    letter-spacing: 1.5px;
    color: #e89b00;
    line-height: 1.5;
    margin-bottom: 10px;
}

.board-page .leadership-intro h2 {
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.35;
}

.board-page .section-line {
    width: 63px;
    margin: 22px 0 20px;
}

.board-page .leadership-intro p {
    max-width: 255px;
    font-size: 20px;
    line-height: 1.65;
    color: #3f5c79;
}

.board-page .leader-card {
    grid-template-columns: 35% minmax(0, 1fr);
    min-height: 200px;
    border-radius: 8px;
    border-color: #edb329;
    box-shadow: 0 6px 20px #001b3a1a;
}

.board-page .leader-image {
    min-height: 200px;
    background: linear-gradient(125deg, transparent 20%, #ffffff38 20%, #ffffff38 39%, transparent 39%),
        linear-gradient(125deg, #d58d12, #ffe6a1 58%, #d8a644);
}

.board-page .leader-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.board-page .leader-info {
    min-width: 0;
    padding: 25px 11.5% 17px;
    background: linear-gradient(135deg, #00223f, #00172f 70%, #193044);
}

.board-page .leader-info::after {
    width: 190px;
    height: 190px;
    right: -143px;
    bottom: 8px;
    border-color: #ce961a;
    box-shadow: 14px 0 0 #d2a4371c;
}

.board-page .leader-role {
    font-size: 20px;
    line-height: 1.3;
    padding: 4px 12px;
    margin-bottom: 10px;
    background: linear-gradient(#ffd25b, #ffb61a);
}

.board-page .leader-info h3 {
    margin: 0 0 2px;
    font-size: clamp(23px, 2.7vw, 34px);
    line-height: 1.4;
    overflow-wrap: anywhere;
    color: #fff;
}

.board-page .leader-info p {
    margin: 0;
    color: #f0f4fa;
    font-size: 22px;
    line-height: 1.5;
}

.board-page .leader-line {
    width: 33px;
    height: 3px;
    background: var(--board-gold);
    margin: 14px 0 12px;
}

.board-page .leader-info blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 21px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
}

.board-page .board-position-section {
    position: relative;
    padding: 17px 0 25px;
}

.board-page .board-group-leadership {
    background: linear-gradient(115deg, #f2f7fb, #f8fafc);
}

.board-page .board-group-executive,
.board-page .board-group-other {
    background: transparent;
}

.board-page .board-group-executive {
    overflow: hidden;
}

.board-page .board-group-executive::before {
    content: "";
    position: absolute;
    pointer-events: none;
    width: 230px;
    height: 230px;
    right: -160px;
    top: -70px;
    border: 24px double #eaf0f5;
    border-radius: 10px;
    transform: rotate(45deg);
    opacity: .7;
}

.board-page .section-heading {
    display: block;
    margin: 0 0 15px;
}

.board-page .section-heading .section-eyebrow {
    display: none;
}

.board-page .section-heading h2 {
    margin: 0;
    color: var(--board-text);
    font-size: 30px;
    line-height: 1.4;
    font-weight: 800;
}

.board-page .section-heading-line {
    display: block;
    width: 49px;
    height: 3px;
    flex: none;
    margin: 5px 0 0;
    background: var(--board-gold);
}

.board-page .board-members-grid {
    display: grid;
    align-items: stretch;
}

.board-page .board-grid-executive {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.board-page .board-grid-leadership,
.board-page .board-grid-other {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px 10px;
}

.board-page .board-member-card {
    min-width: 0;
    border: 1px solid var(--board-border);
    border-radius: 6px;
    background: #ffffffdf;
}

.board-page .board-member-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.board-page .board-grid-executive .board-member-card {
    padding: 11px 11px 14px;
}

.board-page .board-grid-executive .board-member-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.14;
    margin: 0 auto;
    border-radius: 6px;
    background: linear-gradient(135deg, #e2ebf2, #f0f4f8);
}

.board-page .board-grid-executive .board-member-info {
    min-height: 0;
    padding: 11px 12px 0;
    background: transparent;
}

.board-page .board-grid-executive .board-member-position {
    margin: 0 0 6px;
    padding: 3px 11px;
    border-radius: 5px;
    color: #10233b;
    background: linear-gradient(#ffdc83, #ffcb60);
    font-size: 20px;
    line-height: 1.4;
}

.board-page .board-grid-executive .board-member-info h3 {
    font-size: 27px;
    line-height: 1.4;
    margin: 0 0 2px;
    overflow-wrap: anywhere;
}

.board-page .board-grid-executive .board-member-job {
    font-size: 20px;
    line-height: 1.5;
    color: #45617d;
}

.board-page .board-grid-executive .board-member-line {
    width: 30px;
    height: 3px;
    margin-top: 10px;
}

.board-page .board-grid-leadership .board-member-card,
.board-page .board-grid-other .board-member-card {
    grid-template-columns: 41% minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 11px;
    min-height: 86px;
    background: #f9fbfdcc;
}

.board-page .board-grid-leadership .board-member-image,
.board-page .board-grid-other .board-member-image {
    width: 100%;
    height: auto;
    aspect-ratio: .93;
    border-radius: 5px;
    background: linear-gradient(135deg, #d8e3ed, #edf3f8);
}

.board-page .board-grid-leadership .board-member-info,
.board-page .board-grid-other .board-member-info {
    padding: 0;
}

.board-page .board-grid-leadership .board-member-info h3,
.board-page .board-grid-other .board-member-info h3 {
    font-size: 20px;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
}

.board-page .board-grid-leadership .board-member-job,
.board-page .board-grid-other .board-member-job {
   font-size: 20px;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
}

.board-page .board-member-line {
    background: var(--board-gold);
}

.board-page .board-position-section:not(:last-of-type) .board-view-all {
    display: none;
}

.board-page .board-view-all {
    margin-top: 14px;
}

.board-page .board-view-all-btn {
    min-width: 195px;
    height: auto;
    min-height: 38px;
    padding: 8px 24px;
    font-size: 20px;
    line-height: 1.5;
}

.board-page .board-view-all-btn:focus-visible {
    outline: 3px solid #e9a100;
    outline-offset: 4px;
}

@media (min-width: 1400px) {

    .board-page .leader-card,
    .board-page .leader-image {
        min-height: 220px;
    }

    .board-page .board-grid-leadership .board-member-info h3,
    .board-page .board-grid-other .board-member-info h3 {
        font-size: 24px;
    }

    .board-page .board-grid-leadership .board-member-job,
    .board-page .board-grid-other .board-member-job {
        font-size: 20px;
    }
}

@media (max-width: 1000px) {

    .board-hero-side,
    .board-hero-quote {
        display: none;
    }

    .board-hero-content {
        width: 92%;
    }

    .board-page .board-container {
        width: calc(100% - 40px);
    }

    .board-page .leadership-layout {
        grid-template-columns: 24% minmax(0, 1fr);
        gap: 24px;
    }

    .board-page .leader-info {
        padding: 22px;
    }

    .board-page .board-grid-leadership,
    .board-page .board-grid-other {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .board-page .board-grid-executive .board-member-info {
        padding-inline: 2px;
    }
}

@media (max-width: 767px) {
    .board-hero {
        height: auto;
        min-height: 300px;
        padding: 40px 0;
    }

    .board-hero-content h1 {
        font-size: clamp(29px, 6.5vw, 46px);
        line-height: 1.25;
    }

    .board-hero-eyebrow {
       font-size: 20px;
        letter-spacing: 3px;
    }

    .board-hero-content p {
        font-size: 20px;
    }

    .board-page .board-container {
        width: calc(100% - 32px);
    }

    .board-page .board-leadership {
        padding: 26px 0;
    }

    .board-page .leadership-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .board-page .leadership-intro {
        text-align: left;
    }

    .board-page .leadership-intro h2 {
        font-size: 30px;
    }

    .board-page .section-line {
        margin: 12px 0;
        width: 48px;
    }

    .board-page .leadership-intro p {
        max-width: 100%;
        font-size: 20px;
    }

    .board-page .leader-card {
        grid-template-columns: 43% minmax(0, 1fr);
    }

    .board-page .leader-image {
        height: auto;
        min-height: 200px;
    }

    .board-page .leader-info {
        padding: 20px 16px;
        min-height: 0;
    }

    .board-page .leader-info h3 {
        font-size: 23px;
    }

    .board-page .leader-info p {
        font-size: 20px;
    }

    .board-page .leader-info blockquote {
        font-size: 22px;
    }

    .board-page .board-position-section {
        padding: 22px 0;
    }

    .board-page .section-heading h2 {
        font-size: 22px;
    }

    .board-page .board-grid-executive,
    .board-page .board-grid-leadership,
    .board-page .board-grid-other {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .board-page .board-grid-executive .board-member-image {
        width: 82%;
        height: auto;
    }

    .board-page .board-grid-executive .board-member-info h3 {
        font-size: 22px;
    }

    .board-page .board-grid-executive .board-member-job {
        font-size: 20px;
    }

    .board-page .board-grid-leadership .board-member-card,
    .board-page .board-grid-other .board-member-card {
        grid-template-columns: 36% minmax(0, 1fr);
        padding: 9px;
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .board-page .leader-card {
        grid-template-columns: 1fr;
    }

    .board-page .leader-image {
        height: 260px;
    }

    .board-page .leader-info {
        padding: 24px;
    }

    .board-page .board-grid-leadership,
    .board-page .board-grid-other {
        grid-template-columns: 1fr;
    }

    .board-page .board-grid-leadership .board-member-card,
    .board-page .board-grid-other .board-member-card {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .board-page .board-grid-executive .board-member-info h3 {
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .board-page .board-member-card,
    .board-page .board-view-all-btn {
        transition: none;
        transform: none;
    }
}



/* Deputies and spokesperson: compact portrait-left cards.
   Executive committee: large portrait-top cards.
   The current PHP emits the role badge only for the leadership group;
   hide it in the compact layout to match the former executive cards. */
.board-page .board-grid-leadership .board-member-position {
    display: none;
}