
.news__list .h1{
    text-align: center;
    margin-bottom: 50px;
}
.news__item {
    display: flex;
    gap: 20px;
}
.news__item img{
    height: 100%;
}

.stocks .block__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.news__item:hover .block__item {
    /*color: var(--white);*/
    background: var(--card-gradient, radial-gradient(50% 50% at 50% 50%, #F6F7FA 0%, #FFFCF9 100%))


}

.news__item:hover .block__arrow {
    border-left: 4px solid var(--white);
    border-bottom: 4px solid var(--white);
    background: var(--secondary-color-1);

}

.news__item:hover .block__arrow:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.876 18.954l-.69.69 1.38 1.378.689-.69-1.379-1.378zM18.41 6.774a.975.975 0 00-.975-.975H8.66a.975.975 0 000 1.95h7.8v7.8a.975.975 0 101.95 0V6.774zM5.255 20.333l12.87-12.87-1.38-1.378L3.876 18.954l1.379 1.379z' fill='%23fff'/%3E%3C/svg%3E")
}

.news__item:hover .block__item .block__text, .news__item:hover .block__item .block__title-text {
    /*color: var(--white);*/
}

@media (max-width: 1440px) {
    .stocks .block__grid{
        grid-template-columns: 1fr;
    }
    .news__item:nth-child(even){
        flex-direction: row-reverse;
    }
}

@media (max-width: 768px) {
    .news__item img{
        height: fit-content;
    }
}
@media (max-width: 600px) {
    .stocks .news__item {
        flex-direction: column;
        background-color: var(--white);
    }
}