/* ==========================================
        BOARD OF GOVERNORS
========================================== */

.bog-section {
    width: 100%;
    padding: 70px 0;
    background: #fff;
}

.bog-container {
    max-width: 1380px;
    margin: auto;
    padding: 0 20px;
}


/* ==========================================
        PAGE TITLE
========================================== */

.bog-title {
    text-align: center;
    margin-bottom: 55px;
}

.bog-title h2 {
    font-size: 46px;
    font-weight: 700;
    color: #0A1650;
    margin-bottom: 18px;
}

.bog-title p {
    max-width: 1050px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}


/* ==========================================
        SUB TITLES
========================================== */

.bog-subtitle {
    text-align: center;
    margin: 45px 0 30px;
}

.bog-subtitle h3 {
    font-size: 30px;
    color: #0A1650;
    font-weight: 700;
}


/* ==========================================
        GRID
========================================== */

.committee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* ==========================================
        CARD
========================================== */

.bog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
    transition: .35s;
    position: relative;
}

.bog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}


/* ==========================================
        IMAGE
========================================== */

.bog-image {
    height: 260px;
    overflow: hidden;
    background: #f2f2f2;
}

.bog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}


/* ==========================================
        CARD INFO / BLUE BOX
========================================== */

.bog-info {
    background: #0b2f59;
    color: #fff;
    text-align: center;

    /* Smaller blue box */
    padding: 16px 18px;
    min-height: 125px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bog-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;
}

.bog-info p {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.bog-info span {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
}

.bog-info small {
    display: block;
    color: #d8e7ff;
    font-size: 14px;
    line-height: 1.4;
}


/* ==========================================
        CHAIRMAN
========================================== */

.chairman-wrap {
    display: flex;
    justify-content: center;
    margin: 50px 0 80px;
}

.chairman-card {
    width: 300px;
}


/* ==========================================
        HOVER EFFECT
========================================== */

.bog-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        #70006d,
        #123d8b
    );

    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;

    z-index: 0;
    opacity: .08;
}

.bog-card:hover::before {
    transform: scaleX(1);
}

.bog-card > * {
    position: relative;
    z-index: 2;
}


/* ==========================================
        RESPONSIVE - 1200px
========================================== */

@media (max-width: 1200px) {

    .committee-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ==========================================
        RESPONSIVE - 991px
========================================== */

@media (max-width: 991px) {

    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bog-title h2 {
        font-size: 38px;
    }

    .bog-subtitle h3 {
        font-size: 26px;
    }

}


/* ==========================================
        RESPONSIVE - 767px
========================================== */

@media (max-width: 767px) {

    .bog-section {
        padding: 50px 0;
    }

    .committee-grid {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        width: 100%;
        max-width: 330px;
    }

    .bog-title h2 {
        font-size: 32px;
    }

    .bog-title p {
        font-size: 15px;
    }

    .bog-subtitle {
        margin: 35px 0 20px;
    }

    .bog-subtitle h3 {
        font-size: 22px;
    }

    /* Mobile image */
    .bog-image {
        height: 280px;
    }

    .bog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* Smaller blue box on mobile */
    .bog-info {
        min-height: 120px;
        padding: 14px 15px;
    }

    .bog-info h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .bog-info span {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .bog-info small {
        font-size: 13px;
        line-height: 1.4;
    }

}