.from-the-road-page {
  background: #f7f4ef;
  color: #232b35;
  --ftr-measure: 760px;
  --ftr-wide: 1120px;
}

.ftr-hero {
  position: relative;
  min-height: clamp(620px, 70vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ftr-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.01);
}

.ftr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 24, 31, 0.14) 0%,
    rgba(18, 24, 31, 0.68) 100%
  );
  z-index: 1;
}

.ftr-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--ftr-wide));
  max-width: none;
  margin: 0 auto;
  padding: clamp(4.4rem, 7vw, 6rem) 0 clamp(4.2rem, 7vw, 5.8rem);
  color: #f8f5f0;
}

.ftr-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 1.45rem;
  color: rgba(248, 245, 240, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ftr-breadcrumbs a,
.ftr-breadcrumbs span {
  color: inherit;
  text-decoration: none;
}

.ftr-breadcrumbs a {
  transition: color 0.18s ease;
}

.ftr-breadcrumbs a:hover {
  color: rgba(248, 245, 240, 0.92);
}

.ftr-breadcrumbs a:focus-visible {
  outline: 2px solid rgba(248, 245, 240, 0.78);
  outline-offset: 4px;
}

.ftr-breadcrumbs span::before,
.ftr-breadcrumbs a + a::before {
  content: "/";
  margin-right: 9px;
  color: rgba(248, 245, 240, 0.34);
}

.ftr-editorial-nav {
  gap: 0;
  margin-bottom: clamp(2.2rem, 5vw, 3.7rem);
  color: rgba(248, 245, 240, 0.54);
  letter-spacing: 0.12em;
}

.ftr-editorial-nav > span::before,
.ftr-editorial-nav > a + a::before,
.ftr-editorial-nav .ftr-editorial-links::before {
  content: none;
  margin: 0;
}

.ftr-editorial-home {
  position: relative;
  padding-right: 0;
  color: rgba(248, 245, 240, 0.56);
}

.ftr-editorial-home::after {
  content: "/";
  position: static;
  display: inline;
  margin: 0 0.78rem;
  color: rgba(248, 245, 240, 0.28);
  font-weight: 600;
}

.ftr-editorial-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  min-width: 0;
}

.ftr-editorial-links span {
  color: rgba(248, 245, 240, 0.72);
}

.ftr-editorial-links a {
  color: rgba(248, 245, 240, 0.54);
}

.ftr-editorial-links a[aria-current="page"] {
  color: rgba(248, 245, 240, 0.72);
}

.ftr-editorial-links a:hover {
  color: rgba(248, 245, 240, 0.86);
}

.ftr-editorial-links a + a::before,
.ftr-editorial-links a + span::before,
.ftr-editorial-links span + a::before,
.ftr-editorial-links span + span::before {
  content: "/";
  margin: 0 0.78rem;
  color: rgba(248, 245, 240, 0.28);
  font-weight: 600;
}

.ftr-kicker {
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.82;
}

.ftr-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.85rem, 5.7vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.from-the-road-longform .ftr-hero h1 {
  max-width: 14ch;
}

.ftr-intro {
  max-width: 54ch;
  margin-top: 1.5rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.88);
}

.ftr-main {
  padding: clamp(4.2rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}

.ftr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1320px;
  margin: 0 auto;
}

.ftr-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(18, 24, 31, 0.065);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  isolation: isolate;
}

.ftr-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(18, 24, 31, 0.085);
}

.ftr-card-link,
.ftr-card-disabled {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

.ftr-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.28s ease;
}

.ftr-card:hover .ftr-card-image {
  transform: scale(1.035);
}

.ftr-card-content {
  padding: 1.8rem 1.8rem 2rem;
}

.ftr-card-kicker {
  margin-bottom: 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #8a7460;
}

.ftr-card h2 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #232b35;
}

.ftr-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.75;
  font-size: 1rem;
}

.ftr-card-soon {
  cursor: default;
}

.ftr-card-soon:hover {
  transform: translateY(-2px);
}

.ftr-card-soon .ftr-card-image {
  filter: saturate(0.78) contrast(0.96);
}

.ftr-card-soon:hover .ftr-card-image {
  filter: grayscale(0.32) saturate(0.62) contrast(0.92);
  transform: scale(1.012);
}

.ftr-card-coming-soon {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(35, 43, 53, 0.44);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.ftr-card-coming-soon span {
  color: rgba(248, 245, 240, 0.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  line-height: 1.2;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.ftr-card-soon:hover .ftr-card-coming-soon {
  opacity: 1;
}

.ftr-article {
  padding: clamp(4.4rem, 7vw, 6.4rem) 1.5rem;
  overflow-x: hidden;
}

.ftr-article-inner {
  width: min(100%, var(--ftr-measure));
  max-width: var(--ftr-measure);
  margin: 0 auto;
}

.ftr-article-inner h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #232b35;
}

.ftr-article-inner p {
  margin-bottom: 1.8rem;
  font-size: 1.12rem;
  line-height: 1.9;
  color: #374151;
}

.ftr-inline-image {
  margin: 4.6rem auto;
}

.ftr-inline-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 48px rgba(18, 24, 31, 0.08);
}

.ftr-inline-image-wide {
  width: min(100vw - 3rem, 980px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.ftr-inline-image-narrow {
  max-width: 520px;
}

.ftr-inline-image figcaption {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: #6b7280;
  text-align: center;
  font-style: italic;
}

.ftr-pullquote {
  max-width: 760px;
  margin: 4.4rem auto;
  text-align: center;
}

.ftr-pullquote p {
  margin: 0 0 0.75rem;
  color: #232b35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-style: italic;
}

.ftr-pullquote p:last-child {
  margin-bottom: 0;
}

.ftr-pullquote .ftr-pullquote-strong {
  font-size: clamp(2.25rem, 4.6vw, 3.4rem);
  font-weight: 700;
  font-style: normal;
}

.ftr-pullquote-wide {
  max-width: 820px;
  margin: 5rem auto;
}

.ftr-pullquote-compact {
  max-width: 700px;
  margin: 4rem auto 1rem;
}

.ftr-pullquote-stacked {
  margin: 4.5rem auto 4rem;
}

.ftr-pullquote-stacked p {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.2;
}

.ftr-back-link {
  display: inline-block;
  margin-top: 4rem;
  color: #8a7460;
  text-decoration: none;
  font-weight: 600;
}

.ftr-back-link:hover {
  opacity: 0.7;
}

@media (max-width: 720px) {
  .ftr-hero {
    min-height: 74vh;
  }

  .ftr-hero-content {
    width: min(398px, calc(100vw - 2rem));
    max-width: min(398px, calc(100vw - 2rem));
    padding: 2rem 0 2.4rem;
  }

  .ftr-breadcrumbs {
    margin-bottom: 1.1rem;
    gap: 7px;
    font-size: 0.66rem;
  }

  .ftr-editorial-nav {
    align-items: flex-start;
    gap: 0;
    margin-bottom: 1.8rem;
  }

  .ftr-editorial-home {
    padding-right: 0;
  }

  .ftr-editorial-links {
    gap: 0;
  }

  .ftr-editorial-home::after,
  .ftr-editorial-links a + a::before,
  .ftr-editorial-links a + span::before,
  .ftr-editorial-links span + a::before,
  .ftr-editorial-links span + span::before {
    margin: 0 0.5rem;
  }

  .ftr-hero h1 {
    max-width: 9ch;
    font-size: clamp(2.4rem, 10vw, 3.75rem);
  }

  .ftr-intro {
    font-size: 1rem;
    line-height: 1.75;
  }

  .ftr-main {
    padding: 3rem 1.2rem 4rem;
  }

  .ftr-grid {
    gap: 1.5rem;
  }

  .ftr-card-image {
    height: 220px;
  }

  .ftr-inline-image {
    margin: 3.5rem auto;
  }

  .ftr-article {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .ftr-article-inner {
    width: min(100%, 34ch);
    max-width: 34ch;
  }

  .ftr-article-inner p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .ftr-inline-image-wide {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .from-the-road-longform .ftr-hero-content {
    width: min(360px, calc(100vw - 3rem));
    max-width: min(360px, calc(100vw - 3rem));
  }

  .from-the-road-longform .ftr-intro {
    max-width: 33ch;
  }
}
