@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600;700&family=Inter:wght@400;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --bg-main: #0f2624;
  --bg-panel: #182f2c;
  --bg-deep: #081715;
  --bg-rivet: #102927;
  --gold: #d9a63a;
  --gold-muted: #b8872e;
  --red: #d94324;
  --cream: #f2e6c8;
  --beige: #cbbe9a;
  --muted: #8f9a8f;
  --green: #637f58;
  --border: rgba(217, 166, 58, 0.35);
  --danger-border: rgba(217, 67, 36, 0.45);
  --shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-deep);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(217, 166, 58, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(217, 166, 58, 0.035) 0 1px, transparent 1px 18px),
    var(--bg-main);
  color: var(--cream);
  font-family: "Inter", "Source Sans 3", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.45) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.55) 0 0.8px, transparent 0.9px);
  background-size: 4px 4px, 6px 6px;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 23, 21, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(242, 230, 200, 0.06);
}

.nav {
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  background:
    linear-gradient(90deg, transparent 48%, rgba(8, 23, 21, 0.35) 49% 51%, transparent 52%),
    linear-gradient(180deg, var(--gold), var(--gold-muted));
  color: var(--bg-deep);
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 800;
  box-shadow: inset 0 0 0 3px rgba(8, 23, 21, 0.12);
}

.brand-mark::after {
  content: "AFRICA";
  position: absolute;
  left: 50px;
  top: -3px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  color: var(--gold);
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--beige);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links a:hover {
  color: var(--gold);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.button.secondary,
.button.ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.button:hover {
  filter: brightness(1.06);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 23, 21, 0.98), rgba(15, 38, 36, 0.84) 50%, rgba(8, 23, 21, 0.36)),
    linear-gradient(0deg, var(--bg-deep), rgba(8, 23, 21, 0) 40%),
    url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(217, 166, 58, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 166, 58, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.hero::after {
  content: "PIPELINE NODE 03 / MARKET WATCH";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: rgba(203, 190, 154, 0.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero-inner,
.section-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 20px;
  position: relative;
}

.hero-content {
  max-width: 820px;
}

.hero-carousel {
  position: relative;
  width: min(900px, 100%);
  min-height: 440px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 620ms;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0s;
}

.hero-slide.is-exiting {
  visibility: visible;
  opacity: 0;
  z-index: 0;
  transform: translateY(-22px) scale(1.015);
  filter: blur(7px);
}

.hero-slide .eyebrow,
.hero-slide h1,
.hero-slide .lede,
.hero-slide .hero-actions,
.hero-slide .mini-disclaimer {
  transform: translateY(16px);
  opacity: 0;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .eyebrow,
.hero-slide.is-active h1,
.hero-slide.is-active .lede,
.hero-slide.is-active .hero-actions,
.hero-slide.is-active .mini-disclaimer {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide.is-active h1 {
  transition-delay: 70ms;
}

.hero-slide.is-active .lede {
  transition-delay: 140ms;
}

.hero-slide.is-active .hero-actions {
  transition-delay: 210ms;
}

.hero-slide.is-active .mini-disclaimer {
  transition-delay: 280ms;
}

.hero-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.hero-controls button {
  width: 42px;
  height: 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(203, 190, 154, 0.3);
  cursor: pointer;
}

.hero-controls button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-progress {
  position: relative;
  width: min(280px, 100%);
  height: 2px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(203, 190, 154, 0.24);
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.hero-progress.is-running span {
  animation: heroProgress 5s linear forwards;
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide .eyebrow,
  .hero-slide h1,
  .hero-slide .lede,
  .hero-slide .hero-actions,
  .hero-slide .mini-disclaimer,
  .hero-progress span {
    animation: none;
    transition: none;
    transform: none;
    filter: none;
  }
}

.eyebrow,
.small-label,
.mini-disclaimer,
.note,
.status-card span,
.stat-grid span,
dt,
.article-link span,
.timeline-item span,
.axis-event span {
  color: var(--beige);
  font-family: "IBM Plex Mono", "Space Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cream);
  font-family: "Oswald", "Bebas Neue", "Archivo Black", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 {
  margin-top: 14px;
  font-size: clamp(46px, 8vw, 94px);
  color: var(--cream);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
}

h3 {
  font-size: 21px;
}

p {
  color: var(--beige);
}

.lede {
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(18px, 2.3vw, 24px);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mini-disclaimer,
.note {
  margin-top: 16px;
  color: var(--beige);
}

.section {
  border-top: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(217, 166, 58, 0.08) 0 1px, transparent 1px),
    transparent;
  background-size: 120px 100%;
}

.section.alt {
  background:
    linear-gradient(135deg, rgba(217, 67, 36, 0.05), transparent 34%),
    var(--bg-deep);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold-muted);
}

.section-heading p {
  max-width: 560px;
}

.grid {
  display: grid;
  gap: 16px;
}

.status-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.status-card,
.info-card,
.broker-card,
.form-panel,
.stat-grid article,
.article-link,
.timeline-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(242, 230, 200, 0.045), rgba(8, 23, 21, 0.16)),
    var(--bg-panel);
  box-shadow: var(--shadow);
}

.status-card::before,
.info-card::before,
.broker-card::before,
.form-panel::before,
.stat-grid article::before,
.article-link::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 9px 9px auto auto;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(217, 166, 58, 0.55);
  background: var(--bg-deep);
}

.status-card {
  min-height: 138px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--gold);
}

.status-card strong {
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  line-height: 1.05;
  text-transform: uppercase;
}

.status-card em {
  width: fit-content;
  margin-top: 14px;
  padding: 4px 8px;
  border: 1px solid rgba(203, 190, 154, 0.45);
  border-radius: 3px;
  color: var(--bg-deep);
  background: var(--beige);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-card.pending em {
  background: var(--gold);
}

.status-card.watch em {
  background: var(--green);
  color: var(--cream);
}

.status-card.pending {
  border-color: var(--border);
  border-top-color: var(--gold);
}

.status-card.watch {
  border-top-color: var(--green);
}

.two-col {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.broker-card,
.form-panel,
.article-link,
.timeline-item {
  padding: 24px;
}

.fact-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  position: relative;
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid rgba(217, 166, 58, 0.18);
  color: var(--beige);
}

.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(99, 127, 88, 0.18);
}

.unknown .fact-list li::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 166, 58, 0.16);
}

ul[data-top-countries] {
  position: relative;
  min-height: 220px;
  background:
    radial-gradient(circle at 28% 36%, rgba(217, 166, 58, 0.26) 0 8px, transparent 9px),
    radial-gradient(circle at 58% 42%, rgba(217, 166, 58, 0.2) 0 6px, transparent 7px),
    radial-gradient(circle at 44% 62%, rgba(217, 166, 58, 0.22) 0 5px, transparent 6px),
    linear-gradient(rgba(217, 166, 58, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 166, 58, 0.08) 1px, transparent 1px);
  background-size: auto, auto, auto, 36px 36px, 36px 36px;
}

ul[data-top-countries] li::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 166, 58, 0.16);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}

.badge,
.sponsored,
.plain-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--cream);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge.high {
  border-color: var(--danger-border);
  background: rgba(217, 67, 36, 0.16);
  color: #ffd6ca;
}

.badge.medium {
  border-color: rgba(217, 166, 58, 0.62);
  background: rgba(217, 166, 58, 0.12);
  color: var(--gold);
}

.badge.low {
  border-color: rgba(99, 127, 88, 0.72);
  background: rgba(99, 127, 88, 0.18);
  color: #bfd0a9;
}

.sponsored {
  border-color: var(--danger-border);
  background: var(--red);
  color: var(--cream);
}

.plain-label {
  color: var(--beige);
}

.risk-card {
  border-color: var(--danger-border);
}

.filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
}

label {
  display: grid;
  gap: 7px;
  color: var(--beige);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(217, 166, 58, 0.32);
  border-radius: 4px;
  background: #0a1c1a;
  color: var(--cream);
  padding: 10px 12px;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.broker-card {
  border-top: 4px solid var(--gold-muted);
}

.broker-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.meta-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.broker-card dt,
.broker-card dd,
.meta-list dt,
.meta-list dd {
  margin: 0;
}

.broker-card dd,
.meta-list dd {
  color: var(--cream);
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-grid article {
  padding: 22px;
  border-top: 4px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(217, 166, 58, 0.08), transparent),
    var(--bg-panel);
}

.stat-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  letter-spacing: 0.04em;
}

.timeline-axis {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.timeline-axis::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(217, 166, 58, 0.18));
}

.axis-event {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  padding: 58px 18px 20px;
  border: 1px solid rgba(217, 166, 58, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(242, 230, 200, 0.04), rgba(8, 23, 21, 0.22)),
    var(--bg-panel);
  box-shadow: var(--shadow);
}

.axis-event::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--bg-deep);
  box-shadow: 0 0 0 7px rgba(217, 166, 58, 0.14);
}

.axis-event h3 {
  font-size: 24px;
}

.axis-event p {
  margin: 0;
}

.axis-event b {
  width: fit-content;
  align-self: end;
  padding: 4px 8px;
  border: 1px solid rgba(99, 127, 88, 0.72);
  border-radius: 3px;
  background: rgba(99, 127, 88, 0.18);
  color: #bfd0a9;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.key-details {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: 6px;
  background: var(--bg-deep);
}

.key-details dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 0;
}

.key-details dd {
  margin: 6px 0 0;
  color: var(--cream);
}

.key-details .note {
  margin-bottom: 0;
}

.article-link {
  display: grid;
  gap: 10px;
}

.article-link:hover {
  border-color: rgba(217, 166, 58, 0.74);
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin-top: 34px;
  font-size: clamp(28px, 4vw, 44px);
}

.answer-box {
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  background: var(--bg-panel);
}

.answer-box p {
  margin-bottom: 0;
  color: var(--cream);
  font-size: 20px;
}

.source-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(217, 166, 58, 0.18);
}

.source-list a,
.meta-list a,
.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-list span {
  color: var(--beige);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 22px;
  margin-top: 12px;
  color: var(--gold);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 23, 21, 0.96), rgba(15, 38, 36, 0.84)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center / cover;
  border-bottom: 1px solid var(--border);
}

.page-hero .section-inner {
  padding-top: 92px;
  padding-bottom: 72px;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-item {
  border-left: 5px solid var(--gold);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 26px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--bg-deep);
}

.site-footer {
  background: var(--bg-deep);
  border-top: 3px solid var(--gold-muted);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 20px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--beige);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  color: var(--beige);
  font-size: 13px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.footer-credit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
}

.footer-credit img {
  height: 44px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-credit:hover img {
  opacity: 1;
}

@media (max-width: 900px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 76px 0 auto 0;
    display: none;
    padding: 18px 20px 24px;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: start;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: 720px;
    background-position: center;
  }

  .status-grid,
  .three-col,
  .filters,
  .stat-grid,
  .timeline-axis,
  .key-details dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-axis::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav {
    max-width: 390px;
    margin: 0;
    padding: 0 16px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark::after {
    display: none;
  }

  .hero-inner,
  .section-inner {
    padding: 52px 16px;
  }

  h1 {
    font-size: 34px;
    overflow-wrap: break-word;
  }

  .lede {
    font-size: 18px;
  }

  .hero {
    min-height: 680px;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    max-width: 320px;
  }

  .hero-carousel {
    min-height: 490px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 250px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-heading,
  .footer-grid {
    display: grid;
  }

  .status-grid,
  .two-col,
  .three-col,
  .filters,
  .stat-grid,
  .timeline-axis,
  .key-details dl,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .axis-event {
    min-height: 0;
  }

  .form-grid .full {
    grid-column: auto;
  }
}
