/* =========================================================
   OFFICERS UI ONLY
   Does not control page/container/grid layout
   ========================================================= */

.officers-page {
    --officer-blue: #003478;
    --officer-gold: #f7b718;
    --officer-text: #222;
    --officer-muted: #666;
    --officer-border: #e4e7eb;
    --officer-background: #f7f8fa;
    --officer-white: #ffffff;
}


/* =========================================================
   PAGE TITLE
   ========================================================= */

.officers-page .page-title {
    margin-bottom: 2rem;
}

.officers-page .page-title h2 {
    margin: 0 0 .1.5rem;
    color: var(--officer-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

.officers-page .title-line {
    width: 120px;
    height: 4px;
    background: var(--officer-gold);
    border-radius: 10px;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.officers-page .officer-section-title {
    text-align: center;
    margin-bottom: 1.75rem;
}

.officers-page .officer-section-title h2 {
    margin: 0 0 .6rem;
    color: var(--officer-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

.officers-page .section-line {
    width: 55px;
    height: 3px;
    margin: 0 auto;
    background: var(--officer-gold);
    border-radius: 10px;
}


/* =========================================================
   FEATURED OFFICER
   ========================================================= */

.officers-page .featured-officer {
    overflow: hidden;
    margin-bottom: 2.5rem;

    background: var(--officer-white);
    border: 1px solid var(--officer-border);
    border-radius: 16px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .07);

    transition:
        box-shadow .25s ease,
        transform .25s ease;
}

.officers-page .featured-officer:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .10);
}


/* Featured image */

.officers-page .featured-officer-image {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 320px;

    object-fit: cover;
}


/* Featured content */

.officers-page .featured-officer-content {
    padding: 2rem;
}

.officers-page .featured-officer-role {
    margin-bottom: .45rem;

    color: var(--officer-gold);

    font-size: .8rem;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.officers-page .featured-officer-name {
    margin: 0 0 1rem;

    color: var(--officer-blue);

    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.officers-page .featured-officer-content p {
    margin-bottom: 1rem;

    color: var(--officer-muted);

    font-size: .95rem;
    line-height: 1.7;
}

.officers-page .featured-officer-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   OFFICER CARD
   ========================================================= */

.officers-page .officer-card {
    height: 100%;
    overflow: hidden;

    background: var(--officer-white);

    border: 1px solid var(--officer-border);
    border-radius: 14px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


/* Hover */

.officers-page .officer-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 52, 120, .25);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .10);
}


/* =========================================================
   OFFICER IMAGE
   ========================================================= */

.officers-page .officer-image-wrapper {
    overflow: hidden;

    background: var(--officer-background);
}

.officers-page .officer-card img {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition:
        transform .35s ease;
}


/* Image hover */

.officers-page .officer-card:hover img {
    transform: scale(1.04);
}


/* No image placeholder */

.officers-page .officer-card img[src*="no-img"] {
    object-fit: contain;
    padding: 20px;
}


/* =========================================================
   CARD BODY
   ========================================================= */

.officers-page .officer-card-body {
    padding: 1.1rem;

    text-align: center;
}


/* =========================================================
   OFFICER ROLE
   ========================================================= */

.officers-page .officer-role {
    margin-bottom: .35rem;

    color: var(--officer-blue);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .7px;
    line-height: 1.35;

    text-transform: uppercase;
}


/* =========================================================
   OFFICER NAME
   ========================================================= */

.officers-page .officer-name {
    margin-bottom: .65rem;

    color: var(--officer-text);

    font-size: 1rem;
    font-weight: 700;

    line-height: 1.35;
}


/* =========================================================
   CONTACT
   ========================================================= */

.officers-page .officer-contact {
    margin: 0;

    color: var(--officer-muted);

    font-size: .82rem;
    line-height: 1.6;
}

.officers-page .officer-contact a {
    color: var(--officer-muted);

    text-decoration: none;

    word-break: break-word;

    transition:
        color .2s ease;
}

.officers-page .officer-contact a:hover {
    color: var(--officer-blue);
    text-decoration: underline;
}

.officers-page .officer-phone {
    color: var(--officer-muted);
}


/* =========================================================
   CARD IMAGE / CONTENT POLISH
   ========================================================= */

.officers-page .officer-card-body > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   MOBILE UI
   ========================================================= */

@media (max-width: 767.98px) {

    .officers-page .featured-officer-content {
        padding: 1.5rem;
        text-align: center;
    }

    .officers-page .featured-officer-name {
        font-size: 1.6rem;
    }

    .officers-page .featured-officer-content p {
        font-size: .9rem;
        line-height: 1.6;
    }

    .officers-page .officer-card-body {
        padding: .9rem;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .officers-page .page-title h2 {
        font-size: 1.5rem;
    }

    .officers-page .officer-section-title h2 {
        font-size: 1.25rem;
    }

    .officers-page .featured-officer-name {
        font-size: 1.4rem;
    }

    .officers-page .officer-role {
        font-size: .67rem;
    }

    .officers-page .officer-name {
        font-size: .9rem;
    }

    .officers-page .officer-contact {
        font-size: .75rem;
    }

}