/* Responsive */
@media screen and (max-width: 1200px) {
    .carousel-post {
        flex: 0 1 calc(33.333% - 1.5rem);
    }
}

@media screen and (max-width: 992px) {
    .carousel-post {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media screen and (max-width: 768px) {
    .posts-carousel-wrapper {
        gap: 1rem;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding-bottom: 1rem;
    }

    .posts-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .carousel-post {
        flex: 0 0 calc(100% - 2rem);
        max-width: 350px;
    }

    /* Se c'è un solo post su mobile */
    .posts-carousel-wrapper:only-child {
        justify-content: center;
    }

    .posts-carousel-wrapper:only-child .carousel-post {
        flex: 0 0 calc(100% - 2rem);
    }
}
