/* Page sheet for news.php. Linked after style.css by includes/css.php,
   so these rules win ties against the shared sheet. */

.news-page {
    width: 100%;
    max-width: 860px;
    margin: 0 auto 80px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.news-article {
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.news-article-image img {
    width: 100%;
    height: auto;
    display: block;
}
.news-article-body { padding: 26px 30px 30px; }
.news-article-title {
    font-family: 'Beaulieux', sans-serif;
    font-weight: normal;
    font-size: var(--fs-h3);
    letter-spacing: 0.04em;
    margin: 12px 0 14px;
    color: var(--text-main);
}
.news-article-text p,
.news-article-text li {
    color: var(--text-mid);
    font-size: var(--fs-body);
    line-height: 1.7;
}
.news-article-text p  { margin: 0 0 12px; }
.news-article-text ul { margin: 0 0 12px; padding-left: 22px; }
.news-article-text li { margin: 0 0 8px; }
.news-article-text p:last-child,
.news-article-text ul:last-child { margin-bottom: 0; }
.news-back { text-align: center; margin: 6px 0 0; }
.news-back a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: var(--fs-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.news-back a:hover { color: var(--text-main); }
