.tournament__cards {
    display: grid;
    grid-gap: 30px
}

.tournament__cards-wrapper > .tournament__cards:not(:last-child) {
    margin-bottom: 30px
}

.tournament__cards-wrapper > h2 {
    margin-bottom: 10px
}

.tournament__cards::after, .tournament__cards::before {
    display: none
}

.tournament__main-cities {
    background-color: rgba(68, 15, 98, .65);
    padding: 10px 20px;
    border-radius: 10px;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    grid-auto-flow: column;
    gap: 15px
}

.tournament__main-cities a {
    text-decoration: none;
    color: #fff;
    width: 100%;
    text-overflow: ellipsis;
}

.tournament__main-cities a:hover {
    color: #37b3da
}

.tournament_title {
    text-align: left;
    margin: 0 0 10px
}

.tournaments_info {
    text-align: center;
    font-weight: 700
}

@media screen and (min-width: 768px) {
    .tournament__search {
        margin-bottom: 25px
    }

    .tournament__search #search_form {
        display: grid;
        grid-template-columns:repeat(3, 1fr) auto;
        align-items: end;
        grid-column-gap: 18px
    }

    .tournament__search .form_search {
        margin-top: 0
    }

    .tournament__search .form-group {
        margin-bottom: 0;
        height: fit-content
    }

    .input-group {
        margin-bottom: 0 !important
    }

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

@media screen and (max-width: 768px) {
    .tournament__cards {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: auto
    }

    .tournament__cards::-webkit-scrollbar {
        display: none
    }

    .tournament__card-item {
        min-width: 260px;
        width: 260px
    }

    .tournament__main-cities {
        grid-template-columns:repeat(2, 1fr);
        gap: 12px;
    }
}

@media screen and (min-width: 992px) {
    .tournament__cards-wrapper > .tournament__cards:not(:last-child) {
        margin-bottom: 50px
    }
}

@media screen and (min-width: 1200px) and (max-width: 1439.8px) {
    .tournament__cards {
        grid-template-columns:repeat(4, 1fr)
    }
}

@media screen and (min-width: 1440px) {
    .tournament__cards {
        grid-template-columns:repeat(4, 1fr)
    }
}