/* Press portal — Profil Klett. One blue accent, Matter type, editorial layout. */

@font-face {
  font-family: "Matter";
  src: url("/static/fonts/Matter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Matter";
  src: url("/static/fonts/Matter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #272727;
  --ink-soft: #5c5c5c;
  --accent: #00619d;
  --bg: #ffffff;
  --offwhite: #f8f8f8;
  --hair: #ececec;
  --dark: #272727;
  --max: 1080px;
  --font: "Matter", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header { border-bottom: 1px solid var(--hair); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.wordmark { font-weight: 600; font-size: 17px; }
.wordmark-sub { color: var(--accent); font-weight: 600; }
.site-nav { display: flex; gap: 24px; font-size: 14px; }
.site-nav a { color: var(--accent); }
.site-nav a:hover { text-decoration: underline; }

/* Hero */
.hero { padding: 72px 0 32px; }
.hero-sm { padding: 56px 0 24px; }
.hero-title { margin: 0; font-weight: 600; font-size: 50px; letter-spacing: -0.02em; line-height: 1.05; }
.hero-sub { margin: 16px 0 0; max-width: 640px; font-size: 18px; color: var(--ink-soft); }

/* Filter */
.filter { display: flex; flex-wrap: wrap; gap: 20px; padding: 8px 0 28px; font-size: 14px; }
.filter-link { color: var(--accent); }
.filter-link:hover { text-decoration: underline; }
.filter-link.is-active { color: var(--ink); font-weight: 600; }

/* Featured */
.featured { display: block; background: var(--offwhite); border-radius: 12px; padding: 32px; margin-bottom: 8px; }
.featured:hover .featured-title { color: var(--accent); }
.eyebrow { color: var(--accent); font-size: 13px; font-weight: 600; }
.eyebrow-light { color: #cfd8df; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.featured-title { margin: 10px 0 0; font-weight: 600; font-size: 30px; letter-spacing: -0.01em; line-height: 1.15; }
.featured-summary { margin: 12px 0 16px; font-size: 17px; color: var(--ink-soft); max-width: 760px; }

/* Section */
.section-title { margin: 40px 0 4px; font-weight: 600; font-size: 30px; letter-spacing: -0.01em; }

/* News list */
.news-list { display: flex; flex-direction: column; }
.news-card { padding: 24px 0; border-bottom: 1px solid var(--hair); }
.news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.news-source { color: var(--ink); }
.news-meta .sep { color: var(--hair); }
.news-cat { color: var(--accent); }
.news-cat:hover { text-decoration: underline; }
.news-title { margin: 6px 0 0; font-weight: 600; font-size: 22px; line-height: 1.25; letter-spacing: -0.01em; }
.news-title a:hover { color: var(--accent); }
.news-summary { margin: 6px 0 10px; font-size: 16px; color: var(--ink-soft); }
.news-more { font-size: 14px; color: var(--accent); }
.news-more:hover { text-decoration: underline; }

.load-more { display: flex; justify-content: center; padding: 24px 0 56px; }
.load-more a { color: var(--accent); font-weight: 600; }
.load-more a:hover { text-decoration: underline; }
.empty { padding: 56px 0; text-align: center; color: var(--ink-soft); border: 1px dashed var(--hair); border-radius: 12px; margin: 8px 0 48px; }

/* Article detail */
.article { padding: 48px 24px 72px; max-width: 760px; }
.back-link { color: var(--accent); font-size: 14px; }
.back-link:hover { text-decoration: underline; }
.article-meta { margin-top: 24px; }
.article-title { margin: 12px 0 0; font-weight: 600; font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; }
.article-summary { margin: 20px 0 28px; font-size: 19px; color: var(--ink); }
.article-source-btn { display: inline-block; background: var(--accent); color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 15px; }
.article-source-btn:hover { background: #00507f; }
.article-note { margin: 16px 0 0; font-size: 13px; color: var(--ink-soft); }

/* Newsletter */
.newsletter { background: var(--dark); color: #fff; margin-top: 56px; }
.newsletter-inner { padding: 64px 24px; }
.newsletter-title { margin: 8px 0 0; font-weight: 600; font-size: 30px; letter-spacing: -0.01em; }
.newsletter-sub { margin: 12px 0 24px; color: #c9c9c9; max-width: 560px; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-input { width: 340px; max-width: 100%; padding: 14px 16px; border: 0; border-radius: 8px; font: inherit; }
.newsletter-btn { padding: 14px 24px; border: 0; border-radius: 8px; background: var(--accent); color: #fff; font: inherit; font-weight: 600; cursor: pointer; }
.newsletter-btn:hover { background: #00507f; }
.newsletter-done { font-size: 17px; }
.newsletter-error { color: #ffb3b0; }

/* Footer */
.site-footer { background: #000; color: #fff; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding: 28px 24px; font-size: 14px; }
.footer-links { color: #c9c9c9; }

/* Responsive */
@media (max-width: 640px) {
  .hero { padding: 48px 0 24px; }
  .hero-title { font-size: 36px; }
  .featured { padding: 24px; }
  .featured-title { font-size: 24px; }
  .article-title { font-size: 30px; }
  .site-nav { gap: 14px; font-size: 13px; }
  .wordmark-sub { display: none; }
}
