* { box-sizing: border-box; }
:root { --ink: #08131c; --panel: #0e1c27; --panel-light: #132735; --line: #284452; --text: #edf5f4; --muted: #9db1b7; --cyan: #8ae6dc; --orange: #ff896f; }
body { margin: 0; min-height: 100vh; color: var(--text); background: var(--ink); font-family: Verdana, Arial, sans-serif; line-height: 1.6; }
a { color: var(--cyan); }
.site-header { display: flex; align-items: center; gap: 28px; padding: 18px clamp(20px, 5vw, 72px); background: rgb(8 19 28 / 94%); border-bottom: 1px solid var(--line); }
.brand { color: var(--cyan); font-size: 1.35rem; font-weight: 700; letter-spacing: .16em; text-decoration: none; }
.site-header nav { display: flex; flex-wrap: wrap; gap: 20px; } .site-header nav a { color: var(--muted); font-size: .78rem; text-decoration: none; } .site-header nav a:hover { color: var(--cyan); }
.shell { width: min(100% - 40px, 1180px); margin: auto; padding: 72px 0; }
.hero { max-width: 820px; margin-bottom: 58px; } .eyebrow { margin: 0 0 14px; color: var(--cyan); font-size: .68rem; font-weight: 700; letter-spacing: .18em; } h1 { margin: 0; font-size: clamp(3.4rem, 9vw, 8rem); line-height: .92; letter-spacing: -.04em; } h1 em { color: var(--orange); font-style: normal; } .hero > p:not(.eyebrow), .status { color: var(--muted); } .status { min-height: 1.5em; font-size: .78rem; }
.featured-story { display: grid; gap: 13px; min-height: 250px; margin-bottom: 72px; padding: clamp(22px, 5vw, 48px); background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--orange); } .featured-story h2 { max-width: 780px; margin: 0; font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1.1; } .featured-story p { max-width: 720px; margin: 0; color: var(--muted); } .featured-story .post-meta { color: var(--orange); }
.news-section + .news-section { margin-top: 72px; } .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; border-bottom: 1px solid var(--line); } .section-heading h2 { margin: 0 0 12px; font-size: clamp(1.5rem, 3vw, 2.4rem); } .section-heading > span { padding-bottom: 16px; color: var(--muted); font-size: .68rem; letter-spacing: .12em; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; } .filter { padding: 9px 12px; color: var(--muted); background: transparent; border: 1px solid var(--line); font: inherit; font-size: .7rem; cursor: pointer; } .filter.active, .filter:hover { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }
.news-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .news-card { display: grid; gap: 9px; padding: 18px; background: var(--panel); border: 1px solid var(--line); } .news-card h3 { margin: 0; font-size: 1.08rem; line-height: 1.25; } .news-card p { margin: 0; color: var(--muted); font-size: .8rem; } .post-meta { margin: 0; color: var(--cyan); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; } .post-link { width: max-content; font-size: .75rem; }
.news-image { width: 100%; max-height: 260px; object-fit: cover; border: 1px solid var(--line); } .history-list { display: grid; gap: 10px; } .history-year { padding: 16px 18px; background: var(--panel); border-left: 3px solid var(--cyan); } .history-year h3 { margin: 0 0 8px; color: var(--orange); } .history-year ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: .8rem; }
@media (max-width: 700px) { .site-header { align-items: start; flex-direction: column; gap: 12px; } .shell { padding-top: 44px; } .news-list { grid-template-columns: 1fr; } .section-heading { align-items: start; flex-direction: column; gap: 0; } .section-heading > span { padding-bottom: 10px; } }
