.NewsSection__container{
        
    .ava-news {
        width: 100%;
        box-sizing: border-box;
        padding: 0 1.25rem;


        @media (max-width: 700px) {
            max-width: 100%;
            box-sizing: border-box;
        }

    }

    .ava-news__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;

         @media (max-width: 700px) {
              padding: 0;
         }
    }

    .ava-news__main-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-black);
        margin: 0;
        text-wrap: nowrap;
    }

    .ava-news__grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(374px, 1fr));
        gap: 1.25rem;
    }
}

    @media (max-width: 700px) {

        .ava-news__grid.view-row{
            display: flex;
            flex-direction: row;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            margin: 0;
            padding: 0 0 1.25rem 0;
            gap: 1rem;

            -webkit-overflow-scrolling: touch;

            &::-webkit-scrollbar {
                height: .3125rem;
            }

            &::-webkit-scrollbar-track {
                background: var(--color-gray);
                border-radius: 3.125rem;
            }

            &::-webkit-scrollbar-thumb {
                background: var(--color-dark-gray);
                border-radius: 3.125rem;
            }
        }


        .view-column{
            flex-direction: column;
        }

    } 