.functionality-box.functionality-box__item--active {
    flex-direction: column;
}

.functionality-box.functionality-box__item--active .functionality-box__item {
    display: flex;
    flex-direction: column;
}

.news-box {
    display: none;
}

.functionality-box__item--active.news-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 30px;
    flex-direction: row!important;
}

.news .section-title {
    margin-bottom: 30px;
}

.news-item {
    max-width: calc(50% - 20px);
    width: 100%;
    height: 150px;
    display: flex;
    border-radius: 10px;
    background-color: rgb(244, 244, 246);
    overflow: hidden;
    gap: 20px;
    transition: 0.3s all ease;
}

@media (max-width: 768px) {
    .news-item {
        max-width: 100%;
    }
}

.news-item__img {
    max-width: 150px;
    max-height: 150px;
    height: 100%;
    width: 100%;
}

.news-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item__info {
    padding: 20px 20px 20px 0;
}

.news-item__info-data {
    color: #262c40;
}

.news-item__info-title {
    color: #262c40;
    text-decoration: none;
    font-size: 20px;
    width: 100%;
    transition: 0.3s all ease;
}

.news-item:hover {
    background-color: rgba(244, 244, 246, 0.4);
    transition: 0.3s all ease;
}

.news-item:hover .news-item__info-title {
    color: #6bc72e;
    transition: 0.3s all ease;
}
