:root {
  --brand-black: #111111;
  --brand-yellow: #f7c948;
  --brand-white: #ffffff;
  --paper: #f6f6f1;
  --line: #dcdcdc;
  --muted: #66706a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: #242938;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  background: var(--brand-black);
  color: var(--brand-white);
}

.site-header-inner,
.site-footer-inner,
.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}

.brand-link img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--brand-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a[aria-current="page"] {
  color: var(--brand-yellow);
}

.page-shell {
  padding: 42px 0 56px;
}

.section-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0;
  color: #806300;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: var(--brand-black);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
}

.dek {
  max-width: 760px;
  margin: 0;
  color: #536071;
  font-size: 18px;
}

.article-list {
  display: grid;
  gap: 14px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid #d1c38a;
  border-radius: 8px;
  background: #fff8d8;
}

.feature-band h2 {
  margin: 4px 0 8px;
  color: var(--brand-black);
  font-size: 26px;
  line-height: 1.14;
}

.feature-band p {
  margin: 0;
  color: #536071;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--brand-black);
  color: var(--brand-white);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.topic-strip,
.article-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-strip {
  margin-top: 6px;
}

.topic-strip a,
.article-topic-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--brand-white);
  color: var(--brand-black);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.article-topic-links {
  margin-top: 28px;
}

.article-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand-white);
  text-decoration: none;
}

.article-card small,
.article-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-card strong {
  color: var(--brand-black);
  font-size: 22px;
  line-height: 1.12;
}

.article-card p {
  margin: 0;
  color: #536071;
}

.article {
  max-width: 760px;
}

.article p {
  margin: 18px 0;
  font-size: 18px;
}

.article ul {
  margin: 16px 0 22px;
  padding-left: 24px;
  font-size: 18px;
}

.article li {
  margin: 9px 0;
}

.article h2 {
  margin: 32px 0 12px;
  font-size: 28px;
  line-height: 1.12;
}

.back-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--brand-black);
  font-weight: 900;
  text-decoration: none;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--brand-white);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 720px) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .button-link {
    width: 100%;
  }
}
