#sport {
    scroll-margin-top: 8.4vh;
}

.sport__section {
    width: 100%;
}

.sport__content {
    flex-direction: column;
    row-gap: 50px;
    align-items: center;
    padding: 50px 0;
}

.sport__content .sport__posts {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.sport__content .sport__posts .sport__item {
    width: 100%;
}

.sport__content .sport__posts .sport__item .sport__title {
    width: 100%;
    text-align: center;
    font-weight: 400;
    padding-bottom: 10px;
}

.sport__content .sport__posts .sport__item .sport__gallery {
    width: 100%;
}

/* For scrolling */
@media screen and (min-width: 1360px) {
    #sport {
        scroll-margin-top: 13vh;
    }
}

/* For spaces */
@media screen and (min-width: 1000px) {
    .sport__content {
        row-gap: 100px;
        padding: 100px 0;
    }
}

/* For large devices */
@media screen and (min-width: 800px) {
    .sport__content .sport__posts {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .sport__content .single__sport__post {
        justify-content: center;
    }
    .sport__content .sport__posts .sport__item {
        width: 47%;
    }
}