﻿
.committee-section {
    padding: 50px 15px 70px;
}

.committee-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Page Header */
.committee-header {
    text-align: center;
    margin-bottom: 45px;
}

    .committee-header .committee-label {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #7b0000;
        margin-bottom: 10px;
    }

    .committee-header h1 {
        margin: 0;
        font-size: 36px;
        line-height: 1.3;
        color: #333;
        font-weight: 700;
    }

    .committee-header .header-line {
        width: 65px;
        height: 3px;
        background: #7b0000;
        margin: 18px auto 15px;
        border-radius: 10px;
    }

    .committee-header p {
        max-width: 700px;
        margin: 0 auto;
        color: #666;
        font-size: 15px;
        line-height: 1.7;
    }


/* =========================================
       Committee Grid
       ========================================= */

.committee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* =========================================
       Member Card
       ========================================= */

.committee-member {
    position: relative;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    padding: 22px 22px 22px 70px;
    min-height: 120px;
    box-sizing: border-box;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .committee-member:hover {
        transform: translateY(-4px);
        border-color: rgba(123, 0, 0, 0.25);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
    }


/* Number Circle */
.member-number {
    position: absolute;
    left: 20px;
    top: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #7b0000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(123, 0, 0, 0.20);
}


/* Member Name */
.member-name {
    margin: 0 0 8px;
    color: #7b0000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}


/* Member Designation */
.member-designation {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
       Highlight First Members
       ========================================= */

.committee-member.featured {
    border-top: 3px solid #7b0000;
}


/* =========================================
       Mobile
       ========================================= */

@media (max-width: 767px) {

    .committee-section {
        padding: 30px 12px 45px;
    }

    .committee-header {
        margin-bottom: 30px;
    }

        .committee-header .committee-label {
            font-size: 11px;
            letter-spacing: 1.5px;
        }

        .committee-header h1 {
            font-size: 28px;
        }

        .committee-header .header-line {
            margin: 14px auto 12px;
        }

        .committee-header p {
            font-size: 14px;
        }

    .committee-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .committee-member {
        padding: 18px 15px 18px 60px;
        min-height: auto;
        border-radius: 12px;
    }

    .member-number {
        left: 16px;
        top: 18px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .member-name {
        font-size: 16px;
        line-height: 1.45;
        margin-bottom: 6px;
    }

    .member-designation {
        font-size: 13px;
        line-height: 1.65;
    }
}


/* =========================================
       Small Mobile
       ========================================= */

@media (max-width: 480px) {

    .committee-section {
        padding: 25px 8px 35px;
    }

    .committee-header h1 {
        font-size: 24px;
    }

    .committee-header p {
        font-size: 13px;
    }

    .committee-grid {
        gap: 12px;
    }

    .committee-member {
        padding: 16px 12px 16px 54px;
    }

    .member-number {
        left: 13px;
        top: 16px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .member-name {
        font-size: 15px;
    }

    .member-designation {
        font-size: 12.5px;
    }
}
