:root {
  --rdw-navy: #0b1d3a;
  --rdw-navy-2: #132b4f;
  --rdw-gold: #c49a4b;
  --rdw-gold-light: #ead9b5;
  --rdw-cream: #faf7f2;
  --rdw-paper: #fffefa;
  --rdw-ink: #182033;
  --rdw-muted: #596273;
  --rdw-line: rgba(11, 29, 58, 0.13);
  --rdw-shadow: 0 24px 70px rgba(11, 29, 58, 0.12);
  --rdw-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --rdw-sans: "Outfit", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --rdw-content: 1180px;
  --rdw-reading: 820px;
  --rdw-gutter: clamp(20px, 5vw, 68px);
}
.rws-window-page {
  overflow-x: hidden;
  color: var(--rdw-ink);
  background: var(--rdw-paper);
  font-family: var(--rdw-sans);
}

.rws-window-page h1,
.rws-window-page h2,
.rws-window-page h3,
.rws-window-page blockquote {
  font-family: var(--rdw-serif);
}

.rws-window-page button,
.rws-window-page input,
.rws-window-page textarea,
.rws-window-page select {
  font: inherit;
}

.rws-window-page textarea {
  resize: vertical;
}

.rws-window-page .rws-decision-hero {
  padding: 0;
}

.rws-window-page .rws-decision-hero::after {
  right: -180px;
  bottom: -240px;
  width: 520px;
  height: 520px;
}

.rdw-hero {
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(196, 154, 75, 0.2), transparent 28%),
    radial-gradient(circle at 14% 76%, rgba(49, 83, 123, 0.33), transparent 32%),
    linear-gradient(145deg, #0b1d3a 0%, #07152b 66%, #061126 100%);
}

.rdw-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--rdw-content), calc(100% - (2 * var(--rdw-gutter))));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0 clamp(62px, 8vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(500px, 1.17fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.rdw-hero__copy {
  min-width: 0;
}

.rdw-hero .rws-breadcrumbs {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.rdw-hero h1 {
  max-width: 690px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
}

.rdw-hero .rws-decision-hero__lede {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.81);
  font-size: clamp(18px, 1.7vw, 21px);
}

.rdw-hero__actions,
.rdw-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.rdw-hero__actions {
  margin-top: 32px;
}

.rdw-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.rdw-button:hover {
  transform: translateY(-2px);
}

.rdw-button--gold {
  color: var(--rdw-navy);
  background: var(--rdw-gold-light);
  border-color: var(--rdw-gold);
}

.rdw-button--gold:hover {
  color: var(--rdw-navy);
  background: #f4e7ca;
}

.rdw-button--navy {
  color: #fff;
  background: var(--rdw-navy);
  border-color: var(--rdw-navy);
}

.rdw-button--navy:hover {
  color: #fff;
  background: var(--rdw-navy-2);
}

.rdw-button--paper {
  color: var(--rdw-navy);
  background: #fff;
  border-color: rgba(11, 29, 58, 0.24);
}

.rdw-button--paper:hover {
  color: var(--rdw-navy);
  border-color: var(--rdw-gold);
}

.rdw-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.rdw-text-link:hover {
  color: var(--rdw-gold-light);
}

.rdw-text-link--navy {
  color: var(--rdw-navy);
}

.rdw-text-link--navy:hover {
  color: #72561c;
}

/* Hero story map */

.rdw-story-map {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(234, 217, 181, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.rdw-story-map figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 4px 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rdw-story-map figcaption strong {
  color: var(--rdw-gold-light);
  font-family: var(--rdw-sans);
  font-size: 11px;
}

.rdw-story-map__stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(rgba(11, 29, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 29, 58, 0.035) 1px, transparent 1px),
    var(--rdw-cream);
  background-size: 26px 26px;
}

.rdw-story-map__paths {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.rdw-story-map__paths path {
  fill: none;
  stroke: rgba(196, 154, 75, 0.62);
  stroke-width: 2;
}

.rdw-story-map__path-out {
  stroke: rgba(11, 29, 58, 0.38) !important;
}

.rdw-story-map__questions {
  position: absolute;
  z-index: 2;
  top: 32px;
  bottom: 32px;
  left: 24px;
  width: 25%;
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.rdw-story-map__questions button {
  position: relative;
  min-height: 50px;
  padding: 9px 12px;
  border: 1px solid rgba(11, 29, 58, 0.13);
  border-radius: 9px;
  color: var(--rdw-navy);
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(11, 29, 58, 0.06);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.rdw-story-map__questions button::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--rdw-cream);
  border-radius: 50%;
  content: "";
  background: var(--rdw-gold);
  transform: translateY(-50%);
}

.rdw-story-map__questions button:hover,
.rdw-story-map__questions button[aria-pressed="true"] {
  border-color: var(--rdw-gold);
  background: #fff;
  transform: translateX(3px);
}

.rdw-story-map__questions button[aria-pressed="true"] {
  box-shadow: 0 10px 24px rgba(196, 154, 75, 0.18);
}

.rdw-story-map__center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 45.5%;
  width: 27%;
  padding: 22px 18px 18px;
  border: 1px solid rgba(196, 154, 75, 0.42);
  border-radius: 50% 50% 46% 54% / 48% 52% 48% 52%;
  color: #fff;
  text-align: center;
  background: var(--rdw-navy);
  box-shadow: 0 18px 45px rgba(11, 29, 58, 0.2), inset 0 0 0 5px rgba(255, 255, 255, 0.035);
  transform: translate(-50%, -50%);
}

.rdw-story-map__center > small,
.rdw-story-map__center > span {
  display: block;
  color: var(--rdw-gold-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rdw-story-map__center > strong {
  display: block;
  margin: 7px auto 8px;
  font-family: var(--rdw-serif);
  font-size: clamp(15px, 1.55vw, 20px);
  line-height: 1.05;
}

.rdw-story-map__center > p {
  min-height: 54px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  line-height: 1.45;
}

.rdw-story-map__center ol {
  margin: 12px 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  list-style: none;
}

.rdw-story-map__center li {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(234, 217, 181, 0.38);
  border-radius: 50%;
  color: var(--rdw-gold-light);
  font-size: 9px;
  font-weight: 750;
}

.rdw-story-map__output {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 12px;
  width: 31%;
  height: 75%;
  transform: translateY(-50%);
}

.rdw-story-map__output > img {
  position: absolute;
  z-index: 1;
  right: -8%;
  bottom: 4%;
  width: 94%;
  height: auto;
  filter: drop-shadow(0 18px 20px rgba(11, 29, 58, 0.18));
}

.rdw-map-paper {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: 0;
  width: 72%;
  padding: 16px 14px 14px;
  border-top: 4px solid var(--rdw-gold);
  color: var(--rdw-navy);
  background: #fff;
  box-shadow: 0 18px 35px rgba(11, 29, 58, 0.18);
  transform: rotate(-3deg);
}

.rdw-map-paper > span {
  display: block;
  font-family: var(--rdw-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.05;
}

.rdw-map-paper ol {
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.rdw-map-paper li {
  padding: 5px 0 4px;
  border-top: 1px solid var(--rdw-line);
  color: var(--rdw-muted);
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rdw-story-map__summary {
  margin: 14px 4px 2px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.rdw-js .rdw-story-map__paths path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.rdw-js .rdw-story-map__questions button,
.rdw-js .rdw-story-map__center,
.rdw-js .rdw-story-map__output {
  opacity: 0;
}

.rdw-js .rdw-story-map.is-visible .rdw-story-map__paths path {
  animation: rdw-draw 900ms 180ms ease forwards;
}

.rdw-js .rdw-story-map.is-visible .rdw-story-map__questions button {
  animation: rdw-settle 460ms ease forwards;
}

.rdw-js .rdw-story-map.is-visible .rdw-story-map__questions button:nth-child(2) { animation-delay: 70ms; }
.rdw-js .rdw-story-map.is-visible .rdw-story-map__questions button:nth-child(3) { animation-delay: 140ms; }
.rdw-js .rdw-story-map.is-visible .rdw-story-map__questions button:nth-child(4) { animation-delay: 210ms; }
.rdw-js .rdw-story-map.is-visible .rdw-story-map__questions button:nth-child(5) { animation-delay: 280ms; }
.rdw-js .rdw-story-map.is-visible .rdw-story-map__questions button:nth-child(6) { animation-delay: 350ms; }

.rdw-js .rdw-story-map.is-visible .rdw-story-map__center {
  animation: rdw-center 560ms 640ms ease forwards;
}

.rdw-js .rdw-story-map.is-visible .rdw-story-map__output {
  animation: rdw-output 650ms 980ms ease forwards;
}

@keyframes rdw-draw { to { stroke-dashoffset: 0; } }
@keyframes rdw-settle { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: translateX(0); } }
@keyframes rdw-center { from { opacity: 0; transform: translate(-50%, -46%) scale(0.94); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes rdw-output { from { opacity: 0; transform: translate(20px, -50%); } to { opacity: 1; transform: translate(0, -50%); } }

/* Shared guide structure */

.rdw-guide {
  width: 100%;
}

.rdw-section {
  width: min(var(--rdw-content), calc(100% - (2 * var(--rdw-gutter))));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 132px) 0;
}

.rdw-section + .rdw-section {
  border-top: 1px solid var(--rdw-line);
}

.rdw-section-heading {
  max-width: var(--rdw-reading);
}

.rdw-section-heading h2,
.rdw-map-heading h2,
.rdw-recording h3,
.rdw-sources h2,
.rdw-author h2 {
  margin: 0;
  color: var(--rdw-navy);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.rdw-section-heading > p:last-child,
.rdw-map-heading > p,
.rdw-recording__copy > p,
.rdw-sources > div > p {
  margin: 24px 0 0;
  color: #465163;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.7;
}

.rdw-kicker {
  margin: 0 0 15px;
  color: #826321;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Decision window chart */

.rdw-window-chart {
  margin: clamp(44px, 6vw, 72px) 0 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--rdw-line);
  border-radius: 20px;
  background: var(--rdw-cream);
  box-shadow: var(--rdw-shadow);
}

.rdw-window-chart figcaption {
  max-width: 780px;
}

.rdw-window-chart figcaption span,
.rdw-recording__poster > span,
.rdw-household__facts > span,
.rdw-artifact__paper header > span {
  display: block;
  margin-bottom: 8px;
  color: #826321;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rdw-window-chart figcaption strong {
  display: block;
  color: var(--rdw-navy);
  font-family: var(--rdw-serif);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.08;
}

.rdw-window-chart__phases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0 0 210px;
  border: 1px solid rgba(11, 29, 58, 0.12);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: var(--rdw-navy);
}

.rdw-window-chart__phases span {
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.rdw-window-chart__phases span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.rdw-window-chart ol {
  margin: 0;
  padding: 0;
  border: 1px solid var(--rdw-line);
  border-radius: 8px 0 8px 8px;
  background: #fff;
  list-style: none;
}

.rdw-window-chart li {
  display: grid;
  grid-template-columns: 190px minmax(280px, 1fr) 190px;
  gap: 20px;
  align-items: center;
  min-height: 58px;
  padding: 11px 18px;
}

.rdw-window-chart li + li {
  border-top: 1px solid var(--rdw-line);
}

.rdw-window-chart li > span {
  color: var(--rdw-navy);
  font-weight: 700;
}

.rdw-window-chart li > small {
  color: var(--rdw-muted);
  font-size: 11px;
  line-height: 1.35;
}

.rdw-window-chart li > div {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 33.15%, rgba(11, 29, 58, 0.1) 33.3% 33.6%, transparent 33.75% 66.35%, rgba(11, 29, 58, 0.1) 66.5% 66.8%, transparent 66.95%),
    rgba(11, 29, 58, 0.045);
}

.rdw-window-chart li i {
  position: absolute;
  top: 1px;
  bottom: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rdw-gold), #dcbf80);
  box-shadow: 0 0 0 1px rgba(196, 154, 75, 0.2);
}

.rdw-window-chart [data-window-lane="work"] i { left: 2%; right: 52%; }
.rdw-window-chart [data-window-lane="healthcare"] i { left: 12%; right: 35%; }
.rdw-window-chart [data-window-lane="benefits"] i { left: 26%; right: 20%; }
.rdw-window-chart [data-window-lane="withdrawals"] i { left: 34%; right: 8%; }
.rdw-window-chart [data-window-lane="taxes"] i { left: 16%; right: 2%; }
.rdw-window-chart [data-window-lane="family"] i { left: 2%; right: 2%; }

.rdw-window-chart > p {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--rdw-muted);
  font-size: 13px;
}

/* Connected choice */

.rdw-section--connected {
  width: 100%;
  max-width: none;
  padding-right: var(--rdw-gutter);
  padding-left: var(--rdw-gutter);
  border-top: 0 !important;
  color: #fff;
  background:
    radial-gradient(circle at 50% 46%, rgba(196, 154, 75, 0.14), transparent 25%),
    linear-gradient(145deg, var(--rdw-navy), #061126);
}

.rdw-section--connected > * {
  width: min(var(--rdw-content), 100%);
  margin-right: auto;
  margin-left: auto;
}

.rdw-section-heading--light h2 {
  color: #fff;
}

.rdw-section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.73);
}

.rdw-section--connected .rdw-kicker {
  color: var(--rdw-gold-light);
}

.rdw-ripple {
  margin-top: clamp(44px, 7vw, 78px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(234, 217, 181, 0.23);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.rdw-ripple figcaption {
  text-align: center;
}

.rdw-ripple figcaption span {
  display: block;
  color: var(--rdw-gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rdw-ripple figcaption strong {
  display: block;
  margin-top: 5px;
  font-family: var(--rdw-serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
}

.rdw-ripple__web {
  position: relative;
  width: min(850px, 100%);
  min-height: 540px;
  margin: 22px auto 0;
}

.rdw-ripple__web svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.rdw-ripple__web path {
  fill: none;
  stroke: rgba(234, 217, 181, 0.4);
  stroke-width: 2;
}

.rdw-ripple__center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--rdw-gold);
  border-radius: 50%;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 0 10px rgba(196, 154, 75, 0.08), 0 24px 50px rgba(0, 0, 0, 0.23);
  transform: translate(-50%, -50%);
}

.rdw-ripple__center small {
  color: #826321;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rdw-ripple__center strong {
  margin-top: 8px;
  color: var(--rdw-navy);
  font-family: var(--rdw-serif);
  font-size: 25px;
  line-height: 1.05;
}

.rdw-ripple__web article {
  position: absolute;
  z-index: 2;
  width: 250px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(234, 217, 181, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.rdw-ripple__web article > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(234, 217, 181, 0.55);
  border-radius: 50%;
  color: var(--rdw-gold-light);
  font-weight: 750;
}

.rdw-ripple__web article strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.rdw-ripple__web article p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.45;
}

.rdw-ripple__web [data-ripple-node="income"] { top: 0; left: 50%; transform: translateX(-50%); }
.rdw-ripple__web [data-ripple-node="margin"] { top: 130px; left: 0; }
.rdw-ripple__web [data-ripple-node="portfolio"] { top: 130px; right: 0; }
.rdw-ripple__web [data-ripple-node="taxes"] { bottom: 0; left: 0; }
.rdw-ripple__web [data-ripple-node="family"] { right: 0; bottom: 0; }

.rdw-ripple__note {
  max-width: 760px;
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(234, 217, 181, 0.18);
  color: rgba(255, 255, 255, 0.73);
  text-align: center;
}

.rdw-ripple__note strong {
  color: #fff;
}

.rdw-source-inline {
  max-width: 760px;
  margin-top: 34px !important;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.rdw-source-inline a {
  color: var(--rdw-gold-light);
}

.rdw-js [data-rdw-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.rdw-js [data-rdw-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rdw-js .rdw-ripple:not(.is-visible) path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.rdw-js .rdw-ripple.is-visible path {
  animation: rdw-draw 850ms 220ms ease forwards;
}

/* Ordering bridge and G.R.A.C.E. */

.rdw-section--order {
  padding-top: clamp(66px, 8vw, 96px);
  padding-bottom: clamp(66px, 8vw, 96px);
}

.rdw-order-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: end;
}

.rdw-order-bridge h2 {
  margin: 0;
  color: var(--rdw-navy);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  line-height: 0.98;
}

.rdw-order-bridge > p {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--rdw-gold);
  color: #465163;
  font-size: 19px;
  line-height: 1.65;
}

.rdw-section--grace {
  width: 100%;
  max-width: none;
  padding-right: var(--rdw-gutter);
  padding-left: var(--rdw-gutter);
  background: var(--rdw-cream);
}

.rdw-grace-layout {
  width: min(var(--rdw-content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: center;
}

.rdw-grace-conviction h2 {
  margin: 0;
  color: var(--rdw-navy);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  line-height: 0.98;
}

.rdw-grace-conviction blockquote {
  margin: 28px 0 24px;
  padding: 2px 0 2px 22px;
  border-left: 3px solid var(--rdw-gold);
  color: var(--rdw-navy);
  font-size: clamp(27px, 3.5vw, 38px);
  font-style: italic;
  line-height: 1.12;
}

.rdw-grace-conviction > p {
  color: #465163;
  font-size: 17px;
  line-height: 1.7;
}

.rdw-grace-conviction .rdw-faith-note {
  margin: 26px 0 16px;
  padding: 20px;
  border: 1px solid rgba(196, 154, 75, 0.26);
  border-radius: 10px;
  color: #3d4757;
  background: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.rdw-grace-rail {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rdw-grace-rail::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 29px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--rdw-gold), rgba(196, 154, 75, 0.2));
}

.rdw-grace-rail li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 20px 16px 0;
}

.rdw-grace-rail li + li {
  border-top: 1px solid var(--rdw-line);
}

.rdw-grace-rail li > span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rdw-gold);
  border-radius: 50%;
  color: var(--rdw-gold-light);
  background: var(--rdw-navy);
  font-size: 20px;
  font-weight: 750;
  box-shadow: 0 0 0 7px var(--rdw-cream);
}

.rdw-grace-rail strong {
  display: block;
  color: var(--rdw-navy);
  font-size: 17px;
}

.rdw-grace-rail p {
  margin: 3px 0 0;
  color: var(--rdw-muted);
  font-size: 14px;
}

/* Worked household */

.rdw-household {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 26px;
}

.rdw-household__facts {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--rdw-navy);
}

.rdw-household__facts > span {
  color: var(--rdw-gold-light);
}

.rdw-household__facts ul {
  margin: 22px 0 0;
  padding-left: 1.2em;
}

.rdw-household__facts li + li {
  margin-top: 16px;
}

.rdw-household__facts li::marker {
  color: var(--rdw-gold-light);
}

.rdw-household__path {
  margin: 0;
  padding: 0;
  border: 1px solid var(--rdw-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--rdw-shadow);
  list-style: none;
}

.rdw-household__path li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 142px;
  gap: 16px;
  align-items: center;
  padding: 22px;
}

.rdw-household__path li + li {
  border-top: 1px solid var(--rdw-line);
}

.rdw-household__path li.is-leading {
  background: linear-gradient(90deg, rgba(196, 154, 75, 0.13), transparent 84%);
}

.rdw-household__path li > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rdw-gold);
  border-radius: 50%;
  color: var(--rdw-navy);
  font-weight: 750;
}

.rdw-household__path li.is-leading > span {
  color: var(--rdw-gold-light);
  background: var(--rdw-navy);
}

.rdw-household__path strong {
  display: block;
  color: var(--rdw-navy);
  font-size: 15px;
}

.rdw-household__path p {
  margin: 4px 0 0;
  color: var(--rdw-muted);
  font-size: 12px;
  line-height: 1.5;
}

.rdw-household__path b {
  color: #785c20;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.rdw-judgment {
  grid-column: 1 / -1;
  margin: 0;
  padding: clamp(28px, 5vw, 48px);
  border-left: 5px solid var(--rdw-gold);
  color: var(--rdw-navy);
  background: var(--rdw-cream);
  font-size: clamp(28px, 4vw, 43px);
  font-style: italic;
  line-height: 1.18;
}

.rdw-judgment span {
  display: block;
  margin-bottom: 12px;
  color: #826321;
  font-family: var(--rdw-sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rdw-household__answer {
  grid-column: 1 / -1;
  padding: clamp(30px, 5vw, 48px);
  border-radius: 18px;
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg, var(--rdw-navy), #07152b);
  box-shadow: var(--rdw-shadow);
}

.rdw-household__answer small {
  display: block;
  color: var(--rdw-gold-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rdw-household__answer strong {
  display: block;
  max-width: 780px;
  margin: 10px auto 0;
  font-family: var(--rdw-serif);
  font-size: clamp(31px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.05;
}

.rdw-household__answer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.71);
}

/* Recording */

.rdw-recording {
  width: min(var(--rdw-content), calc(100% - (2 * var(--rdw-gutter))));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 132px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
  border-top: 1px solid var(--rdw-line);
}

.rdw-recording__frame {
  overflow: hidden;
  border: 1px solid var(--rdw-line);
  border-radius: 20px;
  background: var(--rdw-navy);
  box-shadow: var(--rdw-shadow);
}

.rdw-recording__poster {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(196, 154, 75, 0.2), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(145deg, var(--rdw-navy-2), #07152b);
  background-size: auto, 30px 30px, 30px 30px, auto;
}

.rdw-recording__poster > span {
  color: var(--rdw-gold-light);
}

.rdw-recording__poster > strong {
  font-family: var(--rdw-serif);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  line-height: 0.95;
}

.rdw-recording__poster > small {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.rdw-recording__chapters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rdw-recording__chapters span {
  padding: 12px 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.rdw-recording__chapters span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.rdw-recording details {
  margin-top: 26px;
  border-top: 1px solid var(--rdw-line);
}

.rdw-recording summary {
  padding: 18px 0;
  color: var(--rdw-navy);
  font-weight: 700;
  cursor: pointer;
}

.rdw-recording details ol {
  margin: 0;
  padding-left: 1.3em;
  color: var(--rdw-muted);
  font-size: 13px;
}

.rdw-recording details li + li {
  margin-top: 7px;
}

.rdw-recording details p {
  color: var(--rdw-muted);
  font-size: 12px;
}

/* Artifact */

.rdw-section--artifact {
  width: 100%;
  max-width: none;
  padding-right: var(--rdw-gutter);
  padding-left: var(--rdw-gutter);
  background: var(--rdw-cream);
}

.rdw-section--artifact > * {
  width: min(var(--rdw-content), 100%);
  margin-right: auto;
  margin-left: auto;
}

.rdw-artifact {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.rdw-artifact__paper {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  border-top: 6px solid var(--rdw-gold);
  color: var(--rdw-navy);
  background:
    linear-gradient(rgba(11, 29, 58, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 29, 58, 0.025) 1px, transparent 1px),
    #fff;
  background-size: 25px 25px;
  box-shadow: var(--rdw-shadow);
}

.rdw-artifact__paper::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(196, 154, 75, 0.35);
  border-radius: 50%;
  content: "RWS";
  display: grid;
  place-items: center;
  color: rgba(196, 154, 75, 0.45);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.rdw-artifact__paper h3 {
  margin: 0;
  font-size: clamp(35px, 4vw, 48px);
  font-weight: 500;
}

.rdw-artifact__paper dl {
  margin: 30px 0 0;
}

.rdw-artifact__paper dl > div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--rdw-line);
}

.rdw-artifact__paper dt {
  color: #826321;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rdw-artifact__paper dd {
  margin: 0;
  color: #465163;
  font-size: 13px;
  line-height: 1.5;
}

.rdw-artifact__handoff {
  position: relative;
  text-align: center;
}

.rdw-artifact__handoff > span {
  position: absolute;
  top: 42%;
  left: -22px;
  color: var(--rdw-gold);
  font-size: 38px;
}

.rdw-artifact__handoff img {
  width: min(380px, 100%);
  height: auto;
  filter: drop-shadow(0 26px 28px rgba(11, 29, 58, 0.18));
}

.rdw-artifact__handoff div {
  margin-top: -26px;
}

.rdw-artifact__handoff small,
.rdw-artifact__handoff strong {
  display: block;
}

.rdw-artifact__handoff small {
  color: #826321;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rdw-artifact__handoff strong {
  margin-top: 5px;
  color: var(--rdw-navy);
  font-family: var(--rdw-serif);
  font-size: 25px;
  line-height: 1.05;
}

.rdw-artifact__handoff a {
  display: inline-block;
  margin-top: 9px;
  color: var(--rdw-navy);
  font-size: 12px;
  font-weight: 700;
}

/* Decision Map form */

.rdw-map-section {
  padding: clamp(78px, 10vw, 132px) var(--rdw-gutter);
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(196, 154, 75, 0.14), transparent 27%),
    linear-gradient(145deg, var(--rdw-navy), #061126);
  scroll-margin-top: 90px;
}

.rdw-map-shell {
  width: min(var(--rdw-content), 100%);
  margin: 0 auto;
}

.rdw-map-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
}

.rdw-map-heading .rdw-kicker {
  color: var(--rdw-gold-light);
}

.rdw-map-heading h2 {
  color: #fff;
}

.rdw-map-heading > p {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--rdw-gold);
  color: rgba(255, 255, 255, 0.7);
}

.rdw-map-privacy {
  margin-top: 36px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  border: 1px solid rgba(234, 217, 181, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.rdw-map-privacy strong {
  color: var(--rdw-gold-light);
  font-size: 12px;
}

.rdw-map-privacy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  line-height: 1.5;
}

.rdw-map-form {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(234, 217, 181, 0.25);
  border-radius: 20px;
  color: var(--rdw-ink);
  background: var(--rdw-cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.rdw-map-form > fieldset {
  margin: 0;
  padding: clamp(28px, 5vw, 46px);
  border: 0;
}

.rdw-map-form > fieldset + fieldset {
  border-top: 1px solid var(--rdw-line);
}

.rdw-map-form > fieldset > legend {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--rdw-navy);
}

.rdw-map-form > fieldset > legend span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--rdw-gold-light);
  background: var(--rdw-navy);
  font-size: 13px;
  font-weight: 750;
}

.rdw-map-form > fieldset > legend strong {
  font-family: var(--rdw-serif);
  font-size: 29px;
  font-weight: 600;
}

.rdw-map-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.rdw-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.rdw-field--wide {
  grid-column: 1 / -1;
}

.rdw-field > span,
.rdw-map-checks > legend {
  color: var(--rdw-navy);
  font-size: 12px;
  font-weight: 700;
}

.rdw-field input,
.rdw-field textarea,
.rdw-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(11, 29, 58, 0.2);
  border-radius: 8px;
  color: var(--rdw-ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.rdw-field textarea {
  min-height: 88px;
}

.rdw-field input:focus,
.rdw-field textarea:focus,
.rdw-field select:focus {
  border-color: var(--rdw-gold);
  outline: 3px solid rgba(196, 154, 75, 0.2);
  outline-offset: 1px;
}

.rdw-map-checks {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.rdw-map-checks > legend {
  width: 100%;
  margin-bottom: 10px;
}

.rdw-map-checks label {
  position: relative;
  cursor: pointer;
}

.rdw-map-checks input {
  position: absolute;
  opacity: 0;
}

.rdw-map-checks label > span {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(11, 29, 58, 0.16);
  border-radius: 9px;
  color: var(--rdw-muted);
  background: #fff;
  font-size: 10px;
  text-align: center;
}

.rdw-map-checks label b {
  color: var(--rdw-navy);
  font-size: 18px;
}

.rdw-map-checks input:focus-visible + span {
  outline: 3px solid var(--rdw-gold);
  outline-offset: 2px;
}

.rdw-map-checks input:checked + span {
  border-color: var(--rdw-gold);
  color: var(--rdw-navy);
  background: rgba(196, 154, 75, 0.13);
  box-shadow: inset 0 0 0 1px rgba(196, 154, 75, 0.2);
}

.rdw-map-actions {
  padding: 24px clamp(28px, 5vw, 46px) 30px;
  border-top: 1px solid var(--rdw-line);
  background: #fff;
}

.rdw-print-report {
  display: none;
}

/* Sources and author */

.rdw-guide--closing {
  width: min(var(--rdw-content), calc(100% - (2 * var(--rdw-gutter))));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 128px) 0;
}

.rdw-sources {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.rdw-sources h2 {
  font-size: clamp(37px, 4.7vw, 56px);
}

.rdw-sources > div > p:first-child {
  margin-top: 0;
}

.rdw-sources ul {
  margin: 24px 0 0;
  padding-left: 1.2em;
}

.rdw-sources li + li {
  margin-top: 12px;
}

.rdw-sources li::marker {
  color: var(--rdw-gold);
}

.rdw-sources a {
  color: var(--rdw-navy);
  font-size: 13px;
  font-weight: 650;
}

.rdw-sources .rdw-limits {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rdw-line);
  color: var(--rdw-muted);
  font-size: 11px;
}

.rdw-author {
  margin-top: clamp(66px, 8vw, 100px);
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--rdw-line);
  border-radius: 18px;
  background: var(--rdw-cream);
}

.rdw-author picture,
.rdw-author img {
  width: 100%;
  height: 100%;
  display: block;
}

.rdw-author img {
  min-height: 260px;
  object-fit: cover;
  object-position: 51% 40%;
}

.rdw-author > div {
  padding: clamp(30px, 5vw, 48px);
}

.rdw-author h2 {
  font-size: clamp(34px, 4vw, 46px);
}

.rdw-author > div > p:not(.rdw-kicker) {
  max-width: 700px;
  margin: 15px 0 10px;
  color: #465163;
}

.rdw-next {
  border-top: 1px solid rgba(234, 217, 181, 0.18);
}

/* Responsive */

@media (max-width: 1120px) {
  .rdw-hero {
    min-height: auto;
  }

  .rdw-hero__inner {
    grid-template-columns: 1fr;
  }

  .rdw-hero__copy {
    max-width: 820px;
  }

  .rdw-story-map {
    max-width: 820px;
  }

  .rdw-window-chart li {
    grid-template-columns: 170px minmax(240px, 1fr) 160px;
  }

  .rdw-window-chart__phases {
    margin-left: 190px;
  }
}

@media (max-width: 920px) {
  .rdw-ripple__web {
    min-height: 650px;
  }

  .rdw-ripple__web svg {
    display: none;
  }

  .rdw-ripple__center {
    top: 50%;
  }

  .rdw-ripple__web article {
    width: 220px;
  }

  .rdw-ripple__web [data-ripple-node="income"] { top: 0; }
  .rdw-ripple__web [data-ripple-node="margin"] { top: 150px; left: 0; }
  .rdw-ripple__web [data-ripple-node="portfolio"] { top: 150px; right: 0; }
  .rdw-ripple__web [data-ripple-node="taxes"] { bottom: 0; left: 4%; }
  .rdw-ripple__web [data-ripple-node="family"] { right: 4%; bottom: 0; }

  .rdw-grace-layout,
  .rdw-household,
  .rdw-recording,
  .rdw-artifact,
  .rdw-sources {
    grid-template-columns: 1fr;
  }

  .rdw-household__path {
    grid-column: 1;
  }

  .rdw-artifact__handoff > span {
    top: -34px;
    left: 50%;
    transform: rotate(90deg);
  }

  .rdw-map-checks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .rdw-hero__inner {
    width: min(100% - 40px, 720px);
  }

  .rdw-hero h1 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .rdw-story-map__stage {
    min-height: auto;
    padding: 20px;
    display: grid;
    gap: 18px;
  }

  .rdw-story-map__paths {
    display: none;
  }

  .rdw-story-map__questions,
  .rdw-story-map__center,
  .rdw-story-map__output {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    transform: none;
  }

  .rdw-story-map__questions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .rdw-story-map__questions button::after {
    display: none;
  }

  .rdw-story-map__questions button:hover,
  .rdw-story-map__questions button[aria-pressed="true"] {
    transform: none;
  }

  .rdw-story-map__center {
    border-radius: 18px;
    transform: none;
  }

  .rdw-story-map__center > strong {
    font-size: 27px;
  }

  .rdw-story-map__center > p {
    min-height: 0;
    font-size: 12px;
  }

  .rdw-story-map__center ol {
    width: min(250px, 100%);
    margin: 14px auto 10px;
  }

  .rdw-story-map__center li {
    width: 34px;
    height: 34px;
    margin: auto;
  }

  .rdw-story-map__output {
    min-height: 300px;
  }

  .rdw-story-map__output > img {
    right: 3%;
    width: 55%;
  }

  .rdw-map-paper {
    top: 13%;
    left: 12%;
    width: 44%;
  }

  .rdw-js .rdw-story-map__questions button,
  .rdw-js .rdw-story-map__center,
  .rdw-js .rdw-story-map__output {
    opacity: 1;
    animation: none !important;
    transform: none;
  }

  .rdw-window-chart__phases {
    display: none;
  }

  .rdw-window-chart ol {
    margin-top: 28px;
    border-radius: 10px;
  }

  .rdw-window-chart li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .rdw-window-chart li > div {
    order: 3;
  }

  .rdw-window-chart li > small {
    order: 2;
  }

  .rdw-order-bridge,
  .rdw-map-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rdw-order-bridge > p,
  .rdw-map-heading > p {
    padding: 20px 0 0;
    border-top: 1px solid var(--rdw-line);
    border-left: 0;
  }

  .rdw-map-heading > p {
    border-color: rgba(234, 217, 181, 0.2);
  }

  .rdw-household__path li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .rdw-household__path b {
    grid-column: 2;
    text-align: left;
  }

  .rdw-recording__poster {
    min-height: 330px;
  }

  .rdw-map-grid {
    grid-template-columns: 1fr;
  }

  .rdw-field--wide {
    grid-column: auto;
  }

  .rdw-map-privacy {
    grid-template-columns: 1fr;
  }

  .rdw-author {
    grid-template-columns: 1fr;
  }

  .rdw-author img {
    height: 280px;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .rdw-ripple__web {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .rdw-ripple__center,
  .rdw-ripple__web article {
    position: relative;
    inset: auto !important;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .rdw-ripple__center {
    min-height: 150px;
    border-radius: 14px;
  }

  .rdw-ripple__web article {
    min-height: 92px;
  }

  .rdw-map-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rdw-artifact__paper dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .rdw-hero__inner {
    width: calc(100% - 32px);
  }

  .rdw-story-map {
    padding: 10px;
    border-radius: 16px;
  }

  .rdw-story-map figcaption {
    padding: 6px 8px 12px;
  }

  .rdw-story-map__stage {
    padding: 14px;
  }

  .rdw-story-map__questions {
    grid-template-columns: 1fr;
  }

  .rdw-story-map__output {
    min-height: 240px;
  }

  .rdw-story-map__output > img {
    width: 63%;
  }

  .rdw-map-paper {
    left: 4%;
    width: 48%;
  }

  .rdw-section,
  .rdw-recording,
  .rdw-guide--closing {
    width: calc(100% - 32px);
  }

  .rdw-section--connected,
  .rdw-section--grace,
  .rdw-section--artifact {
    width: 100%;
  }

  .rdw-window-chart,
  .rdw-ripple,
  .rdw-map-form > fieldset {
    padding: 20px;
  }

  .rdw-grace-rail li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .rdw-grace-rail::before {
    left: 25px;
  }

  .rdw-grace-rail li > span {
    width: 50px;
    height: 50px;
  }

  .rdw-household__path li {
    padding: 18px 14px;
  }

  .rdw-recording__poster {
    min-height: 280px;
    padding: 28px 18px;
  }

  .rdw-recording__chapters {
    grid-template-columns: repeat(2, 1fr);
  }

  .rdw-recording__chapters span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .rdw-recording__chapters span:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .rdw-map-checks {
    grid-template-columns: 1fr;
  }

  .rdw-map-checks label > span {
    min-height: 58px;
    flex-direction: row;
  }

  .rdw-map-actions {
    padding: 20px;
  }

  .rdw-map-actions .rdw-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rdw-story-map__paths path,
  .rdw-story-map__questions button,
  .rdw-story-map__center,
  .rdw-story-map__output,
  [data-rdw-reveal] {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
  }

  [data-rdw-reveal] {
    transform: none !important;
  }
}

/* Print only the completed browser map when requested. */

@media print {
  @page {
    size: letter portrait;
    margin: 0.42in;
  }

  body.rdw-print-map > *:not(.rdw-print-report) {
    display: none !important;
  }

  body.rdw-print-map .rdw-print-report {
    display: block !important;
    color: #15213a;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9pt;
    line-height: 1.3;
  }

  .rdw-print-report header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18pt;
    padding-bottom: 10pt;
    border-bottom: 2pt solid #c49a4b;
  }

  .rdw-print-report header p,
  .rdw-print-report header h1 {
    margin: 0;
  }

  .rdw-print-report header p {
    color: #7a5c20;
    font-size: 7pt;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .rdw-print-report header h1 {
    color: #0b1d3a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22pt;
    line-height: 1;
  }

  .rdw-print-report header span {
    color: #596273;
    font-size: 7pt;
    text-align: right;
  }

  .rdw-print-report__purpose {
    margin: 10pt 0 0;
    padding: 8pt 10pt;
    border-left: 2pt solid #c49a4b;
    background: #faf7f2;
  }

  .rdw-print-report__grid {
    margin-top: 10pt;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6pt;
  }

  .rdw-print-report__item {
    min-height: 60pt;
    padding: 7pt;
    border: 0.75pt solid #cbd0d8;
    break-inside: avoid;
  }

  .rdw-print-report__item--wide {
    grid-column: 1 / -1;
  }

  .rdw-print-report__item dt {
    margin: 0 0 4pt;
    color: #7a5c20;
    font-size: 6.5pt;
    font-weight: bold;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .rdw-print-report__item dd {
    margin: 0;
    white-space: pre-wrap;
  }

  .rdw-print-report footer {
    margin-top: 8pt;
    padding-top: 6pt;
    border-top: 0.75pt solid #cbd0d8;
    color: #596273;
    font-size: 6.5pt;
  }
}
