.news-list {
    list-style: none;
}

.news-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-list li + li {
    margin-top: 1px;
}

.news-list__item {
    display: block;
    padding: 23px 15px 18px;
    border-radius: 10px;
    background-color: var(--white);
    text-decoration: none;
    transition: box-shadow 0.3s;
}

.news-list__item:hover {
    position: relative;
    box-shadow: 0 21px 30px rgba(0, 0, 0, 0.1);
}

.news-list__item--mobile {
    display: none;
}
@media (max-width: 768px) {
    .news-list__item--mobile {
        display: block;
    }
}

.news-list__full-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-list__date,
.news-list__time {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--black);
    opacity: 0.45;
}

.news-list__description {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--black);
}
