.cc-committee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    padding: 30px 0;
}

.cc-member {
    position: relative;
    width: 260px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.cc-member:hover {
    transform: translateY(-5px);
}

.cc-member img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.cc-name {
    font-size: 15px;
    font-weight: bold;
    color: #c80000;
    text-transform: uppercase;
    margin: 10px 0 2px;
    text-align: center;
    padding: 0 10px;
}

.cc-position {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    padding: 0 10px;
}

.cc-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: bottom 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cc-member:hover .cc-overlay {
    bottom: 0;
}

.cc-affiliation,
.cc-bio {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.view-more {
    color: #d40000;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-more:hover {
    color: #000;
}


