:root {
  --color-ink: #17212b;
  --color-muted: #66717d;
  --color-light: #f5f8fa;
  --color-border: #dce4e9;
  --color-brand: #146c94;
  --color-brand-dark: #0d3f5c;
  --color-accent: #e6a23c;
  --color-accent-light: #fff4df;
  --color-white: #ffffff;

  --radius-small: 0.5rem;
  --radius-medium: 1rem;
  --radius-large: 1.5rem;

  --shadow-soft: 0 0.75rem 2rem rgba(20, 45, 65, 0.08);
  --shadow-card: 0 1rem 3rem rgba(20, 45, 65, 0.1);

  --content-width: 1180px;
  --reading-width: 760px;
}

/* Base article layout */

.info-page {
  color: var(--color-ink);
  background: var(--color-white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.7;
}

.info-page *,
.info-page *::before,
.info-page *::after {
  box-sizing: border-box;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 1.5rem clamp(4rem, 8vw, 7rem);
  color: var(--color-white);
  background:
    linear-gradient(120deg, rgba(8, 42, 64, 0.96), rgba(20, 108, 148, 0.86)),
    url("/images/network-hero.webp") center / cover;
}

.article-hero__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.article-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.25rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.article-hero__intro {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-hero .eyebrow {
  color: #a9e4ff;
}

/* Main two-column layout */

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(2rem, 6vw, 5rem);
  width: min(100% - 3rem, var(--content-width));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.article-content {
  min-width: 0;
}

.article-sidebar {
  align-self: start;
  position: sticky;
  top: 2rem;
  display: grid;
  gap: 1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.article-meta span {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-light);
}

/* Table of contents */

.article-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 3.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-light);
  font-size: 0.9rem;
}

.article-toc strong {
  margin-right: 0.5rem;
  color: var(--color-ink);
}

.article-toc a {
  color: var(--color-brand-dark);
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--color-brand);
  text-decoration: underline;
}

/* Typography */

.article-content h2,
.article-content h3 {
  color: var(--color-ink);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.article-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.article-content h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.article-content p {
  margin: 0 0 1.25rem;
}

.article-content a {
  color: var(--color-brand);
}

.article-introduction {
  max-width: var(--reading-width);
  margin-bottom: 3rem;
}

.lead {
  color: var(--color-ink);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.6;
}

/* Images */

.article-image {
  margin: 3rem 0;
}

.article-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.article-image figcaption {
  margin-top: 0.75rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  text-align: center;
}

.article-image--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Section headings */

.section-heading {
  max-width: var(--reading-width);
  margin: 5rem 0 2rem;
}

.section-heading p:last-child {
  color: var(--color-muted);
}

/* Numbered security cards */

.security-list {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: security-item;
}

.security-card {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  counter-increment: security-item;
}

.security-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 4px solid var(--color-brand);
  pointer-events: none;
}

.security-card__number {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-brand-dark);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.card-label {
  margin-bottom: 0.35rem !important;
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-card__body > p:not(.card-label) {
  color: var(--color-muted);
}

.action-box {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: var(--color-accent-light);
}

.action-box strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-ink);
}

.action-box p {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.95rem;
}

/* Callouts */

.article-callout {
  display: flex;
  gap: 1rem;
  margin: 3rem 0;
  padding: 1.5rem;
  border-radius: var(--radius-medium);
}

.article-callout h2 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.article-callout p {
  margin-bottom: 0;
}

.article-callout__icon {
  display: grid;
  flex: 0 0 2.25rem;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-brand);
  font-weight: 800;
}

.article-callout--accent {
  background: var(--color-accent-light);
}

/* Sidebar */

.sidebar-card {
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  background: var(--color-brand-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.sidebar-card h2 {
  margin: 0 0 1.25rem;
  font-size: 1.4rem;
  line-height: 1.25;
}

.sidebar-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.sidebar-card--plain {
  color: var(--color-ink);
  background: var(--color-light);
}

.sidebar-card--plain a {
  display: block;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-brand-dark);
  font-size: 0.9rem;
  text-decoration: none;
}

.sidebar-card--plain a:hover,
.sidebar-card--plain a:focus-visible {
  color: var(--color-brand);
}

/* Buttons and CTA */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none !important;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--dark {
  color: var(--color-white) !important;
  background: var(--color-brand);
}

.button--light {
  color: var(--color-brand-dark) !important;
  background: var(--color-white);
}

.article-cta {
  margin-top: 5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-large);
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(13, 63, 92, 0.98), rgba(20, 108, 148, 0.94)),
    url("/images/security-pattern.webp") center / cover;
}

.article-cta h2 {
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.article-cta p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}

.article-conclusion {
  max-width: var(--reading-width);
  margin-top: 5rem;
}

/* Accessibility */

.info-page a:focus-visible,
.info-page button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* Responsive layout */

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .article-layout {
    width: min(100% - 2rem, var(--content-width));
    padding-top: 2.5rem;
  }

  .article-hero {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .article-toc {
    display: block;
  }

  .article-toc strong,
  .article-toc a {
    display: block;
    margin: 0.35rem 0;
  }

  .security-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .security-card__number {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1rem;
  }

  .article-image--split,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-callout {
    align-items: flex-start;
  }
}

.security-card__body ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--color-muted);
}

.security-card__body li::marker {
  color: var(--color-brand);
}

.article-priority-panel {
  margin-top: 5rem;
}

.article-priority-panel .section-heading {
  margin-top: 0;
}

.article-priority-panel .checklist {
  margin-bottom: 0;
}

.network-figure {
  overflow: hidden;
}

.network-figure svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.response-figure {
  overflow: hidden;
}

.response-figure svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.response-list .security-card::before {
  border-top-color: #b94a48;
}

.response-list .security-card__number {
  background: #8f302f;
}

.response-list .action-box {
  border-left-color: #b94a48;
  background: #fff0ef;
}

.article-timeline-section {
  margin-top: 5rem;
}

.article-timeline {
  max-width: var(--reading-width);
}

.incident-timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.incident-timeline::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.25rem;
  width: 2px;
  background: var(--color-border);
}

.timeline-event {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.timeline-event__marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 5px solid var(--color-white);
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-brand);
  box-shadow: 0 0 0 1px var(--color-border);
  font-size: 0.75rem;
  font-weight: 800;
}

.timeline-event__content {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.timeline-event__content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.timeline-event__content p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

@media (max-width: 620px) {
  .incident-timeline::before {
    left: 1rem;
  }

  .timeline-event {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .timeline-event__marker {
    width: 2rem;
    height: 2rem;
    font-size: 0.65rem;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(13, 63, 92, 0.98), rgba(20, 108, 148, 0.96)),
    url("/images/security-pattern.webp") center / cover;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(169, 228, 255, 0.14);
  border-radius: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 3.5rem;
}

.site-footer .footer-title {
  margin: 0 0 1.15rem;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer .footer-grid > :first-child .footer-title {
  color: #a9e4ff;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: none;
}

.site-footer p {
  max-width: 24rem;
  margin: 0 0 1.25rem;
  line-height: 1.7;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-white);
}

.site-footer ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-footer li a::before {
  content: "→";
  color: #a9e4ff;
  opacity: 0;
  transform: translateX(-0.35rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-footer li a:hover::before,
.site-footer li a:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.site-footer .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  margin-top: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  color: var(--color-brand-dark);
  background: var(--color-white);
  font-size: 0.9rem;
  font-weight: 750;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  color: var(--color-brand-dark);
  background: #a9e4ff;
  transform: translateY(-2px);
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
}

.site-footer .footer-bottom p {
  max-width: none;
  margin: 0;
}

.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus-visible {
  color: var(--color-white);
}

@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer .footer-grid > :first-child {
    grid-column: auto;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}

/* Advanced Investigation Page */
.advanced-incident-page .article-hero {
  background:
    linear-gradient(120deg, rgba(65, 19, 25, 0.97), rgba(143, 48, 47, 0.9)),
    url("/images/security-pattern.webp") center / cover;
}

.advanced-incident-page .article-hero .eyebrow {
  color: #ffd2ce;
}

.advanced-incident-page .article-content code {
  padding: 0.12rem 0.35rem;
  border-radius: 0.3rem;
  color: var(--color-brand-dark);
  background: var(--color-light);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.88em;
}

.command-warning {
  margin: 2rem 0;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid #b94a48;
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  color: var(--color-ink);
  background: #fff0ef;
}

.command-warning strong {
  display: block;
  margin-bottom: 0.3rem;
}

.command-group {
  margin: 2rem 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.command-group__header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.command-group__header .eyebrow {
  margin-bottom: 0.5rem;
}

.command-group__header h3 {
  margin-bottom: 0.75rem;
}

.command-group pre {
  max-width: 100%;
  margin: 1rem 1.5rem;
  padding: 1.25rem;
  overflow-x: auto;
  border: 1px solid rgba(169, 228, 255, 0.2);
  border-radius: var(--radius-medium);
  color: #d9f3ff;
  background: #102b3b;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.86rem;
  line-height: 1.65;
  tab-size: 2;
  white-space: pre;
}

.command-group pre code {
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
}

.command-explanation {
  margin: 0 1.5rem 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-medium);
  background: var(--color-light);
}

.command-explanation h4 {
  margin: 0 0 0.65rem;
  color: var(--color-ink);
  font-size: 1rem;
}

.command-explanation p:last-child {
  margin-bottom: 0;
}

.command-explanation ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-muted);
}

.command-explanation li::marker {
  color: var(--color-brand);
}

.advanced-incident-page .article-callout--accent {
  border: 1px solid rgba(230, 162, 60, 0.3);
}

.advanced-incident-page .article-cta {
  background:
    linear-gradient(135deg, rgba(65, 19, 25, 0.98), rgba(143, 48, 47, 0.95)),
    url("/images/security-pattern.webp") center / cover;
}

.advanced-incident-page .article-cta .eyebrow {
  color: #ffd2ce;
}

@media (max-width: 620px) {
  .command-group__header {
    padding: 1.25rem 1rem 0.25rem;
  }

  .command-group pre {
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 1rem;
    font-size: 0.78rem;
  }

  .command-explanation {
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 1rem;
  }
}

/* Optional Light/Dark Mode */
.info-page {
  color-scheme: light;
}

.info-page.theme-dark {
  --color-ink: #edf7fb;
  --color-muted: #a9bdc8;
  --color-light: #142733;
  --color-border: #2a4655;
  --color-brand: #67c8f0;
  --color-brand-dark: #a9e4ff;
  --color-accent: #f0b85b;
  --color-accent-light: #352817;
  --color-white: #0d1b24;
  --shadow-soft: 0 0.75rem 2rem rgba(0, 0, 0, 0.24);
  --shadow-card: 0 1rem 3rem rgba(0, 0, 0, 0.32);

  color-scheme: dark;
}

.info-page.theme-dark .article-hero {
  background:
    linear-gradient(120deg, rgba(4, 20, 30, 0.98), rgba(8, 67, 91, 0.94)),
    url("/images/network-hero.webp") center / cover;
}

.info-page.theme-dark .article-content a,
.info-page.theme-dark .article-toc a {
  color: #8cdbfa;
}

.info-page.theme-dark .article-meta span,
.info-page.theme-dark .article-toc,
.info-page.theme-dark .command-explanation {
  background: #142733;
  border-color: #2a4655;
}

.info-page.theme-dark .security-card,
.info-page.theme-dark .timeline-event__content,
.info-page.theme-dark .command-group {
  background: #10212c;
  border-color: #2a4655;
}

.info-page.theme-dark .article-content h2,
.info-page.theme-dark .article-content h3,
.info-page.theme-dark .article-content h4,
.info-page.theme-dark .action-box strong {
  color: #edf7fb;
}

.info-page.theme-dark .article-content p,
.info-page.theme-dark .command-explanation p,
.info-page.theme-dark .command-explanation li {
  color: #c2d5de;
}

.info-page.theme-dark .article-callout--accent,
.info-page.theme-dark .command-warning {
  background: #352817;
  border-color: #c58c37;
}

.info-page.theme-dark .article-cta {
  background:
    linear-gradient(135deg, rgba(4, 20, 30, 0.98), rgba(8, 67, 91, 0.96)),
    url("/images/security-pattern.webp") center / cover;
}

.info-page.theme-dark .button--dark {
  color: #07141c !important;
  background: #8cdbfa;
}

.info-page.theme-dark .button--light {
  color: #07141c !important;
  background: #edf7fb;
}

/*-- System Light/Dark Preference --*/
/*
@media (prefers-color-scheme: dark) {
  .info-page:not(.theme-light) {
    --color-ink: #edf7fb;
    --color-muted: #a9bdc8;
    --color-light: #142733;
    --color-border: #2a4655;
    --color-brand: #67c8f0;
    --color-brand-dark: #a9e4ff;
    --color-accent: #f0b85b;
    --color-accent-light: #352817;
    --color-white: #0d1b24;
    --shadow-soft: 0 0.75rem 2rem rgba(0, 0, 0, 0.24);
    --shadow-card: 0 1rem 3rem rgba(0, 0, 0, 0.32);

    color-scheme: dark;
  }

  .info-page:not(.theme-light) .article-meta span,
  .info-page:not(.theme-light) .article-toc,
  .info-page:not(.theme-light) .command-explanation {
    background: #142733;
    border-color: #2a4655;
  }

  .info-page:not(.theme-light) .security-card,
  .info-page:not(.theme-light) .timeline-event__content,
  .info-page:not(.theme-light) .command-group {
    background: #10212c;
    border-color: #2a4655;
  }

  .info-page:not(.theme-light) .article-content h2,
  .info-page:not(.theme-light) .article-content h3,
  .info-page:not(.theme-light) .article-content h4 {
    color: #edf7fb;
  }

  .info-page:not(.theme-light) .article-content p,
  .info-page:not(.theme-light) .command-explanation p,
  .info-page:not(.theme-light) .command-explanation li {
    color: #c2d5de;
  }
}

/* Manual Light/Dark Toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.6rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-ink);
  background: var(--color-white);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--color-brand-dark);
  border-color: var(--color-brand);
}

.theme-toggle__moon {
  display: none;
}

.info-page.theme-dark ~ .theme-toggle .theme-toggle__sun {
  display: none;
}

.info-page.theme-dark ~ .theme-toggle .theme-toggle__moon {
  display: inline;
}
