
    .meu-filter-noticias {
        display: flex;
        gap: 10px;
        /* overflow-x: auto; */
        align-items: center;
        scrollbar-width: none;
    }

    .meu-filter-noticias .slide-item {
        display: block;
        flex: 0 0 auto;
        width: auto;
        gap: 10px;
        max-width: 30%;
        height: 300px;
        background: none;
        padding: 10px;
    }

    .meu-filter-noticias .slide-item h3 {
        margin-top: 10px;
        display: block;
    }

    .meu-filter-noticias .slide-item .thumbnail-image {
        margin-bottom: 15px;
        max-width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .meu-filter-noticias .slide-item .thumbnail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media screen and (max-width: 768px) {
        .meu-filter-noticias {
            flex-direction: column;
            align-items: stretch;
            width: 100% !important;
            max-width: 100%;
        }

        .meu-filter-noticias .slide-item {
            width: 100% !important;
            max-width: 100%;
        }

        .meu-filter-noticias .slide-item .thumbnail-image {
            width: 100% !important;
            max-width: 100%;
            height: 200px;
        }
    }
