/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .member-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin: 70px 0 120px 0;

}
.member-item {
    border-radius: 8px;
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    box-sizing: border-box;
    list-style: none;
}

.member-thumb {
    background-color: #FFF;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #C0C0C0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.member-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.member-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.member-title {
    font-family: Inter Tight;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 120%;
    margin: 10px 0 5px;
}
.member-name {
    color: #555;
    font-size: 0.95rem;
    line-height: 120%;
}

/* 3 cols */
@media (max-width: 1200px) {
    .member-item {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
        aspect-ratio: 1 / 1;
    }
}

/* 2 cols */
@media (max-width: 900px) {
    .member-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        aspect-ratio: 1 / 1;
    }
}

/* 1 col */
@media (max-width: 600px) {
    .member-item {
        /* flex: 0 0 100%;
        max-width: 100%; */
        aspect-ratio: 1 / 1;
    }
}
