.teams-container {
    position: relative;
    margin: 0 auto 0 auto;
    max-width: 1280px;
    background-color: var(--wp--preset--color--custom-color-4);
    display: flex;
    flex-direction: column;
    align-items: center;

    .other-teams-container {
        display: grid;
        gap: 20px;
        align-items: start;
        margin: 0 auto 20px auto;
        padding: 0 20px;
        grid-template-columns: repeat(1, 1fr);
    }

    @media (min-width: 820px) {
        .other-teams-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1100px) {
        .other-teams-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .team-link {
        margin: 0!important;
    }

    .team-tile-big,
    .team-tile-normal {
        margin: 0 auto;
        width: 100%;
        height: auto;
        padding: 0;
        overflow: hidden;
        img {
            transition: transform 0.3s ease;
        }
    }

    .team-tile-big:hover,
    .team-tile-normal:hover {
        .team-name,
        .team-division {
            color: var(--wp--preset--color--custom-color-5);
        }
        img {
            transform: scale(1.05);
        }

    }


    .team-tile-normal {
        max-width: 500px;
    }

    .team-tile-normal img {
        border-radius: 10px;
    }

    .team-image {
        max-width: 100%;
        margin: 0;
    }

    .team-image img {
        width: 100%;
        height: auto;
    }

    .team-info {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 100%;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .team-info .wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 100%;
        padding: 10px 0 10px 20px;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .team-tile-normal .team-info .wrapper {
        padding: 5px 0 5px 10px;
    }

    .team-name {
        margin: 0 !important;
        font-weight: 500;
    }

    .team-tile-normal .team-name {
        font-size: 16px;
    }

    .team-division {
        margin: 0 !important;
        font-weight: bold;
    }

    .team-tile-normal .team-division {
        font-size: 20px;
    }






}

