.page-header { padding: 60px 60px 40px; }
.page-header .eyebrow { color: var(--brand-teal); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 12px; font-weight: 600; }
.page-header h1 { font-size: 48px; font-weight: 800; line-height: 1.1; max-width: 900px; }
.page-header h1 span { color: var(--brand-teal); }

.news-page { padding: 20px 60px 80px; background: #f4f7f9; color: #334b5c; margin-top: 40px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 60px 0; }
.news-card {
    background: white; border: 1px solid #d4dde2; border-radius: 8px;
    padding: 24px; transition: transform .2s, border-color .2s;
    display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-3px); border-color: var(--brand-teal); }
.news-card .meta {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.news-card .cat { color: var(--brand-teal); font-weight: 600; }
.news-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.news-card p { font-size: 14px; opacity: 0.75; line-height: 1.5; flex: 1; }
.news-card .read-more { margin-top: 14px; font-size: 13px; color: var(--brand-teal); font-weight: 600; }

@media (max-width: 1023px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .news-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px)  { .page-header { padding: 40px 20px; } .page-header h1 { font-size: 32px; } .news-page { padding: 0 20px 60px; } }
.page-header { padding: clamp(48px, 6vw, 78px) 5% clamp(42px, 5vw, 64px); background: radial-gradient(circle at 85% 10%, rgba(0,170,210,0.22), transparent 34%), linear-gradient(135deg, #002B49, #005F6B); color: #fff; }
.page-header .eyebrow { color: #8ed4dc; font-family: var(--sp-font-ui); font-weight: 800; }
.page-header h1 { color: #fff; letter-spacing: 0; }
.page-header h1 span { color: #8ed4dc; }
.news-page { background: linear-gradient(180deg, #f4f8f9, #fff); color: #334b5c; }
.news-card { background: #fff; border-color: rgba(0,43,73,0.14); box-shadow: 0 18px 44px rgba(0,43,73,0.08); }
.news-card .meta { color: #647889; opacity: 1; }
.news-card .cat, .news-card .read-more { color: #005F6B; opacity: 1; }
.news-card h3 { color: #002B49; }
.news-card p { color: #526678; opacity: 1; }
