/* ============================================
   NEWS ARTICLES (1-column bordered cards)
   ============================================ */
.news-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-light);
}

.news-article {
    background: var(--bg-white);
    padding: 2.25rem;
    border-bottom: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    transition: background 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.news-article:hover {
    background: var(--accent-muted);
}

.news-article__body {
    flex: 1;
    min-width: 0;
}

.news-article__thumb {
    flex-shrink: 0;
    width: 170px;
    height: 170px;
    object-fit: cover;
    border: 1px solid var(--border-light);
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.news-article:hover .news-article__thumb {
    filter: grayscale(0%);
}

.news-article__meta {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-article__meta-sep {
    width: 3px;
    height: 3px;
    background: var(--grey-warm);
    border-radius: 50%;
    flex-shrink: 0;
}

.news-article__author {
    color: var(--grey-warm);
}

.news-article__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-article__text {
    font-size: 1.03rem;
    color: var(--grey-warm);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 800px;
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    .news-section {
        padding: 3.5rem 0;
    }

    .news-article {
        padding: 1.5rem;
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .news-article__thumb {
        width: 100%;
        height: 140px;
    }
}
