/* ============================================================
   BOARD OF DIRECTORS PAGE — UNIQUE DESIGN SYSTEM (bod- prefix)
   Single-hue green palette only.
   Signature: an "official seal" medallion portrait — a dashed
   ring (like a corporate stamp) that sweeps open on hover, with
   a verified-mark badge — set in a centered plaque-style card.
   ============================================================ */

:root {
    --bod-g-900: #0A2E22;
    --bod-g-700: #14513C;
    --bod-g-500: #1E8A63;
    --bod-g-400: #2FA378;
    --bod-g-300: #6FC7A9;
    --bod-g-200: #B7E4D2;
    --bod-g-100: #EAF6F0;
    --bod-ink: var(--tf-black, #0A0A0A);
    --bod-grey: var(--tf-grey, #888888);
    --bod-line: rgba(10, 46, 34, .10);
    --bod-radius: 16px;
}

.bod-page { overflow-x: hidden; }

/* Bring the shared banner component into the same green family
   for this page only (scoped custom-property override). */
.bod-page {
    --ab-teal: var(--bod-g-500);
    --ab-teal-dark: var(--bod-g-700);
    --ab-teal-glow: rgba(30, 138, 99, .16);
}

.bod-page .ab-banner__orb--2 {
    background: radial-gradient(circle, rgba(111, 199, 169, .18) 0%, transparent 72%);
}

/* ============================================================
   1. INTRO
   ============================================================ */
.bod-intro {
    padding: 74px 0 18px;
}

.bod-intro__inner {
    max-width: 760px;
}

.bod-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--bod-g-700);
    margin-bottom: 14px;
}

.bod-intro__mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bod-g-500);
    box-shadow: 0 0 0 3px var(--bod-g-100);
    flex: none;
}

.bod-intro__text {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--bod-grey);
    margin: 0;
}

/* ============================================================
   2. SECTION / GROUP STRUCTURE
   ============================================================ */
.bod-section {
    padding: 60px 0 60px;
}

.bod-group + .bod-group {
    margin-top: 46px;
    padding-top: 46px;
    border-top: 1px solid var(--bod-line);
}

.bod-group__head {
    margin-bottom: 38px;
}

.bod-group__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--bod-g-500);
    margin-bottom: 8px;
}

.bod-group__eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--bod-g-500);
    flex: none;
}

.bod-group__title {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--bod-ink);
    margin: 0;
}

/* ============================================================
   3. SEAL PLAQUE CARD
   ============================================================ */
.bod-card {
    position: relative;
    height: 100%;
    padding: 36px 30px 30px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--bod-line);
    border-radius: var(--bod-radius);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.bod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--bod-g-500);
    transition: width .5s ease;
}

.bod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 54px rgba(10, 46, 34, .14);
    border-color: var(--bod-g-200);
}

.bod-card:hover::before {
    width: 72%;
}

/* ---------- Seal medallion ---------- */
.bod-seal {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 22px;
}

.bod-seal__ring {
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1.5px dashed var(--bod-g-400);
    opacity: .5;
    transition: transform .9s cubic-bezier(.16, 1, .3, 1), opacity .4s ease;
}

.bod-card:hover .bod-seal__ring {
    transform: rotate(48deg);
    opacity: 1;
}

.bod-seal__frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(150deg, var(--bod-g-700), var(--bod-g-900));
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--bod-g-200);
}

.bod-seal__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* filter: grayscale(100%) contrast(1.05); */
    transition: filter .55s ease;
}

.bod-card:hover .bod-seal__frame img {
    filter: grayscale(0%);
}

.bod-mono {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tf-font, 'Karla', sans-serif);
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: .02em;
    color: var(--bod-g-200);
}

.bod-seal__badge {
    position: absolute;
    bottom: -2px;
    right: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bod-g-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(10, 46, 34, .25);
    transform: scale(.85);
    transition: transform .4s ease, background .4s ease;
}

.bod-card:hover .bod-seal__badge {
    transform: scale(1);
    background: var(--bod-g-700);
}

/* ---------- Content ---------- */
.bod-name {
    font-size: 1.14rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--bod-ink);
    margin: 0 0 10px;
}

.bod-role {
    display: inline-block;
    font-size: .64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--bod-g-700);
    background: var(--bod-g-100);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.bod-rule {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--bod-g-400);
    margin: 0 auto 16px;
    transition: width .4s ease;
}

.bod-card:hover .bod-rule {
    width: 50px;
}

.bod-bio {
font-size: 16px;
    line-height: 1.72;
    color: #3b3b3b;
    margin: 0;
    text-align: justify;
}

/* ============================================================
   4. SCROLL REVEAL — "stamped" entrance
   ============================================================ */
.bod-animate {
    opacity: 0;
    transform: scale(.94) translateY(16px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.16, 1, .3, 1);
    transition-delay: var(--delay, 0s);
}

.bod-animate.bod-visible {
    opacity: 1;
    transform: none;
}
