/* Ekibimiz sayfası - ekip kartlarının grid dizilimi */

.team-grid {
    margin-top: -20px;
}

.team-grid-item {
    margin-bottom: 45px;
}

/* Kart içeriği .member (max-width:350px) ile ortalanır, isim satırı float:left
   olduğu için kolonun içinde taşmaması adına temizleniyor. */
.team-grid-item .member-name {
    float: none;
    display: block;
    max-width: 350px;
    margin: 10px auto 0 auto;
    padding-left: 0;
    text-align: left;
}

.team-grid-item:after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 767px) {
    .team-grid-item {
        margin-bottom: 35px;
    }

    .team-grid-item .member-name {
        text-align: center;
    }
}
