/* =========================================
   GOVERNING BODY PAGE
========================================= */
* {
    font-family: 'Poppins', sans-serif;
}

.governing-page {
    margin-top: 120px;
    min-height: 100vh;
    background: #f8fafc;
    color: #131e30;
}


/* =========================================
   HERO
========================================= */

.governing-hero {
    position: relative;
    min-height: 330px;

    background-image:
        linear-gradient(135deg,
            rgba(4, 120, 87, 0.92),
            rgba(6, 95, 70, 0.82)),
        url("/assets/images/governing-body/meeting-room.jpg");

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.governing-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -180px;
    right: -100px;
}

.governing-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -180px;
    left: -80px;
}

.governing-hero-overlay {
    width: 100%;
    position: relative;
    z-index: 2;
}

.governing-hero-content {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    text-align: center;
    color: white;
}

.governing-badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 17px;
    margin-bottom: 15px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.governing-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 18px;

    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.governing-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.governing-breadcrumb strong {
    color: white;
}


/* =========================================
   MAIN SECTION
========================================= */

.governing-section {
    padding: 90px 20px 110px;
}

.governing-container {
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   HEADING
========================================= */

.governing-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-tag {
    display: inline-block;

    padding: 7px 16px;
    margin-bottom: 14px;

    background: #dff7ef;
    color: #047857;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.governing-heading h2 {
    margin: 0;

    color: #0f172a;

    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.governing-heading h2 span {
    color: #047857;
}

.governing-heading p {
    margin-top: 15px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   MEMBER GRID
========================================= */

.governing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* =========================================
   MEMBER CARD
========================================= */

.governing-member-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 145px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.governing-member-card::before {
    content: "";

    position: absolute;

    width: 5px;
    height: 0;

    left: 0;
    top: 0;

    background: #047857;

    border-radius: 0 0 5px 5px;

    transition: height 0.35s ease;
}

.governing-member-card:hover {
    transform: translateY(-7px);

    border-color: #b7e8d9;

    box-shadow: 0 18px 45px rgba(4, 120, 87, 0.12);
}

.governing-member-card:hover::before {
    height: 100%;
}


/* =========================================
   NUMBER
========================================= */

.member-number {
    position: absolute;

    right: 16px;
    top: 12px;

    color: #e2e8f0;

    font-family: "Outfit", sans-serif;

    font-size: 25px;
    font-weight: 700;

    transition: color 0.3s ease;
}

.governing-member-card:hover .member-number {
    color: #d1fae5;
}


/* =========================================
   MEMBER IMAGE
========================================= */
.member-image-wrapper {
    flex-shrink: 0;

    width: 84px;
    height: 84px;

    padding: 3px;

    background: #ffffff;

    /* border: 2px solid #d1fae5; */
    border-radius: 50%;

 

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.member-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    border-radius: 50%;

    box-shadow:
        0 0 0 3px #f0fdf4,
        0 8px 20px rgba(4, 120, 87, 0.10);
    border: 2px solid #d1fae5;
}



/* =========================================
   MEMBER CONTENT
========================================= */

.member-content {
    padding-left: 17px;
    padding-right: 25px;
}

.member-content h3 {
    margin: 0 0 7px;

    color: #0f172a;

    font-size: 16px;
    line-height: 1.4;

    font-weight: 600;
}

.member-position {
    display: inline-flex;

    padding: 5px 11px;

    background: #ecfdf5;
    color: #047857;

    border-radius: 50px;

    font-size: 11px;
    font-weight: 600;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .governing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .governing-section {
        padding-top: 70px;
    }

}


@media (max-width: 650px) {

    .governing-hero {
        min-height: 270px;
    }

    .governing-hero h1 {
        font-size: 38px;
    }

    .governing-section {
        padding: 55px 16px 70px;
    }

    .governing-heading {
        margin-bottom: 35px;
    }

    .governing-heading h2 {
        font-size: 29px;
    }

    .governing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .governing-member-card {
        min-height: 125px;
        padding: 16px;
    }

    .member-image-wrapper {
        width: 72px;
        height: 72px;
    }

}


@media (max-width: 400px) {

    .governing-hero h1 {
        font-size: 32px;
    }

    .governing-breadcrumb {
        font-size: 12px;
    }

    .member-content h3 {
        font-size: 14px;
    }

}