@charset "UTF-8";
@import url("fonts/fonts.css");
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --ink: #183b46;
  --ink-deep: #102d35;
  --paper: #fbf7ee;
  --paper-warm: #f2ecdf;
  --line: #d8d1c3;
  --coral: #ea5a4f;
  --coral-deep: #c94740;
  --olive: #71826e;
  --olive-pale: #e3e8df;
  --sky-pale: #e0edf0;
  --sand: #eadfca;
  --background: var(--paper);
  --foreground: var(--ink);
  --border: var(--line);
  --primary: var(--ink);
  --primary-foreground: var(--paper);
  --muted: var(--paper-warm);
  --muted-foreground: #5c6766;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-anchor: none;
  background: var(--paper);
}
body {
  background: var(--paper);
  min-width: 320px;
  color: var(--ink);
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
.shell-wide {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}
.site-shell {
  overflow: clip;
}
.sale-note {
  background: var(--coral);
  color: #fffaf0;
  letter-spacing: 0.01em;
  font-size: 11px;
}
.sale-note__inner {
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 34px;
  display: flex;
}
.sale-note strong {
  font-weight: 800;
}
.sale-note__link {
  white-space: nowrap;
  border-bottom: 1px solid #ffffff8c;
  align-items: center;
  gap: 5px;
  font-weight: 800;
  display: inline-flex;
}
.site-header {
  z-index: 50;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #fbf7eef0;
  border-bottom: 1px solid #183b4624;
  position: sticky;
  top: 0;
}
.site-header__inner {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 75px;
  display: flex;
}
.brand {
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
  display: inline-flex;
}
.brand__mark {
  object-fit: contain;
  width: 29px;
  height: 29px;
}
.brand__wordmark {
  letter-spacing: -0.045em;
  font-family:
    DM Serif Display,
    serif;
  font-size: 25px;
  line-height: 1;
}
.brand__wordmark span {
  color: var(--coral);
  letter-spacing: -0.03em;
  font-size: 0.68em;
}
.desktop-nav {
  align-items: center;
  gap: 22px;
  height: 75px;
  margin-left: auto;
  display: flex;
}
.desktop-nav a {
  color: #3d565c;
  transition: color 0.16s var(--ease-out);
  font-size: 12px;
  font-weight: 800;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  background: var(--coral);
  transform-origin: 100%;
  width: 100%;
  height: 2px;
  transition: transform 0.18s var(--ease-out);
  position: absolute;
  bottom: -8px;
  left: 0;
  transform: scaleX(0);
}
.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ink);
}
.desktop-nav a:hover:after,
.desktop-nav a.is-active:after {
  transform-origin: 0;
  transform: scaleX(1);
}
.header-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}
.header-tool {
  color: var(--ink);
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
}
.menu-toggle {
  background: 0 0;
  border: 0;
  padding: 7px;
  display: none;
}
.mobile-nav {
  display: none;
}
.eyebrow {
  color: #526267;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  display: flex;
}
.eyebrow__dash {
  background: var(--coral);
  width: 23px;
  height: 2px;
  display: inline-block;
}
.button {
  color: #fff;
  min-height: 44px;
  transition:
    transform 0.16s var(--ease-out),
    background 0.16s var(--ease-out),
    box-shadow 0.16s var(--ease-out);
  border: 1px solid #0000;
  border-radius: 1px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #102d3524;
}
.button:active {
  transform: scale(0.97);
}
.button--coral {
  background: var(--coral);
}
.button--coral:hover {
  background: var(--coral-deep);
}
.button--ink {
  background: var(--ink);
}
.button--light {
  background: var(--paper);
  color: var(--ink);
}
.text-action,
.card-link {
  color: var(--ink);
  transition:
    gap 0.18s var(--ease-out),
    color 0.18s var(--ease-out);
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}
.text-action:hover,
.card-link:hover {
  color: var(--coral-deep);
  gap: 11px;
}
.hero {
  background: var(--paper);
  padding: 64px 0 34px;
  position: relative;
}
.hero:before {
  content: "";
  background: var(--paper-warm);
  border-left: 1px solid var(--line);
  width: 34vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.hero__grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: 52px;
  display: grid;
  position: relative;
}
.hero__copy {
  padding: 22px 0 34px;
}
.hero h1 {
  max-width: 640px;
  color: var(--ink-deep);
  letter-spacing: -0.055em;
  margin-bottom: 21px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.97;
}
.hero h1 em {
  color: var(--coral);
  font-style: italic;
}
.hero__lede {
  color: #40565b;
  max-width: 510px;
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.72;
}
.hero__actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  display: flex;
}
.hero__proof {
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 12px;
  max-width: 390px;
  margin-top: 44px;
  padding-top: 18px;
  display: flex;
}
.proof-mark {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 28px;
}
.hero__proof p {
  color: #5e6c6c;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}
.hero__visual {
  min-height: 495px;
  margin-right: -40px;
  position: relative;
}
.hero__visual > img {
  object-fit: cover;
  filter: saturate(0.82) contrast(0.98);
  width: 100%;
  height: 495px;
}
.hero__visual:before {
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #f2ecdf52, #0000 45%);
  position: absolute;
  inset: 0;
}
.hero__caption {
  z-index: 2;
  background: var(--ink);
  color: #fff;
  padding: 14px 16px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 19px;
  line-height: 1.1;
  position: absolute;
  bottom: 27px;
  left: -23px;
}
.hero__caption span {
  color: #c8d4d4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: Manrope, sans-serif;
  font-size: 9px;
  font-weight: 700;
  display: block;
}
.hero__pin {
  z-index: 2;
  align-items: center;
  gap: 7px;
  display: flex;
  position: absolute;
  box-shadow: 0 8px 20px #102d3521;
}
.hero__pin small {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.15;
}
.hero__pin--one {
  background: var(--coral);
  color: #fff;
  padding: 8px 11px;
  top: 36px;
  right: 18px;
  transform: rotate(2deg);
}
.hero__pin--one span {
  font-family:
    DM Serif Display,
    serif;
  font-size: 27px;
  line-height: 1;
}
.hero__pin--two {
  background: var(--olive-pale);
  color: var(--ink);
  padding: 9px 11px;
  bottom: 92px;
  right: 42px;
  transform: rotate(-3deg);
}
.signal-section {
  background: var(--paper-warm);
  padding: 91px 0;
}
.section-heading {
  justify-content: space-between;
  align-items: flex-end;
  gap: 26px;
  margin-bottom: 35px;
  display: flex;
}
.section-heading--inline > p {
  color: #5d6a68;
  max-width: 280px;
  margin-bottom: 7px;
  font-size: 13px;
}
.section-heading h2,
.annual-intro h2,
.review-section h2,
.closing-section h2 {
  letter-spacing: -0.045em;
  margin-bottom: 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
}
.signal-grid {
  border-top: 1px solid #183b4638;
  border-left: 1px solid #183b4638;
  grid-template-columns: repeat(6, 1fr);
  display: grid;
}
.signal-card {
  min-height: 220px;
  transition:
    background 0.19s var(--ease-out),
    transform 0.19s var(--ease-out);
  background: #ffffff30;
  border-bottom: 1px solid #183b4638;
  border-right: 1px solid #183b4638;
  padding: 20px 17px 18px;
  position: relative;
}
.signal-card:hover {
  z-index: 1;
  background: var(--paper);
  box-shadow: 8px 10px 0 var(--ink);
  transform: translate(-4px, -4px);
}
.signal-card__number {
  color: #718080;
  margin-bottom: 33px;
  font-size: 9px;
  font-weight: 800;
  display: block;
}
.signal-card h3 {
  margin: 13px 0 7px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.signal-card p {
  color: #586764;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.55;
}
.signal-card__arrow {
  opacity: 0;
  transition:
    opacity 0.18s var(--ease-out),
    transform 0.18s var(--ease-out);
  position: absolute;
  bottom: 16px;
  right: 15px;
  transform: translate(-4px, 4px);
}
.signal-card:hover .signal-card__arrow {
  opacity: 1;
  transform: none;
}
.signal-card--coral svg {
  color: var(--coral);
}
.signal-card--olive svg {
  color: var(--olive);
}
.signal-card--blue svg {
  color: #397b8a;
}
.signal-card--sand svg {
  color: #b07b53;
}
.featured-story {
  background: var(--paper);
  padding: 88px 0;
}
.featured-story__grid {
  grid-template-columns: 0.52fr 1.25fr 0.55fr;
  align-items: center;
  gap: 27px;
  display: grid;
}
.featured-story__aside {
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding-right: 13px;
  display: flex;
}
.side-index {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 33px;
}
.aside-quote {
  color: var(--ink);
  font-family:
    DM Serif Display,
    serif;
  font-size: 22px;
  line-height: 1.12;
}
.featured-story__note {
  border-left: 3px solid var(--olive);
  padding: 20px 0 20px 17px;
}
.featured-story__note svg {
  color: var(--olive);
  margin-bottom: 14px;
}
.featured-story__note p {
  color: #536260;
  font-size: 11px;
  line-height: 1.65;
}
.featured-story__note strong {
  color: var(--ink);
}
.featured-story__note span {
  color: var(--coral);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.editorial-card {
  background: #fffdf8;
  box-shadow: 0 2px #183b461a;
}
.editorial-card__image {
  background: var(--paper-warm);
  height: 210px;
  display: block;
  position: relative;
  overflow: hidden;
}
.editorial-card__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.55s var(--ease-out);
}
.editorial-card:hover .editorial-card__image img {
  transform: scale(1.04);
}
.image-tint {
  mix-blend-mode: multiply;
  opacity: 0.16;
  position: absolute;
  inset: 0;
}
.image-tint--coral {
  background: var(--coral);
}
.image-tint--olive {
  background: var(--olive);
}
.image-tint--blue {
  background: #357e8e;
}
.editorial-card__body {
  padding: 20px;
}
.editorial-card__body h3 {
  margin: 12px 0 10px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.08;
}
.editorial-card__body h3 a:hover {
  color: var(--coral-deep);
}
.editorial-card__body > p {
  color: #526364;
  min-height: 46px;
  margin-bottom: 16px;
  font-size: 11px;
  line-height: 1.65;
}
.card-meta {
  color: #6a7774;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  display: flex;
}
.card-meta span:last-child {
  align-items: center;
  gap: 4px;
  display: inline-flex;
}
.editorial-card--feature .editorial-card__image {
  height: 315px;
}
.editorial-card--feature .editorial-card__body {
  padding: 23px 25px 25px;
}
.editorial-card--feature .editorial-card__body h3 {
  font-size: 33px;
}
.annual-section {
  background: var(--ink);
  color: #fff;
  padding: 87px 0 67px;
}
.annual-intro {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 38px;
  display: grid;
}
.annual-intro .eyebrow {
  color: #b8cbcc;
}
.annual-intro .eyebrow__dash {
  background: var(--coral);
}
.annual-intro h2 em {
  color: #f1c9a6;
}
.annual-intro > p {
  color: #cfdddd;
  max-width: 370px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.7;
}
.cost-grid {
  border: 1px solid #ffffff3b;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
.cost-card {
  color: #fff;
  min-height: 205px;
  transition: background 0.19s var(--ease-out);
  border-right: 1px solid #ffffff3b;
  padding: 18px;
  position: relative;
}
.cost-card:last-child {
  border-right: 0;
}
.cost-card:hover {
  background: #28515b;
}
.cost-card__top {
  color: #b8cbcc;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
  display: flex;
}
.cost-card > p {
  color: #bacbcd;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 40px 0 8px;
  font-size: 10px;
  font-weight: 800;
}
.cost-card h3 {
  max-width: 180px;
  margin-bottom: 8px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.04;
}
.cost-card small {
  color: #b9c9c9;
  font-size: 10px;
}
.cost-card__arrow {
  color: #f2c4b6;
  position: absolute;
  bottom: 17px;
  right: 18px;
}
.annual-cta {
  border-bottom: 1px solid #ffffff38;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 29px 0;
  display: flex;
}
.annual-cta > div {
  align-items: center;
  gap: 14px;
  display: flex;
}
.annual-cta svg {
  color: #f2c4b6;
}
.annual-cta p {
  color: #d9e3e2;
  margin: 0;
  font-size: 12px;
}
.annual-cta p strong {
  color: #fff;
}
.read-section {
  padding: 88px 0;
}
.story-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}
.method-card {
  background: var(--olive-pale);
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  display: flex;
}
.method-card svg {
  color: var(--olive);
}
.method-card .eyebrow {
  margin-top: 45px;
  margin-bottom: 9px;
}
.method-card h3 {
  margin-bottom: 13px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.06;
}
.method-card > p:not(.eyebrow) {
  color: #53615b;
  margin-bottom: 25px;
  font-size: 11px;
  line-height: 1.65;
}
.method-card .card-link {
  margin-top: auto;
}
.review-section {
  background: var(--sky-pale);
  padding: 74px 0;
}
.review-section__grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
  display: grid;
}
.review-section__title > svg {
  color: #277586;
  margin-bottom: 23px;
}
.review-section__title .eyebrow {
  color: #476d76;
}
.review-section__title h2 {
  margin-bottom: 18px;
}
.review-section__title > p:not(.eyebrow) {
  color: #51666b;
  max-width: 380px;
  font-size: 13px;
  line-height: 1.7;
}
.review-section__title .button {
  margin-top: 14px;
}
.review-list {
  border-top: 1px solid #183b4645;
}
.review-item {
  border-bottom: 1px solid #183b4645;
  grid-template-columns: 56px 26px 1fr 20px;
  align-items: center;
  gap: 11px;
  padding: 17px 0;
  display: grid;
}
.review-item > span {
  color: #43737f;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.review-item > svg {
  color: var(--coral);
}
.review-item div strong {
  margin-bottom: 2px;
  font-size: 12px;
  display: block;
}
.review-item div p {
  color: #5d6e70;
  margin: 0;
  font-size: 10px;
}
.review-item > svg:last-child {
  color: var(--olive);
  justify-self: end;
}
.directory-preview {
  padding: 92px 0;
}
.directory-preview__grid {
  grid-template-columns: 0.87fr 1.13fr;
  gap: 75px;
  display: grid;
}
.directory-preview h2 {
  letter-spacing: -0.045em;
  margin-bottom: 18px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
}
.directory-preview > div > p:not(.eyebrow) {
  color: #566362;
  max-width: 440px;
  margin-bottom: 27px;
  font-size: 13px;
  line-height: 1.7;
}
.directory-mini-list {
  border-top: 1px solid var(--line);
}
.directory-mini {
  border-bottom: 1px solid var(--line);
  transition: padding 0.18s var(--ease-out);
  grid-template-columns: 42px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  display: grid;
}
.directory-mini:hover {
  padding-left: 8px;
}
.directory-mini > span {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 19px;
}
.directory-mini strong {
  font-size: 13px;
  display: block;
}
.directory-mini p {
  color: #63716e;
  margin: 2px 0 0;
  font-size: 10px;
}
.directory-mini > svg {
  color: var(--olive);
}
.closing-section {
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
  padding: 70px 0;
}
.closing-section__grid {
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 130px;
  display: grid;
}
.closing-section h2 {
  font-size: clamp(38px, 4vw, 57px);
}
.closing-section__grid > div:last-child > p {
  color: #546363;
  margin-bottom: 27px;
  font-size: 13px;
  line-height: 1.75;
}
.closing-section__actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  display: flex;
}
.page-intro {
  border-bottom: 1px solid var(--line);
  padding: 66px 0 56px;
  position: relative;
}
.page-intro:after {
  background: var(--coral);
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 0;
  right: 13%;
}
.page-intro--olive {
  background: var(--olive-pale);
}
.page-intro--blue {
  background: var(--sky-pale);
}
.page-intro--coral {
  background: #f8e3dd;
}
.page-intro--sand {
  background: var(--sand);
}
.page-intro__grid {
  grid-template-columns: 1.05fr 0.65fr;
  align-items: end;
  gap: 110px;
  display: grid;
}
.page-intro h1 {
  letter-spacing: -0.055em;
  max-width: 750px;
  margin-bottom: 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(43px, 5.4vw, 73px);
  font-weight: 400;
  line-height: 0.98;
}
.page-intro__copy {
  padding-bottom: 4px;
}
.page-intro__copy > svg {
  color: var(--coral);
  margin-bottom: 18px;
}
.page-intro__copy > p {
  color: #4d6264;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.72;
}
.page-intro__note {
  color: #586968;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid #183b4642;
  padding-top: 9px;
  font-size: 9px;
  font-weight: 800;
  display: inline-block;
}
.hub-feature {
  padding: 72px 0;
}
.hub-feature__grid {
  grid-template-columns: 0.34fr 1.2fr 0.55fr;
  align-items: stretch;
  gap: 25px;
  display: grid;
}
.hub-feature__index {
  border-right: 1px solid var(--line);
  padding-top: 7px;
}
.hub-feature__index span {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 34px;
}
.hub-feature__index p {
  color: #62716f;
  max-width: 110px;
  font-size: 10px;
  line-height: 1.55;
}
.hub-aside {
  background: var(--paper-warm);
  flex-direction: column;
  padding: 19px;
  display: flex;
}
.hub-aside > svg {
  color: var(--coral);
}
.hub-aside .eyebrow {
  margin-top: auto;
  margin-bottom: 8px;
}
.hub-aside h3 {
  margin-bottom: 11px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
}
.hub-aside > p:not(.eyebrow) {
  color: #5d6a67;
  font-size: 10px;
  line-height: 1.65;
}
.hub-aside .card-link {
  margin-top: auto;
}
.check-section {
  background: var(--ink);
  color: #fff;
  padding: 72px 0;
}
.check-section__grid {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 87px;
  display: grid;
}
.check-section .eyebrow {
  color: #b7cdcf;
}
.check-section h2,
.criteria-section h2,
.savings-steps h2,
.news-board h2,
.hub-more h2,
.last-cta h2 {
  letter-spacing: -0.045em;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
}
.check-section > div > div > p:not(.eyebrow) {
  color: #d3dfde;
  max-width: 390px;
  font-size: 12px;
  line-height: 1.75;
}
.check-list {
  border-top: 1px solid #ffffff4d;
}
.check-list > div {
  border-bottom: 1px solid #ffffff4d;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 13px;
  padding: 18px 0;
  display: grid;
}
.check-list span {
  color: #eab2a8;
  font-family:
    DM Serif Display,
    serif;
  font-size: 20px;
}
.check-list p {
  margin: 0;
  font-size: 13px;
}
.check-list svg {
  color: #b8d0bf;
}
.criteria-section,
.savings-steps,
.news-board,
.hub-more {
  padding: 82px 0;
}
.criteria-grid {
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
.criteria-grid article {
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 250px;
  padding: 20px;
}
.criteria-grid article > span {
  color: var(--coral);
  margin-bottom: 40px;
  font-size: 10px;
  font-weight: 800;
  display: block;
}
.criteria-grid article svg {
  color: var(--olive);
}
.criteria-grid h3 {
  margin: 14px 0 7px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.05;
}
.criteria-grid p {
  color: #61706d;
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}
.inline-guidance {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 11px;
  margin-top: 25px;
  padding: 14px 0;
  display: flex;
}
.inline-guidance svg {
  color: var(--coral);
  flex-shrink: 0;
}
.inline-guidance p {
  color: #546363;
  margin: 0;
  font-size: 11px;
}
.savings-steps {
  background: var(--olive-pale);
}
.steps-row {
  border-top: 1px solid #183b4642;
  border-left: 1px solid #183b4642;
  grid-template-columns: repeat(3, 1fr) 0.6fr;
  display: grid;
}
.steps-row article,
.steps-row__tool {
  border-bottom: 1px solid #183b4642;
  border-right: 1px solid #183b4642;
  min-height: 220px;
  padding: 19px;
}
.steps-row article span {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 28px;
}
.steps-row article h3 {
  margin: 33px 0 7px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 23px;
  font-weight: 400;
}
.steps-row article p {
  color: #52645d;
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}
.steps-row__tool {
  background: var(--ink);
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}
.steps-row__tool svg:first-child {
  color: #f0c2ad;
}
.steps-row__tool strong {
  font-family:
    DM Serif Display,
    serif;
  font-size: 25px;
  font-weight: 400;
}
.steps-row__tool svg:last-child {
  align-self: flex-end;
}
.news-board {
  background: var(--sky-pale);
}
.news-list {
  border-top: 1px solid #183b464d;
}
.news-list article {
  border-bottom: 1px solid #183b464d;
  grid-template-columns: 55px 1fr 30px;
  align-items: center;
  gap: 19px;
  padding: 21px 0;
  display: grid;
}
.news-list > article > span {
  color: #337789;
  font-family:
    DM Serif Display,
    serif;
  font-size: 23px;
}
.news-list .eyebrow {
  margin-bottom: 4px;
}
.news-list h3 {
  margin: 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: 25px;
  font-weight: 400;
}
.news-list article > a {
  color: var(--coral);
  justify-self: end;
}
.hub-cta {
  background: var(--sand);
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  display: flex;
}
.hub-cta svg {
  color: var(--coral);
}
.hub-cta .eyebrow {
  margin-top: 43px;
  margin-bottom: 9px;
}
.hub-cta h3 {
  margin-bottom: 11px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.05;
}
.hub-cta p:not(.eyebrow) {
  color: #5e6159;
  font-size: 11px;
  line-height: 1.65;
}
.hub-cta .card-link {
  margin-top: auto;
}
.last-cta {
  background: var(--paper-warm);
  padding: 48px 0;
}
.last-cta > div {
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  display: flex;
}
.last-cta h2 {
  margin: 0;
}
.tools-intro {
  padding: 78px 0;
}
.tools-intro__grid {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
  display: grid;
}
.tools-intro__grid > div > svg {
  color: var(--coral);
}
.tools-intro h2 {
  letter-spacing: -0.045em;
  max-width: 470px;
  margin: 14px 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(37px, 4.5vw, 57px);
  font-weight: 400;
  line-height: 1;
}
.tools-intro > div > div > p:not(.eyebrow) {
  color: #526363;
  max-width: 470px;
  font-size: 13px;
  line-height: 1.75;
}
.tool-principles {
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  gap: 14px;
  display: grid;
}
.tool-principles > div {
  border-top: 2px solid var(--ink);
  padding: 15px 10px;
}
.tool-principles svg {
  color: var(--olive);
}
.tool-principles p {
  color: #60706d;
  margin: 15px 0 0;
  font-size: 10px;
  line-height: 1.6;
}
.tool-principles strong {
  color: var(--ink);
}
.calendar-panel {
  background: var(--ink);
  color: #fff;
  padding: 75px 0;
}
.calendar-panel__grid {
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  display: grid;
}
.calendar-panel__grid > div > svg {
  color: #edb6aa;
}
.calendar-panel .eyebrow {
  color: #c4d0d0;
  margin-top: 17px;
}
.calendar-panel h2 {
  letter-spacing: -0.045em;
  margin-bottom: 17px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(35px, 4vw, 53px);
  font-weight: 400;
  line-height: 1;
}
.calendar-panel__grid > div > p:not(.eyebrow) {
  color: #cfdddd;
  max-width: 390px;
  font-size: 12px;
  line-height: 1.7;
}
.calendar-cards {
  border-top: 1px solid #ffffff47;
  border-left: 1px solid #ffffff47;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  display: grid;
}
.calendar-cards article {
  border-bottom: 1px solid #ffffff47;
  border-right: 1px solid #ffffff47;
  min-height: 190px;
  padding: 15px;
}
.calendar-cards span {
  color: #edb6aa;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 9px;
  font-weight: 800;
  display: block;
}
.calendar-cards svg {
  color: #a9c8b0;
}
.calendar-cards strong {
  margin: 12px 0 6px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.08;
  display: block;
}
.calendar-cards p {
  color: #c2d0d0;
  margin: 0;
  font-size: 9px;
  line-height: 1.6;
}
.calculator-section {
  padding: 76px 0;
}
.calculator-grid {
  grid-template-columns: 1fr 0.9fr;
  gap: 0;
  max-width: 980px;
  display: grid;
}
.calculator-card {
  background: var(--paper-warm);
  padding: 34px;
}
.calculator-card__header {
  align-items: center;
  gap: 13px;
  margin-bottom: 32px;
  display: flex;
}
.calculator-card__header > svg {
  color: var(--coral);
}
.calculator-card__header .eyebrow {
  margin-bottom: 2px;
}
.calculator-card h2 {
  margin: 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: 31px;
  font-weight: 400;
}
.calculator-card > label,
.calculator-card legend {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  display: block;
}
.amount-input {
  border-bottom: 2px solid var(--ink);
  align-items: center;
  display: flex;
}
.amount-input input {
  width: 100%;
  color: var(--ink);
  background: 0 0;
  border: 0;
  outline: 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: 48px;
  line-height: 1.1;
}
.amount-input span {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 34px;
}
.input-help {
  color: #64716e;
  margin: 8px 0 25px;
  font-size: 9px;
}
.calculator-card fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.frequency-options {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  display: grid;
}
.frequency-options label {
  cursor: pointer;
  border: 1px solid var(--line);
  transition:
    border-color 0.17s var(--ease-out),
    background 0.17s var(--ease-out);
  background: #fff6;
  padding: 9px;
  font-size: 10px;
  font-weight: 700;
}
.frequency-options label.is-selected {
  border-color: var(--ink);
  background: #fff;
}
.frequency-options input {
  opacity: 0;
  position: absolute;
}
.result-card {
  background: var(--ink);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.result-card:before {
  content: "";
  border: 1px solid #ffffff2e;
  border-radius: 50%;
  width: 230px;
  height: 230px;
  position: absolute;
  top: -90px;
  right: -90px;
}
.result-card .eyebrow {
  color: #c7d5d5;
}
.result-figure {
  color: #fffdf6;
  letter-spacing: -0.055em;
  margin: 8px 0 10px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(54px, 6vw, 78px);
  line-height: 0.9;
  position: relative;
}
.result-figure small {
  color: #efb1a7;
  font-size: 0.5em;
}
.result-card > p:not(.eyebrow):not(.result-figure) {
  color: #d4e0df;
  max-width: 290px;
  font-size: 12px;
  line-height: 1.7;
}
.result-rule {
  background: var(--coral);
  width: 45px;
  height: 2px;
  margin: 20px 0 14px;
}
.result-note {
  color: #c6d5d4;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  line-height: 1.55;
  display: flex;
}
.result-note svg {
  color: #a9c8b0;
  flex-shrink: 0;
  margin-top: 1px;
}
.calculator-explain {
  background: var(--sky-pale);
  padding: 64px 0;
}
.explain-grid {
  border-top: 1px solid #183b4645;
  border-left: 1px solid #183b4645;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.explain-grid > div {
  border-bottom: 1px solid #183b4645;
  border-right: 1px solid #183b4645;
  min-height: 200px;
  padding: 19px;
}
.explain-grid span {
  color: #367d8d;
  font-family:
    DM Serif Display,
    serif;
  font-size: 29px;
}
.explain-grid h3 {
  margin: 35px 0 7px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 24px;
  font-weight: 400;
}
.explain-grid p {
  color: #50666a;
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}
.directory-section {
  padding: 70px 0 83px;
}
.directory-controls {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding-bottom: 22px;
  display: grid;
}
.directory-search {
  border-bottom: 2px solid var(--ink);
  align-items: center;
  gap: 10px;
  max-width: 390px;
  padding-bottom: 7px;
  display: flex;
}
.directory-search input {
  background: 0 0;
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 12px;
}
.filter-row {
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  gap: 6px;
  display: flex;
}
.filter-row > svg {
  color: var(--coral);
  margin-right: 4px;
}
.filter-row button {
  color: #60706d;
  transition:
    color 0.16s var(--ease-out),
    border-color 0.16s var(--ease-out);
  background: 0 0;
  border: 0;
  border-bottom: 1px solid #0000;
  padding: 4px 6px;
  font-size: 10px;
  font-weight: 800;
}
.filter-row button.is-active,
.filter-row button:hover {
  border-color: var(--coral);
  color: var(--ink);
}
.directory-results {
  color: #65716f;
  justify-content: space-between;
  padding: 17px 0;
  font-size: 10px;
  display: flex;
}
.directory-results p {
  margin: 0;
}
.directory-results strong {
  color: var(--ink);
}
.directory-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  display: grid;
}
.directory-card {
  border: 1px solid var(--line);
  min-height: 245px;
  transition:
    transform 0.18s var(--ease-out),
    box-shadow 0.18s var(--ease-out);
  background: #fffdf8;
  flex-direction: column;
  padding: 18px;
  display: flex;
}
.directory-card:hover {
  box-shadow: 6px 7px 0 var(--ink);
  transform: translate(-3px, -3px);
}
.directory-card--featured {
  border-color: var(--coral);
  background: #fff5f0;
}
.directory-card__top {
  color: var(--coral);
  justify-content: space-between;
  font-family:
    DM Serif Display,
    serif;
  font-size: 19px;
  display: flex;
}
.directory-card__top em {
  background: var(--coral);
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 6px;
  font-family: Manrope, sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.directory-card .eyebrow {
  margin: 29px 0 8px;
}
.directory-card h2 {
  margin: 0 0 9px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}
.directory-card > p:not(.eyebrow) {
  color: #596865;
  font-size: 10px;
  line-height: 1.65;
}
.directory-card__bottom {
  border-top: 1px solid var(--line);
  color: #5a6864;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
}
.directory-card__bottom svg {
  color: var(--olive);
}
.directory-policy {
  background: var(--olive-pale);
  padding: 44px 0;
}
.directory-policy > div {
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 24px;
  display: grid;
}
.directory-policy > div > svg {
  color: var(--olive);
}
.directory-policy h2 {
  margin: 3px 0 6px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 30px;
  font-weight: 400;
}
.directory-policy p:not(.eyebrow) {
  color: #52635e;
  max-width: 600px;
  margin-bottom: 0;
  font-size: 11px;
  line-height: 1.6;
}
.detail-hero {
  background: var(--paper-warm);
  padding: 52px 0 64px;
}
.breadcrumbs {
  color: #687470;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 45px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
}
.breadcrumbs a:hover {
  color: var(--coral);
}
.detail-hero__grid {
  grid-template-columns: 1fr 0.5fr;
  align-items: end;
  gap: 100px;
  display: grid;
}
.detail-hero h1 {
  letter-spacing: -0.06em;
  margin-bottom: 16px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(49px, 6vw, 77px);
  font-weight: 400;
  line-height: 0.9;
}
.detail-hero__grid > div > p:not(.eyebrow) {
  color: #536563;
  max-width: 580px;
  font-size: 14px;
  line-height: 1.7;
}
.detail-hero aside {
  border-top: 3px solid var(--coral);
  background: #fffaf0;
  padding: 17px;
}
.detail-hero aside .eyebrow {
  margin-bottom: 9px;
}
.detail-hero aside strong {
  margin-bottom: 8px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.05;
  display: block;
}
.detail-hero aside span {
  color: #61706d;
  font-size: 10px;
}
.profile-content {
  padding: 75px 0;
}
.profile-content__grid {
  grid-template-columns: 1fr 0.42fr;
  gap: 122px;
  display: grid;
}
.profile-content article h2 {
  margin: 13px 0 17px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(35px, 4vw, 51px);
  font-weight: 400;
  line-height: 1.02;
}
.profile-content article p:not(.eyebrow) {
  color: #526361;
  max-width: 635px;
  font-size: 13px;
  line-height: 1.8;
}
.profile-content article h3 {
  margin: 31px 0 9px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 28px;
  font-weight: 400;
}
.profile-facts {
  border-top: 1px solid var(--line);
  align-self: start;
}
.profile-facts > div {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.profile-facts span,
.profile-facts strong {
  display: block;
}
.profile-facts span {
  color: #6b7672;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.profile-facts strong {
  margin-top: 3px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 20px;
  font-weight: 400;
}
.profile-facts .text-action {
  margin-top: 20px;
}
.profile-next {
  background: var(--ink);
  color: #fff;
  padding: 49px 0;
}
.profile-next > div {
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  display: flex;
}
.profile-next .eyebrow {
  color: #c1d1d0;
}
.profile-next h2 {
  margin-bottom: 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(34px, 4vw, 51px);
  font-weight: 400;
  line-height: 1;
}
.article-page {
  padding: 40px 0 78px;
}
.article-header {
  max-width: 900px;
  padding-bottom: 34px;
}
.article-header h1,
.comparison-hero h1 {
  letter-spacing: -0.06em;
  margin-bottom: 18px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(46px, 5.8vw, 80px);
  font-weight: 400;
  line-height: 0.93;
}
.article-header > p:not(.eyebrow) {
  color: #526260;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.75;
}
.article-meta {
  color: #6a7673;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
}
.article-cover {
  object-fit: cover;
  filter: saturate(0.84);
  width: 100%;
  height: min(50vw, 490px);
}
.article-layout {
  grid-template-columns: 0.25fr 0.75fr;
  gap: 70px;
  padding-top: 64px;
  display: grid;
}
.article-toc {
  border-top: 2px solid var(--ink);
  align-self: start;
  padding-top: 10px;
  position: sticky;
  top: 112px;
}
.article-toc p {
  color: #667370;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.article-toc a {
  color: #4f6260;
  margin: 11px 0;
  font-size: 10px;
  font-weight: 700;
  display: block;
}
.article-toc a:hover {
  color: var(--coral);
}
.article-body {
  max-width: 700px;
}
.article-body section {
  margin-bottom: 62px;
}
.article-kicker {
  color: var(--coral);
  letter-spacing: 0.11em;
  font-size: 10px;
  font-weight: 800;
}
.article-body h2 {
  margin-bottom: 17px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(33px, 4vw, 49px);
  font-weight: 400;
  line-height: 1.02;
}
.article-body p {
  color: #51625f;
  font-size: 14px;
  line-height: 1.85;
}
.article-note {
  border-left: 3px solid var(--coral);
  background: #f9e4de;
  gap: 12px;
  margin: 26px 0;
  padding: 15px;
  display: flex;
}
.article-note svg {
  color: var(--coral);
  flex-shrink: 0;
}
.article-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
}
.article-check {
  border-top: 1px solid var(--line);
  margin-top: 25px;
}
.article-check div {
  border-bottom: 1px solid var(--line);
  color: #49605e;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}
.article-check svg {
  color: var(--olive);
}
.article-body blockquote {
  border-left: 3px solid var(--olive);
  color: var(--ink);
  margin: 28px 0;
  padding: 5px 0 5px 20px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 27px;
  line-height: 1.15;
}
.source-box {
  background: var(--sky-pale);
  gap: 13px;
  padding: 17px;
  display: flex;
}
.source-box > svg {
  color: #367d8d;
  flex-shrink: 0;
}
.source-box strong,
.source-box a {
  display: block;
}
.source-box strong {
  margin-bottom: 5px;
  font-size: 11px;
}
.source-box a {
  color: #366a76;
  margin: 6px 0;
  font-size: 10px;
  font-weight: 800;
}
.source-box a svg {
  vertical-align: text-bottom;
}
.article-next {
  background: var(--paper-warm);
  padding: 46px 0;
}
.article-next > div {
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  display: flex;
}
.article-next h2 {
  margin: 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(33px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
}
.comparison-hero {
  background: var(--sky-pale);
  padding: 42px 0 67px;
}
.comparison-hero > div > p:not(.eyebrow) {
  color: #4c6468;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.75;
}
.comparison-body {
  padding: 78px 0;
}
.comparison-body__grid {
  grid-template-columns: 0.46fr 1.54fr;
  gap: 70px;
  display: grid;
}
.comparison-body aside > svg {
  color: var(--coral);
}
.comparison-body aside h2 {
  margin: 12px 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}
.comparison-body aside p:not(.eyebrow) {
  color: #5c6a68;
  font-size: 11px;
}
.comparison-table {
  border-top: 2px solid var(--ink);
}
.comparison-table__head,
.comparison-table__row {
  grid-template-columns: 55px 1.1fr 0.9fr;
  gap: 20px;
  display: grid;
}
.comparison-table__head {
  color: #687774;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 0;
  font-size: 9px;
  font-weight: 800;
}
.comparison-table__head span:first-child {
  grid-column: 2;
}
.comparison-table__row {
  border-top: 1px solid var(--line);
  align-items: center;
  padding: 17px 0;
}
.comparison-table__row > span:first-child {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 22px;
}
.comparison-table__row strong {
  margin-bottom: 4px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
  display: block;
}
.comparison-table__row p,
.comparison-table__row > span:last-child {
  color: #5f6d6a;
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
}
.comparison-path {
  background: var(--olive-pale);
  padding: 70px 0;
}
.comparison-path__steps {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  display: grid;
}
.comparison-path__steps > div {
  border-top: 2px solid var(--ink);
  background: #ffffff59;
  min-height: 165px;
  padding: 17px;
}
.comparison-path__steps > div span {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 26px;
}
.comparison-path__steps h3 {
  margin: 29px 0 5px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 22px;
  font-weight: 400;
}
.comparison-path__steps p {
  color: #56645d;
  margin: 0;
  font-size: 10px;
}
.comparison-path__steps > svg {
  color: var(--olive);
}
.comparison-warning {
  border-top: 1px solid #183b4640;
  border-bottom: 1px solid #183b4640;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 13px 0;
  display: flex;
}
.comparison-warning svg {
  color: var(--coral);
  flex-shrink: 0;
}
.comparison-warning p {
  color: #52625e;
  margin: 0;
  font-size: 10px;
}
.sale-hero {
  background: var(--ink);
  color: #fff;
  padding: 77px 0;
}
.sale-hero__grid {
  grid-template-columns: 1.2fr 0.55fr;
  align-items: end;
  gap: 100px;
  display: grid;
}
.sale-hero .eyebrow {
  color: #c5d4d2;
}
.sale-hero h1 {
  letter-spacing: -0.06em;
  max-width: 830px;
  margin-bottom: 21px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(48px, 6vw, 83px);
  font-weight: 400;
  line-height: 0.91;
}
.sale-hero > div > div > p:not(.eyebrow) {
  color: #d2dedd;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.75;
}
.sale-hero__tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 25px;
  display: flex;
}
.sale-hero__tags span {
  color: #d1dddd;
  text-transform: uppercase;
  border: 1px solid #ffffff59;
  padding: 4px 7px;
  font-size: 9px;
  font-weight: 800;
}
.sale-hero aside {
  background: var(--coral);
  flex-direction: column;
  min-height: 250px;
  padding: 20px;
  display: flex;
}
.sale-stamp {
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 53px;
  height: 53px;
  padding-top: 10px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
  display: inline-block;
  transform: rotate(-11deg);
}
.sale-hero aside p {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: auto 0 6px;
  font-size: 10px;
  font-weight: 800;
}
.sale-hero aside strong {
  max-width: 250px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
}
.sale-hero aside a {
  border-bottom: 1px solid #ffffffa6;
  align-items: center;
  gap: 6px;
  margin-top: 17px;
  padding-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
}
.sale-thesis,
.sale-assets {
  padding: 85px 0;
}
.thesis-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.thesis-grid article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 240px;
  padding: 19px;
}
.thesis-grid span {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 30px;
}
.thesis-grid h3 {
  margin: 39px 0 8px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 25px;
  font-weight: 400;
}
.thesis-grid p {
  color: #5c6967;
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
}
.sale-assets {
  background: var(--paper-warm);
}
.sale-assets__grid {
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  display: grid;
}
.sale-assets h2 {
  margin-bottom: 20px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
}
.sale-assets ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.sale-assets li {
  color: #53635f;
  gap: 9px;
  margin: 10px 0;
  font-size: 11px;
  display: flex;
}
.sale-assets li svg {
  color: var(--olive);
  flex-shrink: 0;
}
.interest-card {
  background: #fff;
  padding: 25px;
  box-shadow: 8px 9px #183b4626;
}
.interest-card > svg {
  color: var(--coral);
}
.interest-card .eyebrow {
  margin: 45px 0 7px;
}
.interest-card h3 {
  margin-bottom: 19px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.02;
}
.interest-card form label {
  color: #506360;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 11px 0;
  font-size: 9px;
  font-weight: 800;
  display: block;
}
.interest-card input,
.interest-card textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  width: 100%;
  color: var(--ink);
  resize: vertical;
  background: 0 0;
  outline: 0;
  margin-top: 5px;
  padding: 7px 0;
  font-size: 12px;
  display: block;
}
.interest-card input:focus,
.interest-card textarea:focus {
  border-color: var(--coral);
}
.interest-card .button {
  width: 100%;
  margin-top: 9px;
}
.form-note {
  color: #65716e;
  margin: 13px 0 0;
  font-size: 9px;
}
.form-note a,
.form-success a {
  color: var(--coral-deep);
  font-weight: 800;
}
.form-success {
  background: var(--olive-pale);
  align-items: flex-start;
  gap: 9px;
  padding: 13px;
  display: flex;
}
.form-success svg {
  color: var(--olive);
  flex-shrink: 0;
}
.form-success p {
  color: #51605b;
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}
.methodology-content,
.about-content {
  padding: 82px 0;
}
.methodology-grid,
.about-content__grid {
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
  display: grid;
}
.methodology-grid h2,
.about-content h2 {
  margin: 15px 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 400;
  line-height: 1;
}
.methodology-list {
  border-top: 1px solid var(--line);
}
.methodology-list article {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px 0;
  display: grid;
}
.methodology-list span {
  color: var(--coral);
  font-family:
    DM Serif Display,
    serif;
  font-size: 25px;
}
.methodology-list h3 {
  margin: 0 0 7px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 26px;
  font-weight: 400;
}
.methodology-list p {
  color: #556360;
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}
.faq-section {
  background: var(--sky-pale);
  padding: 73px 0;
}
.faq-section h2 {
  margin: 13px 0 27px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 400;
  line-height: 1;
}
.faq-list {
  border-top: 1px solid #183b464a;
  max-width: 850px;
}
.faq-list details {
  border-bottom: 1px solid #183b464a;
}
.faq-list summary {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  font-family:
    DM Serif Display,
    serif;
  font-size: 23px;
  list-style: none;
  display: flex;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--coral);
  font-family: Manrope, sans-serif;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  color: #526569;
  max-width: 680px;
  margin: -2px 0 19px;
  font-size: 11px;
  line-height: 1.7;
}
.about-content {
  background: var(--paper-warm);
}
.about-content svg {
  color: var(--olive);
}
.about-content__grid > div:last-child p {
  color: #51625f;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.82;
}
.about-content .button {
  margin-top: 13px;
}
.policy-cards {
  padding: 80px 0;
}
.policy-cards > div {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.policy-cards article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 290px;
  padding: 21px;
}
.policy-cards span {
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.policy-cards h2 {
  margin: 36px 0 12px;
  font-family:
    DM Serif Display,
    serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
}
.policy-cards p {
  color: #576561;
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}
.contact-section {
  padding: 80px 0;
}
.contact-card {
  background: var(--ink);
  color: #fff;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  padding: 42px;
  display: flex;
}
.contact-card svg {
  color: #f0b8aa;
}
.contact-card .eyebrow {
  color: #c6d5d4;
  margin-top: 35px;
}
.contact-card h2 {
  margin-bottom: 8px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(35px, 4vw, 55px);
  font-weight: 400;
}
.contact-card p:not(.eyebrow) {
  color: #d3dfdf;
  margin: 0;
  font-size: 12px;
}
.not-found {
  min-height: 60vh;
  padding: 105px 0;
}
.not-found h1 {
  margin-bottom: 18px;
  font-family:
    DM Serif Display,
    serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 0.93;
}
.not-found p:not(.eyebrow) {
  color: #526360;
  max-width: 420px;
  margin-bottom: 25px;
}
.site-footer {
  color: #fff;
  background: #102e37;
  padding-top: 65px;
}
.footer-grid {
  grid-template-columns: 1.45fr 0.55fr 0.65fr 0.75fr;
  gap: 38px;
  padding-bottom: 53px;
  display: grid;
}
.brand--footer .brand__wordmark {
  color: #fff;
}
.footer-brand > p {
  color: #b9c9c9;
  max-width: 315px;
  margin: 18px 0;
  font-size: 11px;
  line-height: 1.7;
}
.footer-email {
  color: #f0c0b5;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
}
.footer-label {
  color: #91abad;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 9px;
  font-weight: 800;
}
.footer-column a {
  color: #e2e8e7;
  margin: 9px 0;
  font-size: 11px;
  display: block;
}
.footer-column a:hover {
  color: #f1b8ad;
}
.footer-column--stamp {
  border-left: 1px solid #fff3;
  padding-left: 18px;
}
.footer-column--stamp p:last-child {
  color: #c8d4d3;
  font-family:
    DM Serif Display,
    serif;
  font-size: 20px;
  line-height: 1.08;
}
.footer-bottom {
  color: #9aafaf;
  border-top: 1px solid #fff3;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0 18px;
  font-size: 9px;
  display: flex;
}
.footer-bottom a {
  color: #e8b6aa;
  font-weight: 800;
}
@media (max-width: 1080px) {
  .desktop-nav {
    gap: 14px;
  }
  .header-tool {
    display: none;
  }
  .hero__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 33px;
  }
  .hero__visual {
    margin-right: -20px;
  }
  .signal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .featured-story__grid {
    grid-template-columns: 0.32fr 1.3fr 0.55fr;
  }
  .calendar-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .calendar-cards article:nth-child(4),
  .calendar-cards article:nth-child(5) {
    border-top: 1px solid #ffffff47;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }
  .footer-column--stamp {
    display: none;
  }
}
@media (max-width: 760px) {
  .shell-wide {
    width: min(100% - 30px, 1280px);
  }
  .sale-note__inner {
    align-items: flex-start;
    min-height: 41px;
    padding: 7px 0;
    font-size: 9px;
    line-height: 1.35;
  }
  .sale-note__link {
    padding-top: 3px;
    font-size: 9px;
  }
  .site-header__inner {
    min-height: 64px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .mobile-nav {
    border-top: 1px solid var(--line);
    background: var(--paper);
    display: grid;
  }
  .mobile-nav a {
    border-bottom: 1px solid var(--line);
    grid-template-columns: 32px 1fr;
    gap: 8px;
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 800;
    display: grid;
  }
  .mobile-nav a span {
    color: var(--coral);
    font-family:
      DM Serif Display,
      serif;
  }
  .hero {
    padding: 38px 0 0;
  }
  .hero:before {
    display: none;
  }
  .hero__grid,
  .page-intro__grid,
  .annual-intro,
  .review-section__grid,
  .directory-preview__grid,
  .closing-section__grid,
  .hub-feature__grid,
  .check-section__grid,
  .tools-intro__grid,
  .calendar-panel__grid,
  .calculator-grid,
  .directory-policy > div,
  .detail-hero__grid,
  .profile-content__grid,
  .comparison-body__grid,
  .sale-hero__grid,
  .sale-assets__grid,
  .methodology-grid,
  .about-content__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero__copy {
    padding: 0;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero__lede {
    font-size: 14px;
  }
  .hero__proof {
    margin-top: 30px;
  }
  .hero__visual {
    min-height: 390px;
    margin: 0 -15px;
  }
  .hero__visual > img {
    height: 390px;
  }
  .hero__caption {
    bottom: 15px;
    left: 15px;
  }
  .hero__pin--one {
    top: 17px;
    right: 17px;
  }
  .hero__pin--two {
    bottom: 75px;
    right: 18px;
  }
  .signal-section,
  .featured-story,
  .read-section,
  .directory-preview,
  .criteria-section,
  .savings-steps,
  .news-board,
  .hub-more,
  .tools-intro,
  .directory-section,
  .profile-content,
  .comparison-body,
  .sale-thesis,
  .sale-assets,
  .methodology-content,
  .about-content {
    padding: 56px 0;
  }
  .section-heading,
  .section-heading--inline,
  .last-cta > div,
  .article-next > div,
  .profile-next > div,
  .contact-card {
    display: block;
  }
  .section-heading h2,
  .annual-intro h2,
  .review-section h2,
  .closing-section h2,
  .check-section h2,
  .criteria-section h2,
  .savings-steps h2,
  .news-board h2,
  .hub-more h2,
  .last-cta h2 {
    font-size: 39px;
  }
  .section-heading > .text-action {
    margin-top: 17px;
    display: inline-flex;
  }
  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .signal-card {
    min-height: 185px;
  }
  .signal-card__number {
    margin-bottom: 23px;
  }
  .featured-story__grid {
    grid-template-columns: 1fr;
  }
  .featured-story__aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 17px;
    padding-right: 0;
  }
  .featured-story__note {
    padding-left: 13px;
  }
  .editorial-card--feature .editorial-card__image {
    height: 250px;
  }
  .editorial-card--feature .editorial-card__body h3 {
    font-size: 28px;
  }
  .annual-section {
    padding: 55px 0;
  }
  .annual-intro > p {
    margin-top: 18px;
  }
  .cost-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cost-card {
    border-bottom: 1px solid #ffffff3b;
  }
  .cost-card:nth-child(2) {
    border-right: 0;
  }
  .annual-cta {
    display: block;
  }
  .annual-cta > div {
    align-items: flex-start;
  }
  .annual-cta .button {
    margin-top: 16px;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .review-section__title > p:not(.eyebrow) {
    font-size: 12px;
  }
  .review-list {
    margin-top: 5px;
  }
  .calendar-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .calendar-cards article {
    min-height: 160px;
  }
  .calendar-cards article:nth-child(4),
  .calendar-cards article:nth-child(5) {
    border-top: 1px solid #ffffff47;
  }
  .page-intro {
    padding: 45px 0 42px;
  }
  .page-intro h1 {
    font-size: 49px;
  }
  .page-intro__copy > p {
    font-size: 13px;
  }
  .hub-feature__index {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
  }
  .hub-aside {
    min-height: 245px;
  }
  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .criteria-grid article {
    min-height: 205px;
  }
  .steps-row {
    grid-template-columns: 1fr 1fr;
  }
  .steps-row__tool {
    grid-column: span 2;
    min-height: 150px;
  }
  .news-list article {
    grid-template-columns: 39px 1fr 20px;
    gap: 9px;
  }
  .news-list h3 {
    font-size: 20px;
  }
  .tools-intro h2 {
    font-size: 42px;
  }
  .tool-principles {
    grid-template-columns: 1fr;
  }
  .tool-principles > div {
    grid-template-columns: 28px 1fr;
    gap: 6px;
    display: grid;
  }
  .tool-principles p {
    margin: 0;
  }
  .calculator-card,
  .result-card {
    padding: 25px;
  }
  .result-card {
    min-height: 300px;
  }
  .calculator-explain {
    padding: 53px 0;
  }
  .explain-grid {
    grid-template-columns: 1fr;
  }
  .explain-grid > div {
    min-height: 160px;
  }
  .directory-controls {
    grid-template-columns: 1fr;
  }
  .filter-row {
    justify-content: flex-start;
  }
  .directory-results {
    display: block;
  }
  .directory-results p + p {
    margin-top: 5px;
  }
  .directory-grid {
    grid-template-columns: 1fr;
  }
  .directory-policy > div {
    gap: 15px;
  }
  .directory-policy .button {
    width: fit-content;
  }
  .breadcrumbs {
    margin-bottom: 30px;
  }
  .detail-hero {
    padding: 37px 0 45px;
  }
  .detail-hero h1 {
    font-size: 53px;
  }
  .profile-content article h2 {
    font-size: 39px;
  }
  .profile-next {
    padding: 42px 0;
  }
  .profile-next .button {
    margin-top: 20px;
  }
  .article-page {
    padding-top: 32px;
  }
  .article-header h1,
  .comparison-hero h1 {
    font-size: 50px;
  }
  .article-cover {
    height: 290px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 38px;
  }
  .article-toc {
    display: none;
    position: static;
  }
  .article-body h2 {
    font-size: 38px;
  }
  .article-body p {
    font-size: 13px;
  }
  .comparison-hero {
    padding: 33px 0 48px;
  }
  .comparison-table__head {
    display: none;
  }
  .comparison-table__row {
    grid-template-columns: 35px 1fr;
    gap: 10px;
  }
  .comparison-table__row > span:last-child {
    grid-column: 2;
  }
  .comparison-path {
    padding: 55px 0;
  }
  .comparison-path__steps {
    grid-template-columns: 1fr;
  }
  .comparison-path__steps > svg {
    justify-self: center;
    transform: rotate(90deg);
  }
  .sale-hero {
    padding: 55px 0;
  }
  .sale-hero h1 {
    font-size: 54px;
  }
  .sale-hero aside {
    min-height: 210px;
  }
  .thesis-grid,
  .policy-cards > div {
    grid-template-columns: 1fr;
  }
  .thesis-grid article,
  .policy-cards article {
    min-height: 195px;
  }
  .sale-assets h2,
  .methodology-grid h2,
  .about-content h2 {
    font-size: 41px;
  }
  .interest-card {
    box-shadow: 5px 6px #183b4626;
  }
  .faq-section {
    padding: 57px 0;
  }
  .faq-list summary {
    font-size: 20px;
  }
  .contact-card {
    padding: 27px;
  }
  .contact-card .button {
    margin-top: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 31px 20px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span,
  .footer-bottom a {
    margin: 5px 0;
    display: block;
  }
}
@media (max-width: 390px) {
  .sale-note__inner {
    gap: 8px;
  }
  .sale-note__link {
    white-space: normal;
    text-align: right;
  }
  .hero h1,
  .page-intro h1,
  .article-header h1,
  .comparison-hero h1 {
    font-size: 45px;
  }
  .signal-card {
    padding: 14px 12px;
  }
  .cost-card {
    min-height: 195px;
    padding: 13px;
  }
  .cost-card h3 {
    font-size: 23px;
  }
  .review-item {
    grid-template-columns: 48px 22px 1fr;
  }
  .review-item > svg:last-child {
    display: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero__copy,
  .hero__visual,
  .page-intro__grid {
    animation: fade-rise 0.6s var(--ease-out) both;
  }
  .signal-card,
  .editorial-card,
  .cost-card {
    animation: fade-rise 0.5s var(--ease-out) both;
  }
  .signal-card:nth-child(2),
  .cost-card:nth-child(2) {
    animation-delay: 50ms;
  }
  .signal-card:nth-child(3),
  .cost-card:nth-child(3) {
    animation-delay: 0.1s;
  }
  .signal-card:nth-child(4),
  .cost-card:nth-child(4) {
    animation-delay: 0.15s;
  }
  @keyframes fade-rise {
    0% {
      opacity: 0;
      transform: translateY(13px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  :before,
  :after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.site-shell {
  min-width: 0;
  overflow: visible;
}
.button--coral {
  background-color: var(--coral);
  background-image: repeating-radial-gradient(
    circle at 6px 100%,
    var(--paper) 0 1.7px,
    transparent 1.9px 8px
  );
  background-repeat: no-repeat;
  background-size: 100% 5px;
  padding-bottom: 13px;
  position: relative;
  overflow: hidden;
}
.editorial-card--feature {
  position: relative;
  box-shadow: 8px 9px #183b461c;
}
.editorial-card--feature:after {
  background: repeating-radial-gradient(
    circle at 5px 0,
    var(--paper) 0 2px,
    transparent 2.3px 10px
  );
  content: "";
  width: 58px;
  height: 8px;
  position: absolute;
  bottom: -8px;
  right: 17px;
}
.result-card {
  padding-bottom: 49px;
}
.result-card:after {
  background: repeating-radial-gradient(
    circle at 7px 0,
    var(--paper) 0 2.5px,
    transparent 2.8px 14px
  );
  content: "";
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.directory-card--featured {
  position: relative;
}
.directory-card--featured:after {
  background: repeating-radial-gradient(
    circle at 5px 0,
    var(--paper) 0 1.8px,
    transparent 2.1px 10px
  );
  content: "";
  height: 7px;
  position: absolute;
  bottom: -7px;
  left: 15px;
  right: 15px;
}
.directory-card__top em {
  background-color: var(--coral);
  background-image: repeating-radial-gradient(
    circle at 5px 100%,
    #fff5f0 0 1.2px,
    #0000 1.5px 7px
  );
  background-repeat: no-repeat;
  background-size: 100% 4px;
  padding-bottom: 7px;
}
.article-note:after,
.source-box:after {
  background: repeating-linear-gradient(
    to bottom,
    var(--coral) 0 4px,
    transparent 4px 8px
  );
  content: "";
  align-self: stretch;
  width: 3px;
}
@media (max-width: 760px) {
  .result-card {
    padding-bottom: 32px;
  }
}
.site-header .brand {
  gap: 14px;
}
.site-header .brand__mark {
  width: 44px;
  height: 44px;
}
.site-header .brand__wordmark {
  font-size: 38px;
}
@media (max-width: 760px) {
  .sale-note__detail {
    display: none;
  }
}
