/* ── News list ────────────────────────────────────────────── */
.news-list {
    margin-top: 40px;
    width: 100%;
}
.news-card__date {
    padding-top: 10px;
    color: #636363;
    font-size: 11px;
}
.news-card__image {
    height: 300px;
    width: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

/* ── Article ──────────────────────────────────────────────── */
.article-image-col {
    position: sticky;
    top: 1rem;
    align-self: flex-start;
}
.article-hero {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.article-hero img {
    width: 100%;
    height: auto;
    display: block;
}
.article-no-image {
    height: 260px;
    background: #f0f0f0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.9rem;
}
.article-meta {
    font-size: 0.8rem;
    color: #636363;
    letter-spacing: 0.03em;
}
.article-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}
.article-divider {
    border-top: 2px solid #007ec0;
    opacity: 1;
    margin: 0.75rem 0 1.25rem;
}
.news-content {
    position: relative;
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
}
.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin: 0.75rem 0;
}

