
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
    justify-items: center;
    align-items: start;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 210px;
    height: 210px;
    object-fit: cover;
    background-color: #ddd;
    display: block;
}


.team-card p {
    margin-top: 10px;
    color: #4b2c1f;
    font-size: 18px;
    font-weight: bold;
    text-align: center;

}