.news {
    display: block;
    position: relative;
    margin: 0.3rem 0;
}

.news .inner {
        width: 100%;
        background-color: var(--color-4);
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        border-radius: 0.2rem;
        overflow: hidden;
        padding: 0.3rem;
    }

:is(.news .inner) .top-wrap {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

:is(:is(.news .inner) .top-wrap) .buttons-wrap {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 0.2rem;
                width: fit-content;
            }

:is(:is(:is(.news .inner) .top-wrap) .buttons-wrap) .splide__arrows {
                    display: none;
                }

:is(.news .inner) .news-wrap {
            width: 100%;
            display: flex;
            flex-direction: row;
            gap: 0.3rem;
        }

:is(:is(.news .inner) .news-wrap) .splide {
                visibility: visible;
            }

:is(:is(.news .inner) .news-wrap) .splide__list {
                width: 100%;
                display: flex;
                flex-direction: row;
                gap: 0.3rem;
            }

:is(:is(.news .inner) .news-wrap) .splide__arrows {
                display: none;
            }

:is(:is(.news .inner) .news-wrap) .news-card {
                display: flex;
                flex-direction: column;
                gap: 0.2rem;
                width: 4.2rem;
                height: 100%;
            }

:is(:is(:is(.news .inner) .news-wrap) .news-card):hover .image-wrap img {
                        scale: 1.05;
                    }

:is(:is(:is(.news .inner) .news-wrap) .news-card) .image-wrap {
                    width: 100%;
                    height: 3.3rem;
                    position: relative;
                    overflow: hidden;
                    border-radius: 0.1rem;
                }

:is(:is(:is(:is(.news .inner) .news-wrap) .news-card) .image-wrap) img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                        transition: scale 0.4s var(--ease);
                        will-change: scale;
                    }

:is(:is(:is(.news .inner) .news-wrap) .news-card) .title-link-wrap {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 0.2rem;
                    flex-grow: 1;
                }

@media screen and (max-width: 768px) {

    .news {
        margin: 0;
}

        .news .container {
            width: 100%;
        }

        .news .inner {
            width: 100%;
            gap: 0.2rem;
            overflow: hidden;
            padding: 0.3rem 0.15rem;
            border-radius: 0;
        }

            :is(.news .inner) .top-wrap {
                align-items: flex-start;
                flex-direction: column;
                gap: 0.2rem;
            }

                :is(:is(.news .inner) .top-wrap) .buttons-wrap {
                    width: 100%;
                }
                    
                    :is(:is(:is(.news .inner) .top-wrap) .buttons-wrap) .splide__arrows {
                        display: flex;
                        gap: 0.1rem;
                    }

                        :is(:is(:is(:is(.news .inner) .top-wrap) .buttons-wrap) .splide__arrows) .splide__arrow {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            background: none;
                            border: none;
                            padding: 0;
                        }

                            :is(:is(:is(:is(:is(.news .inner) .top-wrap) .buttons-wrap) .splide__arrows) .splide__arrow) svg {
                                width: 0.18rem;
                                height: 0.18rem;
                            }

            :is(.news .inner) .news-wrap {
                width: 100%;
                display: flex;
                flex-direction: row;
                gap: 0.2rem;
            }

                :is(:is(.news .inner) .news-wrap) .splide {
                    width: 100%;
                    position: relative;
                }

                :is(:is(.news .inner) .news-wrap) .splide__list {
                    width: 100%;
                    gap: 0;
                }

                :is(:is(.news .inner) .news-wrap) .splide__slide {
                    display: flex;
                }

                :is(:is(.news .inner) .news-wrap) .splide__track {
                    overflow: visible;
                }

                :is(:is(.news .inner) .news-wrap) .splide__sr {
                    position: absolute;
                    width: 1px;
                    height: 1px;
                    margin: -1px;
                    overflow: hidden;
                    clip: rect(0, 0, 0, 0);
                    white-space: nowrap;
                    border: 0;
                }

                :is(:is(.news .inner) .news-wrap) .news-card {
                    width: 3.45rem;
                    gap: 0.15rem;
                }

                    :is(:is(:is(.news .inner) .news-wrap) .news-card) .image-wrap {
                        height: 2.71rem;
                        border-radius: 0.08rem;
                    }
    }
