.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.team-card {
    height: 100%;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    text-align: center;
    overflow: hidden;
}

.team-card-image {
    width: 100%;
    height: auto;
    background-color: #f6f6f6;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-content {
    min-height: 110px;
    padding: 18px 15px;
}

.team-card-content h2 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 24px;
    color: #0f4989;
}

.team-card-content span,
.team-card-content a {
    display: block;
    font-size: 14px;
    line-height: 22px;
}

.team-card-content span {
    color: #333;
}

.team-card-content a {
    margin-top: 8px;
    color: #f47a20;
    font-weight: 700;
}

@media(min-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-card-image {
        height: auto;
    }
}
