body.news {
    background-color: var(--light);
}

.news-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    box-sizing: border-box;
    width: 100%;

    padding: clamp(16px, 4vw, 20px);

    border: 1px solid var(--dark);
    border-radius: 14px;
}

.news-text {
    font-size: var(--body-size);
    font-weight: 300;
}

.news-text a {
    text-decoration: underline;
}