/* Einheitliche Größe für alle Spielerfotos */
.team-card_img {
    position: relative;
    border-radius: 20px;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.team-card_img img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Für style2 und style3 Varianten */
.team-card.style2 .team-card_img,
.team-card.style3 .team-card_img {
    height: 350px;
}

.team-card.style2 .team-card_img img,
.team-card.style3 .team-card_img img {
    object-fit: cover;
    object-position: center top;
}

/* Responsive Anpassungen */
@media (max-width: 1199px) {
    .team-card_img {
        height: 320px;
    }

    .team-card.style2 .team-card_img,
    .team-card.style3 .team-card_img {
        height: 320px;
    }
}

@media (max-width: 991px) {
    .team-card_img {
        height: 350px;
    }

    .team-card.style2 .team-card_img,
    .team-card.style3 .team-card_img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .team-card_img {
        height: 300px;
    }

    .team-card.style2 .team-card_img,
    .team-card.style3 .team-card_img {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .team-card_img {
        height: 350px;
    }

    .team-card.style2 .team-card_img,
    .team-card.style3 .team-card_img {
        height: 350px;
    }
}