.news-container {
    padding: 0;
    margin: auto;
    width: 100%;
    max-width: 768px;
    margin-top: 0px;
    --title-color: #333333;
    --text-color: #222222;
    --text-color-light: #777777;
}

.news-section-title {
    color: var(--title-color);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 16px;
}

.news-entry {
    padding: 20px 0;
    border-bottom: 1px solid #DDD;
    display: block;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
}

a.news-entry:link:hover, a.news-entry[href]:hover {
    color: var(--text-color);
    text-decoration: none;
    /* background-color: #F2F2F2; */
}

.news-entry:first-of-type {
    border-top: 1px solid #DDD;
}

.news-details {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-color-light);
    align-items: center;
}

.news-title {
    margin-top: 16px;
    color: var(--title-color);
    font-size: 14px;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .news-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .news-container {
        max-width: 768px;
    }

    .news-details {
        font-size: 14px;
    }
}

@media screen and (min-width: 1280px) {
    .news-container {
        padding: 0;
    }

    .news-entry {
        padding: 17px 0;
    }
}