/* =========================================================
   FIGHTERS PAGE - ONLY ADDITIONAL STYLES
   Uses the existing GFC website design
========================================================= */

.fighters-page {
    padding-top: 170px;
    padding-bottom: 120px;
    background: #050505;
}

.fighter-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.fighter-filter {
    padding: 13px 25px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: #111;
    color: #bdbdbd;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
}

.fighter-filter:hover {
    color: white;
    border-color: #D61C24;
}

.fighter-filter.active {
    background: #D61C24;
    border-color: #D61C24;
    color: white;
}

.fighter-grid-full {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.fighter-card-content {
    padding: 0 25px 25px;
}

.fighter-card-content h3 {
    padding: 25px 0 8px;
    font-size: 24px;
}

.fighter-card-content > p {
    padding: 0;
    color: #bdbdbd;
}

.fighter-record {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.fighter-record strong {
    color: white;
    font-size: 22px;
    font-weight: 800;
}

.fighter-record span {
    color: #777;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .5px;
    white-space: nowrap;
}

.fighter-record.open strong {
    color: #D61C24;
}


/* =========================================================
   FIGHTERS RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .fighter-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:768px) {

    .fighters-page {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .fighter-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .fighter-filter {
        flex-shrink: 0;
    }

    .fighter-grid-full {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .fighter-card img {
        height: 420px;
    }

    .fighter-record {
        flex-direction: column;
        align-items: flex-start;
    }

    .fighter-record span {
        white-space: normal;
    }

}
/* =========================================================
   FIGHTER IMAGE - FULL IMAGE VISIBLE
========================================================= */

.fighter-card {
    overflow: hidden;
}

.fighter-card > img {
    width: 100%;
    height: 460px;

    display: block;

    object-fit: contain;
    object-position: center center;

    background: #111;

    transition:
        transform 0.4s ease;
}


/* Kein Abschneiden von Kopf oder Körper */

.fighter-card:hover > img {
    transform: scale(1.02);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .fighter-card > img {
        width: 100%;
        height: 430px;

        object-fit: contain;
        object-position: center center;
    }

}