#loading {
    display: none;
}
.infinity-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, 25rem);
    gap: 1rem;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}
section .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
section .title a {
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0 1rem;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
}
@media (max-width: 1024px){
    .infinity-scroll {
        grid-template-columns: repeat(auto-fit, 18rem);
    }
}
@media (max-width: 768px) {
    .slider-description {
        display: none;
    }
    .infinity-scroll {
        grid-template-columns: repeat(auto-fit, 15rem);
    }
}

