:root {
  --ink: #f6f1e8;
  --muted: #b6b2a6;
  --night: #070908;
  --charcoal: #111614;
  --green: #123c31;
  --moss: #416b4d;
  --gold: #d3a650;
  --ember: #a95934;
  --sea: #174d55;
  --line: rgba(246, 241, 232, 0.16);
  --shadow: rgba(0, 0, 0, 0.5);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(65, 107, 77, 0.22), transparent 32rem),
    linear-gradient(135deg, #070908 0%, #0d1110 38%, #10211e 100%);
  color: var(--ink);
}

body::selection {
  background: var(--gold);
  color: var(--night);
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--night);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

select:focus-visible,
textarea:focus-visible,
[contenteditable="true"]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
  background: rgba(7, 9, 8, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(211, 166, 80, 0.75);
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 128px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../images/now-roaming-hero.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.08) brightness(0.8);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.92) 0%, rgba(7, 9, 8, 0.64) 38%, rgba(7, 9, 8, 0.2) 70%),
    linear-gradient(0deg, #070908 0%, rgba(7, 9, 8, 0.34) 34%, rgba(7, 9, 8, 0.12) 100%);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8.7rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tagline {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.hero-copy {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #11100d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #e1b968;
}

.button.secondary {
  background: rgba(7, 9, 8, 0.32);
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  background: rgba(246, 241, 232, 0.1);
  color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 8, 0.38);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.stat span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

main {
  background: var(--night);
}

section {
  padding: 96px 0;
  border-top: 1px solid rgba(246, 241, 232, 0.08);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 5.3rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.feature-post,
.post-card,
.field-note,
.newsletter {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 50px var(--shadow);
}

.feature-post {
  display: grid;
  min-height: 560px;
  align-content: end;
  padding: 34px;
  background:
    linear-gradient(0deg, rgba(7, 9, 8, 0.88), rgba(7, 9, 8, 0.08)),
    url("../images/now-roaming-hero.png") center / cover;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 18px;
}

.category-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(211, 166, 80, 0.46);
  background: rgba(211, 166, 80, 0.1);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-post h3,
.post-card h3,
.field-note h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.feature-post p,
.post-card p,
.field-note p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.post-list {
  display: grid;
  gap: 22px;
}

.post-card {
  min-height: 168px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(211, 166, 80, 0.48);
}

.routes {
  background:
    linear-gradient(180deg, rgba(18, 60, 49, 0.34), rgba(7, 9, 8, 0.95)),
    var(--night);
}

.route-feed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 50px var(--shadow);
}

.route-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
  transition: transform 240ms ease, filter 240ms ease;
}

.route-image-link {
  display: block;
  overflow: hidden;
}

.route-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.08) brightness(0.96);
}

.route-content {
  padding: 18px;
}

.route-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-topline time {
  color: var(--muted);
  white-space: nowrap;
}

.route-geotag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-geotag span:first-child {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(211, 166, 80, 0.5);
}

.route-card .category-tags {
  margin: 14px 0 0;
}

.route-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.field-note {
  min-height: 300px;
  padding: 28px;
}

.field-note .number {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  line-height: 1;
}

.about {
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.95), rgba(7, 9, 8, 0.72)),
    url("../images/now-roaming-hero.png") center / cover fixed;
}

.about-copy {
  max-width: 820px;
}

.about-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-copy p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.post-page {
  min-height: 100vh;
  padding: 144px 0 96px;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(7, 9, 8, 0.8)),
    url("../images/now-roaming-hero.png") center top / cover fixed;
}

.post-article {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.post-hero {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.post-hero h1 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.post-hero p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.post-body {
  padding-top: 42px;
  color: var(--ink);
}

.post-dek,
.post-body h1:first-child {
  max-width: 100%;
  margin: 42px 0 34px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
  white-space: nowrap;
  text-transform: uppercase;
}

.post-dek + .post-body {
  padding-top: 0;
}

.post-body p {
  max-width: 920px;
  margin: 0 0 24px;
  color: rgba(246, 241, 232, 0.82);
  font-size: 1.08rem;
  line-height: 1.95;
}

.post-body h2 {
  margin: 44px 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.post-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.post-body blockquote {
  max-width: 860px;
  margin: 34px 0;
  padding: 12px 0 12px 24px;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.post-body pre,
.post-body code {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.32);
  color: var(--ink);
}

.post-body pre {
  overflow-x: auto;
  max-width: 920px;
  padding: 18px;
}

.post-body table {
  width: min(920px, 100%);
  border-collapse: collapse;
  margin: 28px 0;
}

.post-body th,
.post-body td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}

.post-body figure {
  max-width: 980px;
  margin: 34px 0;
}

.post-body figure img,
.post-featured-image {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.post-featured-image {
  margin: 42px 0 0;
}

.post-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.post-body iframe {
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}

.attachment-list,
.blog-controls,
.admin-actions,
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.related-posts {
  padding: 56px 0 0;
}

.related-posts h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 500;
  text-transform: uppercase;
}

.cms-blog {
  min-height: 100vh;
  padding-top: 144px;
}

.blog-controls {
  margin-bottom: 28px;
}

.blog-controls input,
.blog-controls select,
.admin-toolbar input,
.admin-toolbar select,
.admin-panel input,
.admin-panel textarea,
.admin-panel select {
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.26);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

.blog-controls input,
.admin-toolbar input {
  min-width: min(360px, 100%);
  flex: 1;
}

.admin-shell {
  min-height: 100vh;
  padding: 118px 0 72px;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.97), rgba(7, 9, 8, 0.84)),
    url("../images/now-roaming-hero.png") center / cover fixed;
}

.admin-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  border-top: 0;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.admin-topbar h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.admin-login,
.editor-sidebar,
.media-drop,
.settings-grid,
.rich-editor,
.admin-row,
.media-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 50px var(--shadow);
}

.admin-login,
.settings-grid {
  display: grid;
  gap: 16px;
  max-width: 720px;
  padding: 26px;
}

.admin-login h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.admin-login p,
.admin-message {
  color: var(--muted);
  line-height: 1.7;
}

.admin-panel label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-panel textarea {
  min-height: 110px;
  padding: 14px;
  resize: vertical;
}

.admin-table {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.admin-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.admin-row strong,
.media-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.admin-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-actions button,
.media-card button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: 0 14px;
  cursor: pointer;
}

.admin-actions.stacked {
  align-items: stretch;
  flex-direction: column;
}

.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
}

.editor-main,
.editor-sidebar {
  display: grid;
  gap: 16px;
}

.editor-sidebar {
  align-self: start;
  padding: 20px;
  position: sticky;
  top: 96px;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-toolbar button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: rgba(211, 166, 80, 0.1);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.rich-editor {
  min-height: 560px;
  padding: 24px;
}

.media-drop {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-bottom: 22px;
  padding: 24px;
  text-align: center;
}

.media-drop.dragging {
  border-color: var(--gold);
  background: rgba(211, 166, 80, 0.08);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.media-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.media-card img,
.media-card iframe {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.preview-dialog {
  width: min(1100px, calc(100% - 32px));
  max-height: 88vh;
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--night);
  color: var(--ink);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
}

.newsletter h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.newsletter p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.signup {
  display: flex;
  gap: 10px;
}

.signup input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: 0 16px;
  font: inherit;
}

.signup input::placeholder {
  color: rgba(246, 241, 232, 0.5);
}

.signup button {
  min-width: 130px;
  border: 0;
  background: var(--gold);
  color: #11100d;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #050605;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  font-size: 0.86rem;
}

.footer-inner strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(7, 9, 8, 0.96);
  }

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

  .nav-links a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-stats,
  .journal-grid,
  .route-feed,
  .notes-grid,
  .newsletter,
  .editor-layout,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .admin-row {
    display: grid;
  }

  .editor-sidebar {
    position: static;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .feature-post {
    min-height: 440px;
  }

  .route-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 0.96rem;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .signup,
  .footer-inner,
  .admin-actions,
  .admin-toolbar,
  .blog-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .signup button {
    width: 100%;
  }

  section {
    padding: 72px 0;
  }

  .feature-post,
  .newsletter,
  .post-card,
  .field-note {
    padding: 22px;
  }

  .post-dek,
  .post-body h1:first-child {
    font-size: clamp(1.35rem, 9vw, 2.6rem);
  }

  .route-feed {
    grid-template-columns: 1fr;
  }
}
