.committee-member {
    height: 100%;
    border: none;
    overflow: hidden;
}
.member-photo {
    width: 100%;
    border-radius: 20px;
    height: auto;
}
.member-title {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}
.member-name {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}
.member-desi {
    font-size: 12px;
    font-weight: 400;
    color: #444444;
    text-align: center;
    margin-bottom: 0;
}

/*  */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    padding: 10px;
}

.image-gallery-item {
    position: relative;
    overflow: hidden;
}

.image-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin: 10px 5px;
}

.image-gallery-item img:hover {
    transform: scale(1.1);
}