.after-haven-next-intro {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(114, 228, 193, 0.25);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 6%, rgba(98, 207, 228, 0.16), transparent 19rem),
    linear-gradient(145deg, rgba(18, 48, 55, 0.94), rgba(9, 26, 33, 0.96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.after-haven-next-intro::after {
  position: absolute;
  right: -85px;
  bottom: -125px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(114, 228, 193, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.after-haven-next-intro h2,
.after-haven-canonical-intro h2 {
  max-width: 700px;
  margin: 4px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.after-haven-next-intro > p:not(.tutorial-kicker),
.after-haven-canonical-intro > p:not(.tutorial-kicker) {
  max-width: 760px;
  margin: 0;
  color: #c3d5d5;
  line-height: 1.72;
}

.after-haven-route-detail {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 25, 31, 0.72);
  scroll-margin-top: 100px;
}

.after-haven-route-detail.is-first {
  border-color: rgba(114, 228, 193, 0.36);
  background: linear-gradient(145deg, rgba(14, 40, 45, 0.88), rgba(8, 24, 31, 0.88));
}

.after-haven-route-detail > summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.after-haven-route-detail > summary::-webkit-details-marker,
.after-haven-type-list summary::-webkit-details-marker,
.after-haven-data-detail summary::-webkit-details-marker,
.after-haven-equipment-list summary::-webkit-details-marker {
  display: none;
}

.after-haven-route-detail > summary > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(114, 228, 193, 0.32);
  border-radius: 15px;
  color: var(--mint);
  background: rgba(17, 47, 51, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.after-haven-route-detail summary small,
.after-haven-section-head small {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.after-haven-route-detail summary strong {
  display: block;
  margin: 3px 0 4px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 500;
}

.after-haven-route-detail summary p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.after-haven-route-detail summary > i,
.after-haven-type-list summary > i,
.after-haven-data-detail summary > i,
.after-haven-equipment-list summary > i {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.after-haven-route-detail summary > i::before,
.after-haven-route-detail summary > i::after,
.after-haven-type-list summary > i::before,
.after-haven-type-list summary > i::after,
.after-haven-data-detail summary > i::before,
.after-haven-data-detail summary > i::after,
.after-haven-equipment-list summary > i::before,
.after-haven-equipment-list summary > i::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
  content: "";
  transition: transform 160ms ease;
}

.after-haven-route-detail summary > i::after,
.after-haven-type-list summary > i::after,
.after-haven-data-detail summary > i::after,
.after-haven-equipment-list summary > i::after {
  transform: rotate(90deg);
}

.after-haven-route-detail[open] > summary > i::after,
.after-haven-type-list details[open] > summary > i::after,
.after-haven-data-detail[open] > summary > i::after,
.after-haven-equipment-list details[open] > summary > i::after {
  transform: rotate(0);
}

.after-haven-route-body {
  padding: 0 18px 20px;
  border-top: 1px solid rgba(151, 197, 197, 0.11);
}

.after-haven-first-outing {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: 18px 22px;
  padding-top: 20px;
}

.after-haven-first-outing > p {
  margin: 0;
  color: #c7d7d7;
  line-height: 1.7;
}

.after-haven-first-outing > ol {
  grid-column: 1;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: first-outing;
}

.after-haven-first-outing > ol li {
  position: relative;
  padding: 12px 14px 12px 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted);
  background: rgba(12, 35, 40, 0.62);
  font-size: 13px;
  line-height: 1.55;
  counter-increment: first-outing;
}

.after-haven-first-outing > ol li::before {
  position: absolute;
  top: 11px;
  left: 11px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: #061714;
  background: var(--mint);
  content: counter(first-outing);
  font-size: 10px;
  font-weight: 900;
}

.after-haven-quick-loadout {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.after-haven-quick-loadout a {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
  background: rgba(8, 25, 31, 0.78);
  text-decoration: none;
}

.after-haven-quick-loadout small {
  display: block;
  margin-bottom: 3px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.after-haven-quick-loadout strong {
  display: block;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.after-haven-first-outing > .after-haven-gallery {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  margin-top: 0;
}

.after-haven-primary-link {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(114, 228, 193, 0.34);
  border-radius: 12px;
  color: #071b18;
  background: var(--mint);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.after-haven-route-chooser {
  margin: 28px 0 8px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.after-haven-route-chooser.is-role-chooser {
  padding: 22px;
  border: 1px solid rgba(114, 228, 193, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(98, 207, 228, 0.12), transparent 18rem),
    rgba(10, 31, 38, 0.72);
}

.after-haven-route-chooser.is-role-chooser a {
  min-height: 102px;
  border-color: rgba(114, 228, 193, 0.2);
  background: rgba(7, 25, 31, 0.82);
}

.after-haven-route-chooser.is-role-chooser a > span {
  background: linear-gradient(145deg, #f0cf82, #c99d49);
}

.after-haven-route-chooser h2 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3.3vw, 36px);
  font-weight: 500;
}

.after-haven-route-chooser > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.after-haven-route-chooser nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.after-haven-route-chooser a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 82px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(12, 34, 40, 0.68);
  text-decoration: none;
  scroll-margin-top: 100px;
}

.after-haven-route-chooser a > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #071915;
  background: linear-gradient(145deg, #8cebd0, #55c0ab);
  font-size: 10px;
  font-weight: 900;
}

.after-haven-route-chooser strong,
.after-haven-route-chooser small {
  display: block;
}

.after-haven-route-chooser strong { margin-bottom: 4px; font-size: 13px; }
.after-haven-route-chooser small { color: var(--muted); font-size: 11px; line-height: 1.45; }

.after-haven-choice-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 8px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.after-haven-choice-list > header { margin-bottom: 8px; }
.after-haven-choice-list > header h2 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3.3vw, 36px);
  font-weight: 500;
}
.after-haven-choice-list > header p { margin: 0; color: var(--muted); line-height: 1.65; }
.after-haven-choice-preview { margin: 0; }
.after-haven-choice-preview > summary { padding-block: 15px; }
.after-haven-choice-points {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.after-haven-system { display: grid; gap: 22px; }

.after-haven-section-head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
}

.after-haven-section-head > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(114, 228, 193, 0.3);
  border-radius: 15px;
  color: var(--mint);
  background: rgba(17, 47, 51, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.after-haven-section-head h2 {
  margin: 4px 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
}

.after-haven-section-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.after-haven-canonical-intro {
  padding: 4px 0 24px;
  border-bottom: 1px solid var(--line);
}

.after-haven-subsection {
  margin-top: 25px;
  scroll-margin-top: 100px;
}

.after-haven-subsection > h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
}

.after-haven-subsection > p {
  max-width: 800px;
  margin: 0 0 15px;
  color: var(--muted);
  line-height: 1.65;
}

.after-haven-step-list {
  display: grid;
  gap: 12px;
}

.after-haven-step {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(13, 34, 41, 0.64);
}

.after-haven-step > header {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.after-haven-step > header span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: #071916;
  background: var(--mint);
  font-size: 10px;
  font-weight: 900;
}

.after-haven-step h3 { margin: 0; font-size: 15px; }

.after-haven-step > p {
  margin: 10px 0 0 40px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.after-haven-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0 40px;
}

.after-haven-controls span {
  padding: 5px 8px;
  border: 1px solid rgba(98, 207, 228, 0.24);
  border-radius: 8px;
  color: #d5e8e8;
  background: rgba(7, 24, 30, 0.78);
  font-size: 10px;
  font-weight: 800;
}

.after-haven-help {
  margin: 13px 0 0 40px;
  padding: 11px 13px;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: rgba(229, 183, 93, 0.08);
}

.after-haven-help strong { color: var(--gold); font-size: 11px; }
.after-haven-help p { margin: 4px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.after-haven-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 15px 0 0 40px;
}

.after-haven-gallery.is-single { grid-template-columns: minmax(0, 1fr); }

.after-haven-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5, 18, 23, 0.8);
}

.after-haven-gallery button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: #02090d;
  cursor: zoom-in;
}

.after-haven-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: filter 160ms ease, transform 160ms ease;
}

.after-haven-gallery button > span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  color: #f2f8f7;
  background: rgba(3, 12, 16, 0.84);
  font-size: 9px;
  font-weight: 850;
  opacity: 0;
}

.after-haven-gallery figcaption {
  padding: 9px 11px 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.after-haven-loadout-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.after-haven-loadout-grid article,
.after-haven-card-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(10, 30, 36, 0.7);
}

.after-haven-loadout-grid small,
.after-haven-card-grid small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.after-haven-loadout-grid h3,
.after-haven-card-grid h3 { margin: 5px 0 6px; font-size: 13px; }
.after-haven-loadout-grid a,
.after-haven-card-grid a { color: var(--text); text-decoration-color: rgba(114, 228, 193, 0.45); }
.after-haven-loadout-grid p,
.after-haven-card-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

.after-haven-notes {
  margin-top: 20px;
  padding: 17px;
  border: 1px solid rgba(229, 183, 93, 0.2);
  border-radius: 14px;
  background: rgba(229, 183, 93, 0.06);
}

.after-haven-notes h3 { margin: 0; color: var(--gold); font-size: 13px; }
.after-haven-notes ul { display: grid; gap: 7px; margin: 10px 0 0; padding-left: 19px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.after-haven-type-list,
.after-haven-equipment-list {
  display: grid;
  gap: 9px;
}

.after-haven-type-list details,
.after-haven-equipment-list details,
.after-haven-data-detail {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 29, 36, 0.7);
}

.after-haven-type-list summary,
.after-haven-equipment-list summary,
.after-haven-data-detail summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  gap: 11px;
  align-items: center;
  min-height: 56px;
  padding: 11px 13px;
  cursor: pointer;
  list-style: none;
}

.after-haven-type-list summary > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #071916;
  background: var(--mint);
  font-size: 10px;
  font-weight: 900;
}

.after-haven-type-list summary strong,
.after-haven-type-list summary small { display: block; }
.after-haven-type-list summary strong { font-size: 14px; }
.after-haven-type-list summary small { margin-top: 2px; color: var(--muted); font-size: 10px; }

.after-haven-type-body,
.after-haven-equipment-list details > div,
.after-haven-data-detail > :not(summary) {
  margin: 0;
}

.after-haven-type-body,
.after-haven-equipment-list details > div {
  padding: 0 14px 15px;
  border-top: 1px solid rgba(151, 197, 197, 0.1);
}

.after-haven-type-body > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.after-haven-type-body .after-haven-controls,
.after-haven-type-body .after-haven-help,
.after-haven-type-body .after-haven-gallery { margin-left: 0; }

.after-haven-equipment-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.after-haven-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 21px;
}

.after-haven-links a,
.after-haven-inline-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #d8e8e7;
  background: rgba(14, 38, 44, 0.62);
  font-size: 11px;
  font-weight: 780;
  text-decoration: none;
}

.after-haven-links span { color: var(--mint); }

.after-haven-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 20px;
}

.after-haven-two-column > section {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(9, 28, 34, 0.68);
}

.after-haven-two-column h3 { margin: 0 0 9px; font-size: 13px; }

.after-haven-fact-list,
.after-haven-rough-needs { display: grid; gap: 0; }

.after-haven-fact-list p,
.after-haven-rough-needs p {
  display: grid;
  grid-template-columns: minmax(105px, 0.7fr) minmax(0, 1.3fr);
  gap: 10px;
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(151, 197, 197, 0.1);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.after-haven-fact-list p:first-child,
.after-haven-rough-needs p:first-child { border-top: 0; }
.after-haven-fact-list strong,
.after-haven-rough-needs strong { color: var(--mint); }

.after-haven-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.after-haven-data-detail { margin-top: 12px; }

.after-haven-data-detail summary {
  grid-template-columns: minmax(0, 1fr) auto 22px;
}

.after-haven-data-detail summary strong { font-size: 13px; }
.after-haven-data-detail summary span { color: var(--muted); font-size: 10px; }

.after-haven-milestone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
  margin: 0;
  padding: 0 15px 15px;
  list-style: none;
}

.after-haven-milestone-list li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(151, 197, 197, 0.1);
  color: var(--muted);
  font-size: 11px;
}

.after-haven-milestone-list b { color: var(--mint); }

.after-haven-data-detail > .after-haven-rough-needs {
  padding: 0 15px;
}

.after-haven-data-detail > .after-haven-rough-needs + p {
  padding: 0 15px 15px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.after-haven-tip-list {
  display: grid;
  gap: 12px;
  padding: 0 15px 15px;
}

.after-haven-tip-list article {
  padding-top: 12px;
  border-top: 1px solid rgba(151, 197, 197, 0.1);
}

.after-haven-tip-list h3 { margin: 0 0 5px; font-size: 13px; }
.after-haven-tip-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.after-haven-tip-list .after-haven-gallery { margin-left: 0; }

.after-haven-equipment-list summary {
  grid-template-columns: minmax(0, 1fr) 22px;
}

.after-haven-equipment-list summary strong { font-size: 15px; }
.after-haven-equipment-list summary p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }

.after-haven-equipment-list ol {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.after-haven-equipment-list .after-haven-gallery { margin-left: 0; }

.after-haven-inline-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

@media (hover: hover) {
  .after-haven-route-chooser a:hover,
  .after-haven-links a:hover,
  .after-haven-inline-links a:hover,
  .after-haven-quick-loadout a:hover {
    border-color: var(--line-bright);
    background: rgba(27, 62, 68, 0.76);
    transform: translateY(-1px);
  }

  .after-haven-gallery button:hover img { filter: brightness(1.08); transform: scale(1.008); }
  .after-haven-gallery button:hover > span { opacity: 1; }
}

.after-haven-route-detail summary:focus-visible,
.after-haven-type-list summary:focus-visible,
.after-haven-data-detail summary:focus-visible,
.after-haven-equipment-list summary:focus-visible,
.after-haven-gallery button:focus-visible,
.after-haven-route-chooser a:focus-visible,
.after-haven-links a:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .after-haven-quick-loadout { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .after-haven-loadout-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .after-haven-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .after-haven-next-intro { padding: 23px 18px; }
  .after-haven-route-chooser nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .after-haven-first-outing { grid-template-columns: 1fr; }
  .after-haven-first-outing > .after-haven-gallery { grid-column: 1; grid-row: auto; }
  .after-haven-links { grid-template-columns: 1fr; }
  .after-haven-two-column { grid-template-columns: 1fr; }
  .after-haven-milestone-list { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .after-haven-route-detail > summary { grid-template-columns: 42px minmax(0, 1fr) 20px; gap: 11px; padding: 14px 12px; }
  .after-haven-route-detail > summary > span { width: 42px; height: 42px; border-radius: 12px; font-size: 15px; }
  .after-haven-route-detail summary p { display: none; }
  .after-haven-route-body { padding: 0 12px 14px; }
  .after-haven-route-chooser nav { grid-template-columns: 1fr; }
  .after-haven-section-head { grid-template-columns: 44px minmax(0, 1fr); gap: 12px; }
  .after-haven-section-head > span { width: 44px; height: 44px; border-radius: 12px; font-size: 15px; }
  .after-haven-quick-loadout,
  .after-haven-loadout-grid,
  .after-haven-card-grid,
  .after-haven-inline-links { grid-template-columns: 1fr; }
  .after-haven-step { padding: 14px 12px; }
  .after-haven-step > p,
  .after-haven-controls,
  .after-haven-help,
  .after-haven-gallery { margin-left: 0; }
  .after-haven-gallery { grid-template-columns: 1fr; }
  .after-haven-type-list summary { grid-template-columns: 32px minmax(0, 1fr) 20px; }
  .after-haven-fact-list p,
  .after-haven-rough-needs p { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .after-haven-route-detail summary > i::after,
  .after-haven-type-list summary > i::after,
  .after-haven-data-detail summary > i::after,
  .after-haven-equipment-list summary > i::after,
  .after-haven-gallery img,
  .after-haven-route-chooser a,
  .after-haven-links a,
  .after-haven-inline-links a,
  .after-haven-quick-loadout a { transition: none; }
}
