.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.team-card {
    display: flex;
    flex-direction: column;
/*     justify-content: center; */
    align-items: center;
    gap: 5px;
    text-align: center;
}

.team-image img {
    width: 200px;
    height: 100%;
}

.team-name {
    font-weight: 600;
    margin-bottom: 0;
    padding-top: 15px;
}

.team-title, .team-contact a {
    font-size: 16px;
    color: var(--FC-gray);
    margin-bottom: 0;
    line-height: 1.1;
} 

.team-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-contact-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.team-phone {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.team-phone::before {
    content: "|";
}

.team-contact a {
    font-size: 18px;
    color: var(--FC-orange) !important;
}




@media screen and (max-width: 1399px) {

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media screen and (max-width: 991px) {

    .team-image img {
        width: 150px;
        height: 100%;
    }

    .team-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .team-contact a {
        font-size: 16px;
    }

}


@media screen and (max-width: 767px) {

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 500px) {

    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

