/* ============================================================
   YOUTH TENNIS FOUNDATION OF FLORIDA
   SHARED WEBSITE STYLES
   ============================================================ */


/* ============================================================
   COLOR VARIABLES
   ============================================================ */

:root {
    --navy: #123b5d;
    --blue: #1687b9;
    --ink: #193445;
    --muted: #657783;
    --bg: #f7f9fa;
    --line: #dfe7eb;
}


/* ============================================================
   GLOBAL STYLES
   ============================================================ */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    line-height: 1.55;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
}

h2 {
    font-size: 30px;
    color: var(--navy);
}

h3 {
    font-size: 18px;
    color: var(--navy);
}


/* ============================================================
   SIDEBAR NAVIGATION
   ============================================================ */

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 270px;
    background: #ffffff;
    border-right: 1px solid var(--line);
    padding: 24px 20px 30px;
    display: flex;
    flex-direction: column;
    z-index: 50;
}

.side-brand {
    display: block;
    padding: 0 10px 28px;
    border-bottom: 1px solid var(--line);
}

.side-brand img {
    width: 275px;
    max-height: 140px;
    object-fit: contain;
    object-position: left center;
}

.side-nav {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    gap: 2px;
}

.side-nav a {
    padding: 6px 8px;
    border-radius: 5px;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.side-nav a:hover {
    background: #f0f6f8;
    color: var(--blue);
}

.side-nav .donate {
    margin-top: 14px;
    background-color: var(--navy) !important;
    color: #ffffff !important;
    text-align: center;
}

.side-nav .donate:hover {
    background-color: var(--blue) !important;
    color: #ffffff !important;
}

.side-bottom {
    margin-top: auto;
    padding: 8px 10px 0;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted);
}


/* ============================================================
   MAIN CONTENT
   ============================================================ */

.main {
    margin-left: 270px;
    min-height: 100vh;
}


/* ============================================================
   GENERAL CONTENT WRAPPER
   ============================================================ */

.wrap {
    max-width: 1120px;
    margin: auto;
    padding: 0 38px;
}


/* ============================================================
   MISSION HERO
   ============================================================ */

.mission-hero {
    background: var(--bg);
    padding: 8px 0 12px;
}

.mission-wrap {
    max-width: 1120px;
}

.mission-wrap > .eyebrow {
    text-align: center;
}

.mission-copy h3 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--navy);
    margin: 0 0 18px;
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.mission-copy {
    font-size: 16px;
    line-height: 1.7;
    color: #435966;
}

.mission-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center top;
    border-radius: 6px;
}


/* ============================================================
   EYEBROW / LEAD TEXT
   ============================================================ */

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 14px;
}

.lead {
    font-size: 16px;
    color: #506572;
}


/* ============================================================
   GENERAL SECTIONS
   ============================================================ */

.section {
    padding: 20px 0;
}

.light {
    background: var(--bg);
}


/* ============================================================
   SHARED CARD GRID
   ============================================================ */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}


/* ============================================================
   SHARED CARD
   ============================================================ */

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(18, 59, 93, 0.08);
    color: var(--ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(18, 59, 93, 0.13);
}


/* ============================================================
   CARD IMAGES
   ============================================================ */

.card > img,
.card .program-image {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}


/* ============================================================
   CARD BODY
   ============================================================ */

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.card-body h3 {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 12px;
}

.card-body p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}


/* ============================================================
   HOMEPAGE CARDS
   ============================================================ */

.home-cards .card-body h3 {
    min-height: 49px;
}

.home-cards .card-body span {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}


/* ============================================================
   COMMUNITY PROGRAM CARDS
   ============================================================ */

.program-cards .card-body h3 {
    min-height: 98px;
}


/* ============================================================
   GRANTS / SCHOLARSHIPS
   ============================================================ */

.grants-section {
    padding: 18px 0;
    background: #ffffff;
}

.grants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grant-card {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 25px;
    background: #ffffff;
}

.grant-card p {
    color: var(--muted);
    font-size: 15px;
}

.grant-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 800;
    color: var(--blue);
}

.grant-link:hover {
    text-decoration: underline;
}


/* ============================================================
   HERO SECTIONS
   ============================================================ */

.hero {
    padding: 70px 0;
    background: var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 55px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    color: var(--navy);
}

.hero-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 6px;
}


/* ============================================================
   SPLIT CONTENT SECTIONS
   ============================================================ */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.split img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
}


/* ============================================================
   LATEST NEWS
   ============================================================ */

.news-list {
    display: grid;
    gap: 18px;
}

.news-item {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
}

.date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    color: var(--blue);
}


/* ============================================================
   APPLICATION PAGES
   ============================================================ */

.application {
    padding: 20px 0;
}

.application .content {
    max-width: 850px;
}

.application .note {
    background: var(--bg);
    border-left: 5px solid var(--blue);
    border-radius: 6px;
    padding: 24px 28px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(18, 59, 93, 0.08);
}

.application .note strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 8px;
}

.application .note p {
    margin: 0;
    color: var(--ink);
}

.application .contact a {
    color: var(--blue);
    text-decoration: underline;
    font-weight: 600;
}

.application .contact a:hover {
    color: var(--navy);
    text-decoration: none;
}

.application-image-top {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center top;
    border-radius: 6px;
}

.application-image-center {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center center;
    border-radius: 6px;
}


/* ============================================================
   CONTACT US PAGE
   ============================================================ */

.contact-hero {
    max-width: 760px;
    height: 260px;
    margin: 40px auto 0;
    padding: 0 25px;
    overflow: hidden;
}

.contact-hero img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 6px;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 35px 65px;
}

.contact-heading {
    text-align: center;
    padding: 45px 20px 30px;
}

.contact-heading h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
    color: var(--navy);
}

.contact-form-section {
    max-width: 820px;
    margin: 55px auto;
    padding: 0 25px;
}

.contact-intro {
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: center;
    color: #506572;
    line-height: 1.7;
    font-size: 16px;
}

.contact-form-section form {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 38px 45px 40px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.contact-row {
    display: flex;
    gap: 24px;
}

.contact-field {
    flex: 1;
    margin-bottom: 20px;
}

.contact-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}

.contact-field label span {
    color: #b00000;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #ccd6db;
    border-radius: 4px;
    background: #ffffff;
    color: var(--ink);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-field input {
    height: 44px;
}

.contact-field textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(22, 135, 185, 0.12);
}

.contact-location {
    gap: 18px;
}

.state-field {
    flex: 0 0 110px;
}

.zip-field {
    flex: 0 0 125px;
}

.contact-submit {
    display: block;
    margin: 8px auto 0;
    padding: 12px 38px;
    border: none;
    border-radius: 5px;
    background: var(--navy);
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.contact-submit:hover {
    background: var(--blue);
    transform: translateY(-1px);
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-back {
    max-width: 820px;
    margin: -25px auto 50px;
    padding: 0 25px;
}

.contact-back a {
    color: var(--blue);
    font-weight: 700;
}

.contact-back a:hover {
    text-decoration: underline;
}


/* ============================================================
   COMMUNITY PROGRAM DETAIL PAGES
   ============================================================ */

.community-intro {
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 45px;
}

.community-intro-image {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.community-intro-text {
    min-width: 0;
}

.community-intro-text .eyebrow {
    margin-bottom: 8px;
}

.community-intro-text h2 {
    margin-top: 0;
}

.community-intro-text .lead {
    margin-bottom: 0;
}


/* ============================================================
   COMMUNITY PROGRAM CARD IMAGES
   ============================================================ */

.program-image {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}


/* ============================================================
   COMMUNITY DETAIL IMAGES
   ============================================================ */

/*
   These are regular photos on the individual program pages.
   Use contain rather than cover so the entire image remains
   visible and is never cropped.
*/

.community-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 450px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    margin: 25px auto;
}


/*
   Florida Southern flyer.
   The flyer can be taller than a normal program photograph,
   so allow it to display slightly larger.
*/

.clinic-flyer {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: contain;
    margin: 25px auto;
}


/* ============================================================
   PLACEHOLDER IMAGE
   ============================================================ */

.program-placeholder {
    width: 100%;
    height: 210px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* ============================================================
   SECTION DIVIDER
   ============================================================ */

.section-line {
    width: 70%;
    margin: 35px auto;
    border: 0;
    border-top: 2px solid var(--line);
}


/* ============================================================
   ABOUT US / BOARD OF DIRECTORS
   ============================================================ */

.mission-hero.board-page-hero {
    background: var(--bg);
    padding: 45px 0 50px;
}

.mission-hero.board-page-hero .wrap {
    max-width: 1120px;
}

.mission-hero.board-page-hero .board-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 55px;
    align-items: center;
}

.mission-hero.board-page-hero .board-intro-text {
    min-width: 0;
}

.mission-hero.board-page-hero .eyebrow {
    margin-bottom: 10px;
}

.mission-hero.board-page-hero h1 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.08;
}

.mission-hero.board-page-hero p {
    margin: 0 0 14px;
    color: #506572;
    font-size: 16px;
    line-height: 1.65;
}

.mission-hero.board-page-hero p:last-child {
    margin-bottom: 0;
}

.mission-hero.board-page-hero .board-group-photo {
    display: block;
    width: 100%;
    height: 285px;
    margin: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(18, 59, 93, 0.10);
}


/* ============================================================
   BOARD SECTION
   ============================================================ */

.board-section {
    padding: 40px 0 60px;
}

.board-section-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 25px;
}

.board-section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: 30px;
    white-space: nowrap;
}

.board-section-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.board-members {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.board-member {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    position: relative;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(18, 59, 93, 0.05);
}

.board-member::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--blue);
}

.board-photo {
    display: block;
    width: 190px;
    height: 215px;
    margin: 22px 0 22px 22px;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
}

.board-bio {
    padding: 22px 30px 22px 0;
    color: #506572;
    font-size: 14.5px;
    line-height: 1.55;
}

.board-role {
    display: inline-block;
    margin-bottom: 5px;
    padding: 4px 9px;
    background: #e6f3f8;
    color: var(--blue);
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.board-name {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 23px;
    line-height: 1.2;
}

.board-bio p {
    margin: 0 0 8px;
}

.board-bio p:last-child {
    margin-bottom: 0;
}

.board-bio a {
    color: var(--blue);
    font-weight: 600;
}

.board-bio a:hover {
    color: var(--navy);
}


/* ============================================================
   ALTERNATING BOARD MEMBERS
   ============================================================ */

.board-member:nth-child(odd) {
    background: #eef7fa;
}

.board-member:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 210px;
    background: #ffffff;
}

.board-member:nth-child(even)::before {
    left: auto;
    right: 0;
}

.board-member:nth-child(even) .board-photo {
    grid-column: 2;
    grid-row: 1;
    margin: 22px 22px 22px 0;
}

.board-member:nth-child(even) .board-bio {
    grid-column: 1;
    grid-row: 1;
    padding: 22px 0 22px 30px;
}


/* ============================================================
   BOARD HIGHLIGHT
   ============================================================ */

.board-highlight {
    margin: 12px 0;
    padding: 11px 15px;
    background: #eaf5f8;
    border-left: 3px solid var(--blue);
    border-radius: 5px;
    color: var(--ink);
}

.board-highlight strong {
    color: var(--navy);
}

.board-highlight p {
    margin: 5px 0 0;
}


/* ============================================================
   EX-OFFICIO
   ============================================================ */

.board-section.ex-officio {
    padding-top: 15px;
}

.board-section.ex-officio .board-member {
    background: #ffffff;
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
    display: block;
    width: auto;
    margin-left: 270px;
    padding: 42px 0;
    background-color: var(--navy) !important;
    color: #dce8ee !important;
}

footer .wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 38px;
}

footer .foot {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

footer strong {
    color: #ffffff !important;
}

footer p {
    margin: 8px 0 0;
    color: #dce8ee !important;
}


/* ============================================================
   MOBILE NAVIGATION BAR
   ============================================================ */

.mobile-bar {
    display: none;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .mission-hero.board-page-hero .board-intro {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 35px;
    }

    .mission-hero.board-page-hero .board-group-photo {
        height: 250px;
    }

    .board-member {
        grid-template-columns: 185px minmax(0, 1fr);
        gap: 24px;
    }

    .board-member:nth-child(even) {
        grid-template-columns: minmax(0, 1fr) 185px;
    }

    .board-photo {
        width: 165px;
        height: 195px;
        margin: 20px 0 20px 20px;
    }

    .board-member:nth-child(even) .board-photo {
        margin: 20px 20px 20px 0;
    }

    .board-bio {
        padding: 20px 25px 20px 0;
    }

    .board-member:nth-child(even) .board-bio {
        padding: 20px 0 20px 25px;
    }
}


/* ============================================================
   TABLET / SMALL DESKTOP CARDS
   ============================================================ */

@media (max-width: 900px) {

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================================
   COMMUNITY PROGRAM MOBILE
   ============================================================ */

@media (max-width: 800px) {

    .community-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .community-intro-image {
        height: 230px;
    }

    .mission-hero.board-page-hero {
        padding: 35px 0;
    }

    .mission-hero.board-page-hero .board-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mission-hero.board-page-hero h1 {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .mission-hero.board-page-hero p {
        font-size: 15px;
        line-height: 1.6;
    }

    .mission-hero.board-page-hero .board-group-photo {
        width: 100%;
        height: 230px;
    }

    .board-section {
        padding: 30px 0 45px;
    }

    .board-section-heading {
        gap: 12px;
        margin-bottom: 20px;
    }

    .board-section-heading h2 {
        font-size: 26px;
        white-space: normal;
    }

    .board-member,
    .board-member:nth-child(even) {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .board-member::before,
    .board-member:nth-child(even)::before {
        left: 0;
        right: auto;
        top: 0;
        bottom: auto;
        width: 100%;
        height: 4px;
    }

    .board-photo,
    .board-member:nth-child(even) .board-photo {
        width: calc(100% - 40px);
        height: 250px;
        margin: 20px 20px 0;
        order: 1;
    }

    .board-bio,
    .board-member:nth-child(even) .board-bio {
        width: 100%;
        padding: 20px 22px 24px;
        order: 2;
    }

    .board-role {
        font-size: 10px;
        padding: 4px 8px;
    }

    .board-name {
        font-size: 23px;
        margin-bottom: 9px;
    }

    .board-bio {
        font-size: 14px;
        line-height: 1.55;
    }

    .board-bio p {
        margin-bottom: 7px;
    }

    .board-highlight {
        margin: 10px 0;
        padding: 10px 13px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .sidebar {
        display: none;
    }

    .main {
        margin-left: 0;
    }

    footer {
        margin-left: 0;
    }

    .mobile-bar {
        display: flex;
        position: sticky;
        top: 0;
        z-index: 40;
        background: #ffffff;
        border-bottom: 1px solid var(--line);
        padding: 12px 18px;
        justify-content: center;
    }

    .mobile-bar img {
        width: 185px;
        max-height: 55px;
        object-fit: contain;
    }

    .mission-layout,
    .split,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .mission-image {
        height: 300px;
        order: -1;
    }

    .cards,
    .grants-grid {
        grid-template-columns: 1fr;
    }

    .wrap {
        padding: 0 20px;
    }

    .contact-hero {
        height: 230px;
    }

    .contact-content {
        padding: 0 15px 45px;
    }

    .contact-heading {
        padding: 32px 10px 25px;
    }

    .contact-heading h1 {
        font-size: 40px;
    }

    .contact-form-section {
        margin: 30px auto;
        padding: 0 15px;
    }

    .contact-intro {
        margin-bottom: 25px;
    }

    .contact-form-section form {
        padding: 28px 22px 30px;
    }

    .contact-row {
        display: block;
    }

    .state-field,
    .zip-field {
        width: 100%;
    }

    .contact-submit {
        width: auto;
        min-width: 140px;
    }

    .contact-back {
        padding: 0 15px;
        margin-bottom: 35px;
    }

    .card > img,
    .card .program-image {
        height: 200px;
    }

    .card-body {
        padding: 20px;
    }

    .home-cards .card-body h3,
    .program-cards .card-body h3 {
        min-height: 0;
    }

    /*
       Community detail photos remain proportional on mobile.
    */

    .community-image {
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: auto;
    }

    .clinic-flyer {
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: auto;
    }
}


/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 500px) {

    .mission-hero.board-page-hero {
        padding: 28px 0 30px;
    }

    .mission-hero.board-page-hero h1 {
        font-size: 30px;
    }

    .mission-hero.board-page-hero p {
        font-size: 14.5px;
    }

    .mission-hero.board-page-hero .board-group-photo {
        height: 200px;
    }

    .board-section {
        padding: 25px 0 40px;
    }

    .board-section-heading h2 {
        font-size: 24px;
    }

    .board-photo,
    .board-member:nth-child(even) .board-photo {
        width: calc(100% - 30px);
        height: 220px;
        margin: 15px 15px 0;
    }

    .board-bio,
    .board-member:nth-child(even) .board-bio {
        padding: 18px 18px 22px;
    }

    .board-name {
        font-size: 21px;
    }

    .board-role {
        font-size: 9px;
    }

    .board-bio {
        font-size: 13.5px;
    }
}