﻿#committee-box-leadership {
    background: #fef7f1;
    padding: 30px 20px;
}

.committee-box-leadership-container {
    max-width: 1200px;
    margin: auto;
}

.committee-box-leadership-h1 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
    margin-top: 15px;
    position: relative;
}

    .committee-box-leadership-h1::after {
        content: "";
        width: 60px;
        height: 4px;
        background-color: black;
        display: block;
        margin: 12px auto 0;
        border-radius: 5px;
    }

.committee-box-leadership-card-grid {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap; /* Important for wrapping on smaller screens */
    width: 100%;
}

.committee-box-leadership-card {
    background: #fff;
    border: 2px solid black;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 15px 10px 4px;
    transition: transform 0.3s;
}

    .committee-box-leadership-card:hover {
        transform: translateY(-5px);
    }

.committee-box-leadership-image-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 12px;
}

    .committee-box-leadership-image-wrapper img {
        width: 200px;
        height: 200px;
        object-fit: contain;
        display: block;
    }

.committee-box-leadership-info h3 {
    font-size: 2rem;
    color: #e44236;
    font-weight: 500;
    margin: 0 0 6px;
}

.committee-box-leadership-name {
    position: relative;
    display: inline-block;
    color: #e44236; /* Match with heading color */
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 8px;
}

.committee-box-leadership-name-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e44236;
    border-radius: 1px;
}

.committee-box-leadership-info p {
    font-size: 1.5rem;
    color: #333;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 500px) {
    .committee-box-leadership-card-grid {
        grid-template-columns: 1fr;
    }
}


