:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --surface: #ffffff;
  --ink: #0e111b;
  --subtle: #5c6275;
  --accent: #3b47ff;
  --accent-soft: rgba(59, 71, 255, 0.12);
  --border: rgba(14, 17, 27, 0.08);
  --pill-start: #dce9ff;
  --pill-end: #f5f3ff;
  --pill-ink: #0f1937;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 1rem;
}

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

p {
  margin: 0;
}

h1, h2, h3 {
  font-family: "Newsreader", "Times New Roman", serif;
  margin: 0;
}

main {
  padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 0.75rem 0;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.brand-logo {
  display: block;
  height: clamp(36px, 5vw, 54px);
  width: auto;
}

.brand h1 a {
  color: inherit;
  text-decoration: none;
}

.brand .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--subtle);
}

.tagline {
  margin-top: 0.5rem;
  max-width: 38rem;
  color: var(--subtle);
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.primary-nav a {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.primary-nav .cta {
  background: var(--accent);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.nav-toggle span {
  margin-left: 0.5rem;
}

.hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 3rem;
}

.hero img {
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  background: var(--surface);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 60px rgba(15, 18, 30, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--pill-start), var(--pill-end));
  color: var(--pill-ink);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  border: 1px solid rgba(15, 25, 55, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.hero-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
}

.dek {
  color: var(--subtle);
  margin-bottom: 1rem;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--subtle);
  margin-bottom: 1.5rem;
}

.hero-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-excerpt {
  color: var(--ink);
  line-height: 1.7;
  max-width: 600px;
}

.hero-excerpt p {
  margin-bottom: 0.8rem;
}

.hero-excerpt p:last-child {
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  align-items: center;
}

.hero .social-links {
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent);
}

.social-link img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.social-link:hover img {
  opacity: 0.85;
}

.site-footer .social-link {
  color: #e8ecff;
}

.site-footer .social-link img {
  filter: brightness(1.4);
}

.inline-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: var(--accent);
}

.inline-social-link img {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.hero-links .primary {
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  box-shadow: 0 18px 40px rgba(59, 71, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(59, 71, 255, 0.25);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.hero-links .ghost {
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
}

.hero-links .primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(59, 71, 255, 0.32);
}

.hero-links .primary:active {
  transform: translateY(0);
  opacity: 0.9;
}

.button:hover,
.button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(59, 71, 255, 0.32);
}

.button:active,
.button.secondary:active {
  transform: translateY(0);
  opacity: 0.9;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.section-heading .description {
  color: var(--subtle);
  font-size: 0.95rem;
  max-width: 42rem;
}

.site-links {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border);
}

.site-links article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: border 0.2s, background 0.2s, transform 0.2s;
}

.site-links article:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-3px);
}

.site-links article a {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.site-links article a::after {
  content: "→";
  font-size: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--subtle);
  font-size: 0.68rem;
  background: rgba(59, 71, 255, 0.08);
  border: 1px solid rgba(59, 71, 255, 0.12);
}

.latest {
  margin-bottom: 3rem;
}

.latest-page-intro {
  margin-bottom: 2.5rem;
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(15, 18, 30, 0.08);
}

.latest-page-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.story-card {
  background: var(--surface);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.story-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.story-card img {
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}

.story-body {
  padding: 1.25rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.story-card h3 {
  font-size: 1.3rem;
}

.story-card .meta {
  font-size: 0.85rem;
  color: var(--subtle);
  display: flex;
  justify-content: space-between;
}

.briefings {
  margin-bottom: 3rem;
}

.briefings ol {
  list-style: decimal-leading-zero;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.briefings li {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--border);
}

.deep-dives, .market-pulse, .editorial, .newsletter {
  margin-bottom: 3rem;
}

.deep-grid, .pulse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.deep-grid article,
.pulse-grid article {
  background: var(--surface);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.deep-grid a {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
}

.pulse-grid .stat {
  font-size: 2rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.editorial article {
  background: var(--surface);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.newsletter {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter .pill {
  background: linear-gradient(120deg, var(--accent-soft), rgba(255, 255, 255, 0.8));
  color: var(--ink);
  letter-spacing: 0.2em;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

button {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.eye.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(59, 71, 255, 0.35);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 12px 30px rgba(59, 71, 255, 0.2);
}

.footnote {
  font-size: 0.85rem;
  color: var(--subtle);
}

.site-footer {
  padding: 2rem clamp(1.5rem, 5vw, 4rem) 3rem;
  background: #0e111b;
  color: #e8ecff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer a {
  color: inherit;
}

.copyright {
  font-size: 0.85rem;
}

.icon-credit {
  font-size: 0.75rem;
  color: rgba(232, 236, 255, 0.75);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e8ecff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.publisher {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.info-page main {
  padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
}

.page-shell {
  max-width: 960px;
  margin: 0 auto 4rem;
  background: var(--surface);
  padding: clamp(1.75rem, 5vw, 3rem);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(15, 18, 30, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page-shell h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-shell section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.page-shell ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--subtle);
}

.page-shell form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 18, 30, 0.08);
}

.tip-highlight p {
  color: var(--subtle);
}

.tip-form-card {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: var(--surface);
  box-shadow: 0 20px 45px rgba(15, 18, 30, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
}

.coming-soon-pill {
  align-self: flex-start;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(255, 184, 0, 0.15);
  color: #7a4d00;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
}

.page-shell textarea {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  min-height: 160px;
  font-family: inherit;
  font-size: 1rem;
}

.page-shell label {
  font-weight: 600;
  color: var(--ink);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.resource-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
}

.resource-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.support-card {
  margin: 2rem 0;
  padding: 2.5rem 2.25rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(59, 71, 255, 0.15);
  background: linear-gradient(145deg, rgba(59, 71, 255, 0.08), rgba(255, 255, 255, 0.95));
  box-shadow: 0 30px 60px rgba(15, 18, 30, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.support-card h2 {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--subtle);
}

.support-card .cash-handle {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 0;
}

.primary-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #2633ff, #5863ff);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.12em;
  box-shadow: 0 15px 30px rgba(38, 51, 255, 0.25);
}

.support-card .subtext {
  max-width: 32rem;
  color: var(--subtle);
  font-size: 0.9rem;
  line-height: 1.5;
}

.support-photo {
  margin: 2rem 0;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(15, 18, 30, 0.1);
}

.support-photo img {
  border-radius: 0;
  height: 360px;
  object-fit: cover;
  width: 100%;
}

.support-photo figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--subtle);
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 600;
}

.page-shell table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.page-shell table th,
.page-shell table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.page-shell table th {
  font-weight: 600;
  color: var(--subtle);
}

.notice {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: var(--accent-soft);
  color: var(--ink);
}

/* Article detail layout */
body.article-page main {
  padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
}

.article-shell {
  max-width: 900px;
  margin: 0 auto 4rem;
  background: var(--surface);
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(15, 18, 30, 0.08);
}

.article-shell h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.article-excerpt {
  font-size: 1.15rem;
  color: var(--subtle);
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.article-hero {
  margin: 2rem 0;
}

.article-hero img {
  border-radius: 1.25rem;
  width: 100%;
  height: auto;
}

.article-hero figcaption {
  font-size: 0.85rem;
  color: var(--subtle);
  margin-top: 0.5rem;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.05rem;
}

.article-body h2 {
  font-family: "Newsreader", "Times New Roman", serif;
  margin-top: 2rem;
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  color: var(--ink);
  font-style: italic;
  background: var(--accent-soft);
  border-radius: 0 1rem 1rem 0;
}

.article-share,
.article-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.article-share a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 600;
  margin-right: 0.5rem;
  background: rgba(59, 71, 255, 0.08);
  transition: background 0.2s, border 0.2s;
}

.brand .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--subtle);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 71, 255, 0.2);
  background: rgba(59, 71, 255, 0.12);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 600;
  margin-right: 0.5rem;
  background: rgba(59, 71, 255, 0.08);
  transition: background 0.2s, border 0.2s;
}

.share-button img {
  width: 20px;
  height: 20px;
}

.share-button.secondary {
  background: rgba(59, 71, 255, 0.04);
  color: var(--ink);
}

.share-button:hover {
  border-color: var(--accent);
  background: rgba(59, 71, 255, 0.15);
}

.article-related ul {
  padding-left: 1.2rem;
  color: var(--accent);
}

.latest-archive {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 55px rgba(15, 18, 30, 0.08);
  margin-bottom: 3rem;
}

.latest-archive .section-heading {
  margin-bottom: 1.5rem;
}

.latest-archive .subhead {
  color: var(--subtle);
  margin-top: 0.4rem;
}

.latest-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.latest-list-card {
  display: flex;
  gap: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.2rem;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(15, 18, 30, 0.08);
}

.latest-list-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.latest-list-link:hover .latest-list-card {
  box-shadow: 0 14px 34px rgba(15, 18, 30, 0.12);
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.latest-list-card img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 1rem;
}

.latest-list-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.latest-list-body h3 {
  font-size: 1.45rem;
}

.latest-list-body p {
  color: var(--subtle);
}

.latest-list-item .meta {
  font-size: 0.9rem;
  color: var(--subtle);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.latest-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.pagination-container {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.pagination {
  background: var(--surface);
  border-radius: 999px;
  padding: 0.25rem 0.35rem;
  border: 1px solid var(--border);
}

.pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 0.35rem;
}

.pagination li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  color: var(--subtle);
}

.pagination li.is-current a {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pagination a.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .latest-page-intro,
  .latest-archive {
    padding: 1.5rem;
  }

  .latest-list-card {
    flex-direction: column;
  }

  .latest-list-card img {
    width: 100%;
    height: 220px;
  }

  .site-header {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    flex-direction: column;
    gap: 0.5rem;
    border-top: none;
    border-bottom: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .primary-nav.is-open {
    margin-top: 0.75rem;
    max-height: 360px;
    padding-bottom: 0.75rem;
  }

  .story-card .meta {
    flex-direction: column;
    gap: 0.25rem;
  }

  .briefings li {
    flex-direction: column;
  }
}
