:root {
  --bg: #09111f;
  --bg-soft: #101b2f;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #172033;
  --muted: #66748a;
  --line: #dce4ef;
  --primary: #63e6be;
  --primary-dark: #0f9f7b;
  --accent: #8aa7ff;
  --warning: #ffd166;
  --danger: #ff8a8a;
  --shadow: 0 24px 70px rgba(9, 17, 31, 0.16);
  --hero-shadow: 0 24px 70px rgba(9, 17, 31, 0.16);
  --card-bg: #ffffff;
  --card-bg-soft: #f4f7fb;
  --table-header-bg: #eaf0fb;
  --table-header-text: #22304a;
  --header-bg: rgba(9, 17, 31, 0.94);
  --filter-bg: #ffffff;
  --filter-active-bg: #e5fff6;
  --filter-active-text: #075642;
  --hero-text-color: rgba(255, 255, 255, 0.75);
  --brand-text: #ffffff;
  --nav-link-color: rgba(255, 255, 255, 0.78);
  --card-icon-bg: #e5fff6;
  --summary-badge-bg: #fff5da;
  --summary-badge-text: #805600;
  --worksheet-border: #dce4ef;
  --section-alt-bg: #f4f7fb;
  color-scheme: light dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root:not(.light) {
    --surface: #0d1524;
    --surface-soft: #111b2e;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --line: #1e293b;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    --hero-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    --card-bg: #111b2e;
    --card-bg-soft: #0d1524;
    --table-header-bg: #1a2540;
    --table-header-text: #c8d0df;
    --filter-bg: #0d1524;
    --filter-active-bg: #0a2d1e;
    --filter-active-text: #63e6be;
    --card-icon-bg: #0a2d1e;
    --summary-badge-bg: #2a2410;
    --summary-badge-text: #ffd166;
    --worksheet-border: #1e293b;
    --section-alt-bg: #0a1426;
    --header-bg: rgba(9, 14, 26, 0.96);
    --hero-text-color: rgba(226, 232, 240, 0.7);
    --brand-text: #e2e8f0;
    --nav-link-color: rgba(226, 232, 240, 0.7);
  }
}

:root.dark {
  --surface: #0d1524;
  --surface-soft: #111b2e;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --line: #1e293b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --hero-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --card-bg: #111b2e;
  --card-bg-soft: #0d1524;
  --table-header-bg: #1a2540;
  --table-header-text: #c8d0df;
  --filter-bg: #0d1524;
  --filter-active-bg: #0a2d1e;
  --filter-active-text: #63e6be;
  --card-icon-bg: #0a2d1e;
  --summary-badge-bg: #2a2410;
  --summary-badge-text: #ffd166;
  --worksheet-border: #1e293b;
  --section-alt-bg: #0a1426;
  --header-bg: rgba(9, 14, 26, 0.96);
  --hero-text-color: rgba(226, 232, 240, 0.7);
  --brand-text: #e2e8f0;
  --nav-link-color: rgba(226, 232, 240, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--warning);
  outline-offset: 4px;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--warning);
  color: #172033;
  padding: 10px 16px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav,
.brand,
.nav-links,
.hero-actions,
.filter-group,
.footer-links {
  display: flex;
  align-items: center;
}

.nav {
  min-height: 72px;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg);
  font-size: 0.85rem;
}

.nav-links {
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  font-weight: 700;
}

.nav-links a {
  color: var(--nav-link-color);
  font-size: 0.9rem;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  padding: 8px 14px;
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.theme-icon-sun,
.theme-icon-moon {
  display: block;
}

:root.dark .theme-icon-sun,
:root:not(.dark) .theme-icon-moon {
  display: none;
}

.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 12% 12%, rgba(99, 230, 190, 0.24), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(138, 167, 255, 0.22), transparent 24rem),
    var(--bg);
  color: #ffffff;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-text,
.section-heading p,
.hero-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.12rem;
}

.hero-text {
  margin-top: 24px;
}

.hero-actions,
.filter-group {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--primary);
  color: #06120d;
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card,
.feature-card,
.checklist-card,
.guide-card,
.guide-detail-card,
.tool-card,
.rubric-card {
  border: 1px solid rgba(220, 228, 239, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--section-alt-bg);
}

.feature-grid,
.guide-grid,
.guide-detail-grid,
.worksheet-grid,
.example-grid,
.summary-grid,
.tool-grid,
.rubric-grid,
.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.guide-card,
.guide-detail-card,
.worksheet-card,
.example-card,
.summary-card,
.tool-card,
.rubric-card,
.qa-panel {
  padding: 26px;
  background: var(--surface);
}

.feature-card p,
.guide-card p,
.worksheet-card p,
.worksheet-card li,
.example-card p,
.example-card li,
.guide-detail-card li,
.qa-panel p,
.tool-card p,
.rubric-card p,
.section-heading p,
.split > div > p,
.standards-list {
  color: var(--muted);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--card-icon-bg);
  color: var(--primary-dark);
  font-weight: 900;
}

.feature-card h2,
.guide-card h3,
.tool-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.worksheet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.worksheet-card {
  border: 2px dashed var(--worksheet-border);
  border-radius: 28px;
  box-shadow: none;
}

.worksheet-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.worksheet-card p {
  margin-bottom: 16px;
}

.worksheet-card ul {
  margin: 0;
  padding-left: 20px;
}

.worksheet-card li + li {
  margin-top: 10px;
}

.example-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.example-card {
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.example-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.example-card p {
  margin-bottom: 16px;
}

.example-card ul {
  margin: 0;
  padding-left: 20px;
}

.example-card li + li {
  margin-top: 10px;
}

.summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.summary-card {
  border: 1px solid var(--line);
  border-top: 6px solid var(--primary-dark);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.summary-card span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--summary-badge-bg);
  color: var(--summary-badge-text);
  padding: 6px 12px;
  font-weight: 900;
  font-size: 0.86rem;
}

.summary-card h3 {
  margin-bottom: 12px;
}

.summary-card p {
  color: var(--muted);
}

.summary-card p + p {
  margin-top: 12px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading p {
  margin-top: 16px;
}

.guide-section {
  margin-top: 42px;
}

.guide-section > p {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--muted);
}

.guide-detail-card h3,
.guide-detail-card h4 {
  margin: 0 0 14px;
  font-size: 1.08rem;
}

.guide-detail-card ul {
  margin: 0;
  padding-left: 20px;
}

.guide-detail-card li + li {
  margin-top: 10px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--filter-bg);
  color: var(--text);
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active {
  border-color: var(--primary-dark);
  background: var(--filter-active-bg);
  color: var(--filter-active-text);
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-weight: 900;
}

.checklist-card {
  padding: 26px;
  background: var(--card-bg);
}

.checklist-items {
  display: grid;
  gap: 12px;
}

.check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-bg-soft);
}

.check-item input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary-dark);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

thead th {
  background: var(--table-header-bg);
  color: var(--table-header-text);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.risk-list {
  display: grid;
  gap: 14px;
}

.risk-list article,
.guardrail-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card-bg);
}

.risk-list span,
.guardrail-list span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--summary-badge-bg);
  color: var(--summary-badge-text);
  font-weight: 900;
}

.guardrail-list {
  display: grid;
  gap: 14px;
}

.tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.qa-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qa-panel {
  border: 1px solid rgba(220, 228, 239, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.qa-panel h3 {
  margin-bottom: 18px;
}

.tool-card p + p {
  margin-top: 10px;
}

.rubric-card span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--card-icon-bg);
  color: var(--filter-active-text);
  padding: 6px 12px;
  font-weight: 900;
  font-size: 0.86rem;
}

.metadata-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 28px;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card-bg-soft);
}

.metadata-panel h3 {
  margin-bottom: 12px;
}

.metadata-panel p,
.metadata-panel dd {
  color: var(--muted);
}

.metadata-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.metadata-panel dl > div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.metadata-panel dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.metadata-panel dt {
  margin-bottom: 4px;
  font-weight: 900;
}

.metadata-panel dd {
  margin: 0;
}

.glossary-panel {
  margin-top: 0;
}

.standards-list {
  margin: 0;
  padding: 0 0 0 20px;
}

.standards-list li + li {
  margin-top: 12px;
}

.site-footer {
  padding: 42px 0;
  background: var(--bg);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.site-footer .brand {
  width: fit-content;
  margin-bottom: 12px;
  color: var(--brand-text);
}

.footer-links {
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    padding: 16px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    padding: 18px;
    border-radius: 18px;
    background: #111a2e;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .guide-grid,
  .guide-detail-grid,
  .worksheet-grid,
  .example-grid,
  .summary-grid,
  .tool-grid,
  .rubric-grid,
  .qa-grid,
  .metadata-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 76px 0 64px;
  }

  .section {
    padding: 64px 0;
  }
}

@media print {
  html {
    scroll-behavior: auto;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .site-header,
  .hero-actions,
  .filter-group,
  .site-footer,
  .skip-link {
    display: none;
  }

  .hero,
  .section,
  .section.alt {
    padding: 24px 0;
    background: #ffffff;
    color: #000000;
  }

  .container {
    width: 100%;
  }

  .hero-grid,
  .split,
  .feature-grid,
  .guide-grid,
  .guide-detail-grid,
  .worksheet-grid,
  .example-grid,
  .summary-grid,
  .tool-grid,
  .rubric-grid,
  .qa-grid,
  .metadata-panel {
    display: block;
  }

  .hero-card,
  .feature-card,
  .checklist-card,
  .guide-card,
  .guide-detail-card,
  .worksheet-card,
  .example-card,
  .summary-card,
  .tool-card,
  .rubric-card,
  .qa-panel,
  .metadata-panel,
  .table-wrap {
    break-inside: avoid;
    margin-bottom: 16px;
    border-color: #000000;
    box-shadow: none;
  }

  a {
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Animations and micro-interactions */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.guide-card,
.guide-detail-card,
.worksheet-card,
.example-card,
.summary-card,
.tool-card,
.rubric-card {
  animation: fadeInUp 0.5s ease both;
}

.feature-card:nth-child(1),
.guide-card:nth-child(1),
.guide-detail-card:nth-child(1),
.worksheet-card:nth-child(1),
.example-card:nth-child(1),
.summary-card:nth-child(1),
.tool-card:nth-child(1),
.rubric-card:nth-child(1) {
  animation-delay: 0.05s;
}

.feature-card:nth-child(2),
.guide-card:nth-child(2),
.guide-detail-card:nth-child(2),
.worksheet-card:nth-child(2),
.example-card:nth-child(2),
.summary-card:nth-child(2),
.tool-card:nth-child(2),
.rubric-card:nth-child(2) {
  animation-delay: 0.12s;
}

.feature-card:nth-child(3),
.guide-card:nth-child(3),
.guide-detail-card:nth-child(3),
.worksheet-card:nth-child(3),
.example-card:nth-child(3),
.summary-card:nth-child(3),
.tool-card:nth-child(3),
.rubric-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(4),
.guide-card:nth-child(4),
.guide-detail-card:nth-child(4),
.worksheet-card:nth-child(4),
.example-card:nth-child(4),
.summary-card:nth-child(4),
.tool-card:nth-child(4),
.rubric-card:nth-child(4) {
  animation-delay: 0.28s;
}

.feature-card:hover,
.guide-card:hover,
.guide-detail-card:hover,
.worksheet-card:hover,
.example-card:hover,
.summary-card:hover,
.tool-card:hover,
.rubric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 80px rgba(9, 17, 31, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

:root.dark .feature-card:hover,
:root.dark .guide-card:hover,
:root.dark .guide-detail-card:hover,
:root.dark .worksheet-card:hover,
:root.dark .example-card:hover,
:root.dark .summary-card:hover,
:root.dark .tool-card:hover,
:root.dark .rubric-card:hover {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.check-item {
  transition: border-color 0.2s ease, background 0.2s ease;
}

.check-item:has(input:checked) {
  border-color: var(--primary-dark);
  background: var(--card-icon-bg);
}

.nav-links {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 860px) {
  .nav-links.open {
    animation: fadeInUp 0.2s ease both;
  }
}

/* Article pages */
.article-page {
  max-width: 760px;
  padding: 2.5rem 0 4rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--primary-dark);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.article-header {
  margin-bottom: 1.5rem;
}

.article-lead {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
}

.article-disclaimer {
  background: var(--card-bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--warning);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.article-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-body p,
.article-body li {
  line-height: 1.7;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.related-articles {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.related-links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.related-links a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}

.related-links a:hover {
  text-decoration: underline;
}

.article-back {
  margin-top: 2rem;
}

.section-intro {
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.6;
}

.cross-site-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.cross-site-note a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.cross-site-note a:hover {
  text-decoration: underline;
}

.articles-hub-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.article-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.article-card h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.article-card h3 a {
  color: inherit;
  text-decoration: none;
}

.article-card h3 a:hover {
  color: var(--primary-dark);
}

.article-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.article-card .month-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-dark);
}
