.news-section {
    max-width: 900px;
    margin: 0 auto 120px;
}

.news-section .section-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    padding: 16px 0 0;

    max-width: 100%;
}

.news-date {
    font-size: 14px;
    color: var(--color-text-primary);
    font-weight: 400;
    white-space: nowrap;
}

.news-tag {
    background-color: var(--color-brand-gold);
    color: white;
    padding: 2px 8px;
    border-radius: 100vmax;
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
}

.title {
    font-size: 16px;
    color: #333;
    font-weight: normal;
    margin: 0;
    flex: 1;
}

.title a {
    text-decoration: none;
}

.title a,
.title a:visited,
.title a:link {
    text-decoration: none;
    color: #000;
}

/* RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .news-section {
        margin: 0 24px;

    }

    .news-section .section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: left;
        max-width: 100%;
    }

}