:root {
  color-scheme: dark;
  --bg-top: #131313;
  --bg: #020305;
  --text: rgba(245, 250, 255, 0.94);
  --muted: rgba(190, 215, 255, 0.64);
  --faint: rgba(145, 178, 220, 0.46);
  --line: rgba(100, 175, 255, 0.18);
  --blue: hsl(210, 100%, 56%);
  --blue-soft: rgba(90, 170, 255, 0.58);
  --panel: rgba(10, 18, 32, 0.68);
  --panel-hard: rgba(4, 9, 17, 0.82);
  --max: 1120px;
  --measure: 720px;
  --trans-dur: 0.35s;
  --trans-timing: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

figure {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(60, 140, 255, 0.15), transparent 36rem),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.04), transparent 20rem),
    linear-gradient(to bottom, var(--bg-top), #000 46rem, var(--bg));
  color: var(--text);
  font: 1rem/1.7 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
  text-decoration-color: var(--blue-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

a:hover {
  color: #fff;
  text-decoration-color: rgba(170, 215, 255, 0.98);
}

::selection {
  background: rgba(80, 150, 255, 0.55);
  color: #fff;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 3, 5, 0.74);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 2rem, var(--max));
  min-height: 4.6rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 0.7rem;
  height: 0.7rem;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 4px #fff,
    0 0 12px rgba(90, 170, 255, 0.95),
    0 0 22px rgba(90, 170, 255, 0.48);
}

.brand-text {
  color: rgba(226, 241, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 9px rgba(90, 170, 255, 0.45);
}

.nav-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: #fff;
  text-shadow: 0 0 8px rgba(90, 170, 255, 0.8);
}

main {
  flex: 1;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: var(--measure);
}

.logo {
  position: relative;
  z-index: 2;
  width: min(92vw, 62rem);
  margin: clamp(3rem, 8vw, 5rem) auto 0.85rem;
  text-align: center;
  user-select: none;
}

.logo::after {
  content: "";
  display: block;
  width: min(34rem, 64%);
  height: 2rem;
  margin: 1.25rem auto 0;
  background: radial-gradient(ellipse at center, rgba(80, 150, 255, 0.2), transparent 70%);
  filter: blur(1rem);
}

.logo .brand {
  display: block;
  color: #fff;
  font-family: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  font-size: clamp(2.8rem, 11vw, 8.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-shadow:
    0 0 2px #fff,
    0 0 6px rgba(120, 180, 255, 0.86),
    0 0 14px rgba(80, 150, 255, 0.44);
  filter:
    drop-shadow(0 0 4px rgba(90, 170, 255, 0.78))
    drop-shadow(0 0 10px rgba(90, 170, 255, 0.38));
}

.logo .tagline {
  margin-top: 0.8rem;
  color: rgba(210, 230, 255, 0.9);
  font-size: clamp(0.74rem, 1.4vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-shadow:
    0 0 4px rgba(120, 180, 255, 0.8),
    0 0 10px rgba(80, 150, 255, 0.45);
}

.flicker-fast {
  animation: neonFlicker 2.4s linear infinite;
}

.flicker-slow {
  animation: neonFlicker 3.2s linear infinite;
}

.countdown-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(8.2rem, 17vw, 14rem);
  margin: 0 auto 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 45rem;
  transform-style: preserve-3d;
}

.countdown-label {
  width: min(92vw, 58rem);
  margin: 0 auto 1.5rem;
  color: rgba(190, 215, 255, 0.52);
  font-size: clamp(0.64rem, 1.5vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 7px rgba(90, 170, 255, 0.32);
}

.countdown {
  --s: 100%;
  --l: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.18rem, 0.6vw, 0.7rem);
  width: min(96vw, 58rem);
  min-height: clamp(8rem, 15vw, 13rem);
  color: hsl(210deg, var(--s), var(--l));
  transform-style: preserve-3d;
  animation: camera-pan 30s linear infinite;
}

.digits,
.colon-group {
  position: relative;
  transform-style: preserve-3d;
}

.group {
  display: flex;
  gap: clamp(0.18rem, 0.55vw, 0.7rem);
}

.digit {
  position: relative;
  height: clamp(2.2rem, 6vw, 6.8rem);
  aspect-ratio: 1 / 2;
  filter:
    drop-shadow(0 0 3px currentColor)
    drop-shadow(0 0 7px currentColor);
}

.digit span {
  --act: 0;
  --signX: 1;
  --signY: 1;
  position: absolute;
  background-color: white;
  opacity: calc(0.035 + 0.965 * var(--act));
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.5, 1.15);
  transform: scale(var(--signX), var(--signY));
}

.digit span.end {
  width: 100%;
  height: 10%;
  clip-path: polygon(15% 0%, 7.5% 20%, 25% 100%, 75% 100%, 92.5% 20%, 85% 0%);
}

.digit span.end.top {
  top: 0;
}

.digit span.end.bottom {
  bottom: 0;
  --signY: -1;
}

.digit span.side {
  width: 20%;
  height: 50%;
  clip-path: polygon(0% 15%, 20% 7.5%, 100% 22.5%, 100% 85%, 20% 95%, 0% 90%);
}

.digit span.side.left {
  top: 0;
  left: 0;
}

.digit span.side.left.bottom {
  top: initial;
  bottom: 0;
  --signY: -1;
}

.digit span.side.right {
  top: 0;
  right: 0;
  --signX: -1;
}

.digit span.side.right.bottom {
  top: initial;
  bottom: 0;
  --signY: -1;
}

.digit span.middle {
  top: 45%;
  width: 100%;
  height: 10%;
  clip-path: polygon(22.5% 0%, 6.5% 50%, 22.5% 100%, 77.5% 100%, 93.5% 50%, 77.5% 0%);
}

.digit[data-digit="0"] :not(.middle) { --act: 1; }
.digit[data-digit="1"] .right { --act: 1; }
.digit[data-digit="2"] :not(.top.left, .bottom.right) { --act: 1; }
.digit[data-digit="3"] :not(.left) { --act: 1; }
.digit[data-digit="4"] :not(.end, .bottom.left) { --act: 1; }
.digit[data-digit="5"] :not(.top.right, .bottom.left) { --act: 1; }
.digit[data-digit="6"] :not(.top.right) { --act: 1; }
.digit[data-digit="7"] .top,
.digit[data-digit="7"] .right { --act: 1; }
.digit[data-digit="8"] > * { --act: 1; }
.digit[data-digit="9"] :not(.bottom.left) { --act: 1; }

.colon span {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: clamp(2.2rem, 6vw, 6.8rem);
  width: clamp(0.5rem, 1.2vw, 1.5rem);
  filter:
    drop-shadow(0 0 3px currentColor)
    drop-shadow(0 0 7px currentColor);
}

.colon span::before,
.colon span::after {
  content: "";
  display: block;
  width: clamp(0.45rem, 1vw, 0.9rem);
  aspect-ratio: 1 / 1;
  background-color: white;
  border-radius: 50%;
}

.shadow {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom center;
  transform: translateY(0.55rem) translateZ(1rem) rotateX(-90.1deg);
  pointer-events: none;
}

.shadow .digit span {
  opacity: var(--act);
}

.shadow.shadow1 {
  opacity: 0.35;
  filter:
    drop-shadow(0 0 4px currentColor)
    drop-shadow(0 0 10px currentColor)
    blur(2rem);
}

.shadow.shadow1 > span,
.shadow.shadow1 .digit {
  mask-image: linear-gradient(to bottom, white, rgba(0, 0, 0, 0.5));
}

.shadow.shadow2 {
  opacity: 0.3;
  filter:
    drop-shadow(0 0 4px currentColor)
    drop-shadow(0 0 10px currentColor)
    blur(4px);
}

.shadow.shadow2 > span,
.shadow.shadow2 .digit {
  opacity: var(--act);
  mask-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.1) 60%, transparent);
}

.home-copy {
  width: min(100% - 2rem, 48rem);
  margin: 0 auto clamp(3rem, 7vw, 5.5rem);
  text-align: center;
}

.intro {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.scroll-cue {
  display: inline-flex;
  margin-top: 1.4rem;
  color: rgba(190, 215, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin: 0.22rem 0 0 0.7rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.scroll-cue:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(90, 170, 255, 0.55);
}

.button,
.btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(100, 175, 255, 0.45);
  border-radius: 999px;
  color: rgba(220, 238, 255, 0.95);
  background: rgba(0, 0, 0, 0.35);
  box-shadow:
    inset 0 0 12px rgba(80, 150, 255, 0.08),
    0 0 10px rgba(80, 150, 255, 0.16);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color var(--trans-dur),
    background var(--trans-dur),
    border-color var(--trans-dur),
    box-shadow var(--trans-dur);
}

.button:hover,
.btn:hover {
  color: #fff;
  background: rgba(80, 150, 255, 0.14);
  border-color: rgba(140, 200, 255, 0.8);
  box-shadow:
    inset 0 0 14px rgba(80, 150, 255, 0.14),
    0 0 14px rgba(80, 150, 255, 0.28);
}

.button:focus-visible,
.btn:focus-visible,
.timeline__arrow:focus-visible,
.nav a:focus-visible,
.footer-nav a:focus-visible {
  outline: 2px solid rgba(180, 220, 255, 0.95);
  outline-offset: 0.24rem;
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section h1,
.section h2,
.article h1,
.article h2,
.article h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

.section h2 {
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  text-shadow: 0 0 10px rgba(90, 170, 255, 0.28);
}

.kicker,
.meta-line {
  color: var(--faint);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.plain-list li {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.entries {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 0 28px rgba(80, 150, 255, 0.08);
}

.entry-card {
  display: block;
  padding: clamp(1.1rem, 4vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(80, 150, 255, 0.08), rgba(0, 0, 0, 0.12)),
    var(--panel-hard);
  text-decoration: none;
}

.entry-card:hover {
  background:
    linear-gradient(135deg, rgba(80, 150, 255, 0.16), rgba(0, 0, 0, 0.16)),
    var(--panel-hard);
}

.entry-card h2,
.entry-card h3 {
  margin: 0.45rem 0 0.65rem;
  color: #fff;
  font-size: clamp(1.35rem, 4vw, 2rem);
  text-shadow: 0 0 8px rgba(90, 170, 255, 0.4);
}

.entry-card p,
.section p {
  margin: 0;
  color: var(--muted);
}

.blog-timeline-section {
  position: relative;
  z-index: 2;
  width: min(92vw, 46rem);
  margin: 0 auto;
  padding: 1rem 0 6rem;
}

.timeline {
  position: relative;
  width: 100%;
}

.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 3rem;
}

.timeline__item {
  position: relative;
  padding-bottom: 2.75rem;
}

.timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 0.4rem;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(90, 170, 255, 0.8), rgba(90, 170, 255, 0.08));
  box-shadow: 0 0 10px rgba(90, 170, 255, 0.5);
}

.timeline__item-header {
  position: relative;
  display: grid;
  grid-template-columns: 1rem 3rem 1fr;
  align-items: start;
}

.timeline__dot {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 4px #fff,
    0 0 10px rgba(90, 170, 255, 0.95),
    0 0 18px rgba(90, 170, 255, 0.55);
}

.timeline__arrow {
  grid-column: 2;
  position: relative;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.timeline__arrow::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.72rem;
  width: 0.68rem;
  height: 0.68rem;
  border-right: 2px solid rgba(220, 238, 255, 0.9);
  border-bottom: 2px solid rgba(220, 238, 255, 0.9);
  transform: rotate(-45deg);
  transition: transform var(--trans-dur) var(--trans-timing);
  filter: drop-shadow(0 0 5px rgba(90, 170, 255, 0.9));
}

.timeline__arrow[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.timeline__meta {
  grid-column: 3;
}

.timeline__date {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.timeline__title {
  display: block;
  margin-top: 0.15rem;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.1;
  text-shadow:
    0 0 1px #fff,
    0 0 6px rgba(90, 170, 255, 0.6);
}

.timeline__title a {
  text-decoration: none;
}

.timeline__item-body {
  height: 0;
  overflow: hidden;
  margin: 0.9rem 0 0 3.25rem;
  border-radius: 0.8rem;
}

.timeline__item-body-content {
  opacity: 0;
  visibility: hidden;
  padding: 1rem 1.1rem;
  color: rgba(225, 238, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(80, 150, 255, 0.12), rgba(0, 0, 0, 0.24)),
    var(--panel);
  border: 1px solid rgba(90, 170, 255, 0.18);
  box-shadow:
    inset 0 0 18px rgba(80, 150, 255, 0.06),
    0 0 18px rgba(0, 0, 0, 0.35);
  transition:
    opacity var(--trans-dur) var(--trans-timing),
    visibility var(--trans-dur) var(--trans-timing);
}

.timeline__item-body--expanded,
.timeline__item-body[aria-hidden="false"] {
  height: auto;
}

.timeline__item-body--expanded .timeline__item-body-content,
.timeline__item-body[aria-hidden="false"] .timeline__item-body-content {
  opacity: 1;
  visibility: visible;
}

.timeline__item-p {
  max-width: 58ch;
  margin: 0 0 1rem;
}

.timeline__link {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.article-header {
  max-width: var(--measure);
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
}

.page-title,
.post-title {
  margin: 1rem 0 0;
  color: #fff;
  font-size: clamp(2.8rem, 9vw, 6rem);
  text-shadow:
    0 0 2px #fff,
    0 0 12px rgba(120, 180, 255, 0.52);
}

.article-header p {
  color: var(--muted);
  font-size: 1.12rem;
}

.article-header .actions {
  justify-content: flex-start;
}

.prose {
  max-width: var(--measure);
  color: var(--text);
}

.prose h2 {
  margin: 3.2rem 0 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: #fff;
  font-size: clamp(1.45rem, 4vw, 2.45rem);
  text-shadow: 0 0 8px rgba(90, 170, 255, 0.35);
}

.prose h3 {
  margin: 2.2rem 0 0.5rem;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prose p {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.prose strong,
.prose .hard {
  color: var(--text);
}

.prose ul,
.prose ol {
  margin: 1rem 0 1.4rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.prose li {
  margin: 0.35rem 0;
}

.pull {
  margin: 2rem 0;
  padding: 1.2rem 0 1.2rem 1rem;
  border-left: 2px solid var(--blue);
  color: #fff;
  font-size: clamp(1.25rem, 4vw, 1.8rem);
  line-height: 1.35;
  text-shadow: 0 0 10px rgba(90, 170, 255, 0.42);
}

.post-nav {
  max-width: var(--measure);
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem 0;
  color: var(--faint);
  font-size: 0.82rem;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

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

.footer-nav a {
  text-decoration: none;
}

.safari .digit span {
  transition: none !important;
}

@keyframes neonFlicker {
  0%, 76% { opacity: 1; }
  77% { opacity: 0.18; }
  78% { opacity: 1; }
  79% { opacity: 0.08; }
  80%, 84% { opacity: 1; }
  85% { opacity: 0.25; }
  86%, 91% { opacity: 1; }
  92% { opacity: 0.12; }
  92.5%, 100% { opacity: 1; }
}

@keyframes camera-pan {
  0% { transform: translate(0, 0); }
  20% { transform: translate(0.35rem, 0.45rem); }
  40% { transform: translate(-0.45rem, 0.4rem); }
  50% { transform: translate(-0.25rem, 0.25rem); }
  70% { transform: translate(-0.15rem, -0.15rem); }
  90% { transform: translate(0.35rem, -0.2rem); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 4rem;
    gap: 0.75rem;
  }

  .brand-text,
  .nav-links {
    font-size: 0.66rem;
    letter-spacing: 0.07em;
  }

  .nav-links {
    gap: 0.55rem;
  }

  .logo {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }

  .logo .brand {
    font-size: clamp(2.65rem, 12vw, 4.8rem);
  }

  .logo .tagline {
    letter-spacing: 0.22em;
  }

  .countdown-wrap {
    min-height: 6rem;
    margin-bottom: 0.4rem;
  }

  .countdown {
    width: 96vw;
    gap: 0.2rem;
  }

  .group {
    gap: 0.2rem;
  }

  .digit {
    height: clamp(2rem, 7.5vw, 3.1rem);
  }

  .colon span {
    height: clamp(2rem, 7.5vw, 3.1rem);
    width: 0.52rem;
  }

  .countdown-label {
    letter-spacing: 0.13em;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .blog-timeline-section {
    width: min(92vw, 36rem);
    padding-bottom: 4rem;
  }

  .timeline__item-header {
    grid-template-columns: 1rem 2.65rem 1fr;
  }

  .timeline__item-body {
    margin-left: 2.8rem;
  }

  .footer-inner,
  .post-nav {
    flex-direction: column;
  }
}
