/* ===== Page Hero ===== */
.bod-hero {
    position: relative;
    background: var(--secondary-color);
    padding: 5rem 0 4.5rem;
    overflow: hidden;
}

.bod-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../assets/images/about-banner.png') center / cover no-repeat;
    opacity: 0.08;
}

.bod-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
}

.bod-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-size: 0.82rem;
}

.bod-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
}

.bod-hero h1 {
    font-size: 2.4rem;
}

.bod-hero-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Hero stats */
.bod-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bod-stat small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    display: block;
}

.bod-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

/* ===== Chairman Message Section ===== */
.bod-chairman-section {
    background: #fff;
}

.bod-chairman-row {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.08);
}

/* Photo col */
.bod-chairman-photo-col {
    position: relative;
    min-height: 520px;
}

.bod-chairman-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.bod-chairman-img-wrap picture {
    display: block;
    width: 100%;
    height: 100%;
}

.bod-chairman-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    min-height: 520px;
}

/* Overlay gradient */
.bod-chairman-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(2, 32, 103, 0.85) 100%);
}

/* Name card at bottom of photo */
.bod-chairman-namecard {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 1.5rem;
    z-index: 2;
}

.bod-chairman-namecard-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.bod-chairman-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bod-chairman-namecard h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.bod-chairman-title-tag {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
}

/* Message col */
.bod-chairman-msg-col {
    padding: 3rem 2.5rem;
    background: #fff;
    position: relative;
}

.bod-msg-line {
    width: 36px;
    height: 2px;
    background: var(--primary-color);
    flex-shrink: 0;
}

.bod-msg-tag {
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bod-big-quote {
    font-size: 7rem;
    color: rgba(219, 22, 53, 0.08);
    line-height: 0.5;
    font-family: Georgia, serif;
    margin-bottom: 1.5rem;
    height: 40px;
}

.bod-msg-body p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.9;
}

.bod-msg-closing {
    color: var(--secondary-color) !important;
    font-size: 1rem !important;
}

.bod-signature {
    border-top: 1px solid #f0f2f5;
    padding-top: 1.25rem;
}

.bod-signature-seal {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(219, 22, 53, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ===== Committees Banner ===== */
.bod-committees-banner {
    background: var(--secondary-color);
}

.bod-committee-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    color: #fff;
    font-size: 0.88rem;
    transition: background 0.2s;
}

.bod-committee-pill:hover {
    background: rgba(255, 255, 255, 0.14);
}

.bod-committee-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ===== Members Section ===== */
.bod-members-section {
    background: #f6f8fc;
}

.bod-section-tag {
    display: inline-block;
    background: rgba(219, 22, 53, 0.09);
    color: var(--primary-color);
    padding: 0.3rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}

.bod-section-sub {
    color: #777;
    font-size: 0.93rem;
    max-width: 520px;
    line-height: 1.8;
}

/* ===== Featured Chairman Card ===== */
.bod-chairman-featured {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
    border: 1.5px solid #eef0f4;
}

.bod-featured-photo {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 2rem auto;
}

.bod-featured-photo picture,
.bod-featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.bod-featured-crown {
    position: absolute;
    top: -2px;
    right: 50%;
    transform: translateX(50%);
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(219, 22, 53, 0.4);
}

.bod-featured-info {
    padding: 2rem 2.5rem;
    border-right: 3px solid var(--primary-color);
}

.bod-featured-role {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.bod-featured-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 600px;
}

.bod-member-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f0f2f5;
    color: #555;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.bod-member-tag--red {
    background: rgba(219, 22, 53, 0.09);
    color: var(--primary-color);
}

/* ===== Member Cards ===== */
.bod-member-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid #eef0f4;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.bod-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.bod-member-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #eef0f4;
}

.bod-member-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, #fff);
}

.bod-member-photo picture,
.bod-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s;
}

.bod-member-card:hover .bod-member-photo img {
    transform: scale(1.06);
}

.bod-member-body {
    padding: 1.25rem 1.25rem 0.75rem;
    flex: 1;
}

.bod-member-role-badge {
    display: inline-block;
    background: rgba(4, 28, 62, 0.07);
    color: var(--secondary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.bod-member-card .h5,
.bod-member-card h5 {
    font-size: 0.9rem;
    line-height: 1.4;
}

.bod-member-spec {
    font-size: 0.78rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

.bod-member-divider {
    height: 1px;
    background: #f0f2f5;
    margin: 0.85rem 0;
}

.bod-member-bio {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.bod-member-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bod-member-linkedin {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(10, 102, 194, 0.1);
    color: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}

.bod-member-linkedin:hover {
    background: #0a66c2;
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .bod-chairman-photo-col,
    .bod-chairman-img-wrap,
    .bod-chairman-img-wrap img {
        min-height: 360px;
    }

    .bod-chairman-msg-col {
        padding: 2rem 1.5rem;
    }

    .bod-big-quote {
        font-size: 5rem;
    }

    .bod-featured-info {
        padding: 1.5rem;
        border-right: none;
        border-top: 3px solid var(--primary-color);
    }
}

@media (max-width: 576px) {
    .bod-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .bod-hero h1 {
        font-size: 1.8rem;
    }
}
