:root {
  --ttp-ink: #172033;
  --ttp-muted: #556273;
  --ttp-soft: #f7f9fc;
  --ttp-card: rgba(255, 255, 255, .95);
  --ttp-line: rgba(99, 116, 139, .18);
  --ttp-blue: #2563eb;
  --ttp-sky: #0ea5e9;
  --ttp-teal: #0f766e;
  --ttp-violet: #7c3aed;
  --ttp-amber: #f59e0b;
  --ttp-rose: #e11d48;
  --ttp-night: #111827;
  --ttp-paper: #fffaf3;
  --ttp-shadow: 0 18px 45px rgba(15, 23, 42, .12);
  --ttp-soft-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  --ttp-radius: 20px;
  --ttp-content: 760px;
  --ttp-wide: 1180px;
  --ttp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ttp-ink);
  font-family: var(--ttp-font);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  background:
    linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfdff 0%, var(--ttp-soft) 48%, #eef5f4 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

body,
button,
input,
select,
textarea {
  font-family: var(--ttp-font);
}

img {
  max-width: 100%;
  height: auto;
}

img[data-ttp-missing-image="true"] {
  display: none !important;
}

.ttp-missing-media {
  position: relative;
  display: grid !important;
  min-height: 180px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(37, 99, 235, .26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(15, 118, 110, .08)),
    rgba(255, 255, 255, .9);
  box-shadow: var(--ttp-soft-shadow);
}

.ttp-missing-media::after {
  content: "Image currently unavailable";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--ttp-blue);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.wp-block-image.ttp-missing-media,
figure.ttp-missing-media {
  width: min(100%, var(--ttp-content));
}

.home .ttp-entry-content > figure.wp-block-image.ttp-missing-media {
  min-height: 220px;
}

.uagb-post__image.ttp-missing-media,
.ttp-card-media.ttp-missing-media {
  min-height: 128px;
}

.uagb-post__image.ttp-missing-media::after,
.ttp-card-media.ttp-missing-media::after {
  content: "Image unavailable";
  font-size: 12px;
}

a {
  color: var(--ttp-blue);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover,
a:focus {
  color: var(--ttp-teal);
}

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--ttp-shadow);
}

.ttp-site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ttp-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(99, 116, 139, .14);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
}

.ttp-header-inner {
  width: min(100% - 32px, var(--ttp-wide));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ttp-brand {
  min-width: 0;
}

.ttp-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.ttp-brand .custom-logo {
  width: min(440px, 62vw);
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(15, 23, 42, .12));
}

.ttp-site-title {
  display: inline-block;
  color: var(--ttp-ink);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.ttp-site-tagline {
  margin: 7px 0 0;
  color: var(--ttp-muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ttp-site-navigation {
  display: flex;
  align-items: center;
}

.ttp-primary-menu,
.ttp-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ttp-primary-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ttp-primary-menu li {
  position: relative;
}

.ttp-primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #273244;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.ttp-primary-menu a:hover,
.ttp-primary-menu a:focus,
.ttp-primary-menu .current-menu-item > a,
.ttp-primary-menu .current-menu-ancestor > a {
  color: var(--ttp-blue);
  background: linear-gradient(135deg, rgba(37, 99, 235, .10), rgba(15, 118, 110, .10));
  transform: translateY(-1px);
}

.ttp-primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 14px 8px 8px;
  border: 1px solid rgba(99, 116, 139, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.ttp-primary-menu li.is-submenu-open > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ttp-primary-menu .sub-menu a {
  width: 100%;
  justify-content: flex-start;
}

.ttp-primary-menu .ttp-categories-menu > a::after,
.ttp-primary-menu .ttp-states-menu > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .72;
}

.ttp-primary-menu .ttp-categories-menu > .sub-menu,
.ttp-primary-menu .ttp-states-menu > .sub-menu {
  min-width: 360px;
  max-height: min(72vh, 720px);
  padding: 16px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #d99d2b, #6f3b2c, #315f5d) 1;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(248, 250, 252, .94)),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(31, 41, 55, .025) 35px 36px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, .17);
  overflow: auto;
}

.ttp-primary-menu .ttp-categories-menu .sub-menu .sub-menu,
.ttp-primary-menu .ttp-states-menu .sub-menu .sub-menu {
  position: static;
  display: block;
  min-width: 0;
  list-style: none;
  margin: 8px 0 12px;
  padding: 8px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .52);
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.ttp-primary-menu .ttp-categories-menu .sub-menu .sub-menu a,
.ttp-primary-menu .ttp-states-menu .sub-menu .sub-menu a {
  min-height: 34px;
  padding: 8px 10px 8px 28px;
  border-radius: 6px;
  color: #596476;
  font-size: 13px;
  font-weight: 800;
}

.ttp-primary-menu .ttp-categories-menu > .sub-menu > li > a,
.ttp-primary-menu .ttp-states-menu > .sub-menu > li > a {
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #172033;
  font-size: 15px;
  font-weight: 950;
}

.ttp-primary-menu .ttp-categories-menu > .sub-menu > li > a:hover,
.ttp-primary-menu .ttp-categories-menu > .sub-menu > li > a:focus,
.ttp-primary-menu .ttp-states-menu > .sub-menu > li > a:hover,
.ttp-primary-menu .ttp-states-menu > .sub-menu > li > a:focus {
  background: rgba(49, 95, 93, .08);
  color: #315f5d;
  transform: none;
}

.ttp-primary-menu .ttp-categories-menu .sub-menu .sub-menu a::before,
.ttp-primary-menu .ttp-states-menu .sub-menu .sub-menu a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d99d2b, #315f5d);
  opacity: .72;
}

.ttp-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(37, 99, 235, .26);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 22px rgba(37, 99, 235, .12);
  cursor: pointer;
}

.ttp-menu-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ttp-blue);
}

.ttp-main {
  flex: 1;
  width: min(100% - 32px, var(--ttp-wide));
  margin: clamp(22px, 4vw, 54px) auto clamp(44px, 7vw, 82px);
}

.ttp-page-head,
.ttp-entry-header,
.ttp-empty-state,
.ttp-related-section {
  width: min(100%, var(--ttp-wide));
  margin: 0 auto clamp(24px, 4vw, 42px);
}

.ttp-entry-header {
  max-width: 900px;
}

.ttp-page-head h1,
.ttp-entry-title,
.ttp-empty-state h1 {
  margin: 8px 0 12px;
  color: var(--ttp-ink);
  font-size: clamp(38px, 7vw, 76px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: 0;
}

.ttp-page-head--category-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(250px, 28vw, 360px);
  align-content: end;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(31, 41, 55, .18);
  border-radius: 28px;
  background: #172033;
  box-shadow: 0 26px 64px rgba(15, 23, 42, .18);
}

.ttp-page-head--category-banner::before,
.ttp-page-head--category-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ttp-page-head--category-banner::before {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, .80), rgba(15, 23, 42, .38) 52%, rgba(15, 23, 42, .10)),
    var(--ttp-category-banner-image);
  background-position: var(--ttp-category-banner-position, center);
  background-size: cover;
  filter: saturate(.88) contrast(1.08);
  transform: scale(1.02);
}

.ttp-page-head--category-banner::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .04), rgba(15, 23, 42, .74)),
    radial-gradient(circle at 14% 14%, rgba(221, 162, 54, .22), transparent 32%);
}

.ttp-page-head--category-banner .ttp-kicker {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  color: #fffaf3;
}

.ttp-page-head--category-banner h1 {
  max-width: 820px;
  color: #fff;
  text-shadow: 0 14px 28px rgba(15, 23, 42, .26);
}

.ttp-page-head--category-banner .archive-description {
  max-width: 720px;
  color: rgba(255, 253, 248, .86);
}

.ttp-page-head--category-banner.is-category-true-crime {
  --ttp-category-banner-position: center 45%;
}

.ttp-page-head--category-banner.is-category-movie-locations {
  --ttp-category-banner-position: center 44%;
}

.ttp-page-head--category-banner.is-category-disasters-and-unfortunate-events {
  --ttp-category-banner-position: center 42%;
}

.ttp-page-head--category-banner.is-category-odd-but-true {
  --ttp-category-banner-position: center 48%;
}

.ttp-page-head--category-banner.is-category-unsolved {
  --ttp-category-banner-position: center 52%;
}

.ttp-page-head--category-banner.is-category-celebrity-deaths {
  --ttp-category-banner-position: center 50%;
}

.ttp-kicker,
.ttp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  padding: 7px 11px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 999px;
  background: rgba(37, 99, 235, .10);
  color: var(--ttp-blue);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(37, 99, 235, .10);
}

.ttp-kicker::before,
.ttp-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ttp-blue), var(--ttp-teal));
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.ttp-entry-meta,
.ttp-card-meta {
  color: var(--ttp-muted);
  font-size: 14px;
  font-weight: 750;
}

.ttp-entry-meta a,
.ttp-card-meta a {
  color: var(--ttp-blue);
  text-decoration: none;
}

.ttp-entry-meta .updated:not(.published) {
  display: none;
}

.ttp-single,
.ttp-page {
  width: 100%;
}

.ttp-editorial-entry-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .78fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 34px);
  width: min(100%, 1120px);
  margin: 0 auto clamp(18px, 3.4vw, 34px);
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 40px);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 34px;
  background:
    linear-gradient(115deg, rgba(17, 24, 39, .98) 0%, rgba(31, 47, 79, .96) 58%, rgba(255, 250, 243, .96) 58.1%, rgba(248, 251, 255, .94) 100%),
    var(--ttp-night);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .72) inset,
    0 34px 82px rgba(15, 23, 42, .20);
}

.ttp-editorial-entry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    radial-gradient(circle at 92% 14%, rgba(245, 158, 11, .22), transparent 20rem);
  background-size: 42px 42px, 42px 42px, auto;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, .86), transparent 78%);
}

.ttp-editorial-entry-hero .ttp-entry-header {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  margin: 0;
}

.ttp-editorial-entry-hero .ttp-kicker,
.ttp-editorial-entry-hero .ttp-eyebrow {
  width: fit-content;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .12);
  backdrop-filter: blur(14px);
}

.ttp-editorial-entry-hero .ttp-eyebrow::before,
.ttp-editorial-entry-hero .ttp-kicker::before {
  background: linear-gradient(135deg, var(--ttp-amber), var(--ttp-sky));
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .13);
}

.ttp-editorial-entry-hero .ttp-entry-title {
  max-width: 13.5ch;
  margin: 16px 0 14px;
  color: #fff;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .94;
}

.ttp-editorial-entry-hero .ttp-entry-meta,
.ttp-editorial-entry-hero .ttp-entry-meta a {
  color: rgba(255, 255, 255, .72);
}

.ttp-entry-dek {
  max-width: 52ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, .80);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
}

.ttp-entry-dek p {
  margin: 0;
  color: inherit;
}

.ttp-editorial-entry-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(245, 158, 11, .12)),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .64) inset,
    0 24px 58px rgba(15, 23, 42, .24);
  transform: rotate(.25deg);
}

.ttp-editorial-entry-media::after {
  content: "On Location";
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--ttp-ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .16);
  backdrop-filter: blur(14px);
}

.ttp-editorial-entry-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 38vw, 520px);
  object-fit: cover;
}

.ttp-editorial-entry-media figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: min(420px, calc(100% - 28px));
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, .76);
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.ttp-single-hero,
.ttp-page-featured {
  width: min(100%, 1080px);
  margin: 0 auto clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(99, 116, 139, .14);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--ttp-shadow);
}

.ttp-single-hero img,
.ttp-page-featured img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.ttp-single-hero figcaption {
  padding: 10px 14px;
  color: var(--ttp-muted);
  font-size: 13px;
}

.ttp-entry-content {
  width: 100%;
}

.ttp-single .ttp-entry-content,
.ttp-page .ttp-entry-content {
  position: relative;
  padding-top: clamp(0px, 1vw, 8px);
}

.ttp-entry-content > * {
  max-width: var(--ttp-content);
  margin-left: auto;
  margin-right: auto;
}

.ttp-entry-content > .alignwide,
.ttp-entry-content > .wp-block-group.alignwide {
  max-width: 1080px;
}

.ttp-entry-content > .alignfull {
  max-width: none;
  width: calc(100vw - 16px);
  margin-left: calc(50% - 50vw + 8px);
  margin-right: calc(50% - 50vw + 8px);
}

.ttp-entry-content h2,
.ttp-entry-content h3 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(26px, 5vw, 52px);
  color: var(--ttp-ink);
  line-height: 1.08;
  letter-spacing: 0;
}

.ttp-entry-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 920;
}

.ttp-entry-content h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 850;
}

.ttp-entry-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .12em;
  width: 5px;
  height: .82em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ttp-blue), var(--ttp-teal), var(--ttp-amber));
  transform: translateX(-14px);
}

.ttp-entry-content p,
.ttp-entry-content li {
  color: #2c3647;
}

.single-post .ttp-entry-content p a:not(.wp-block-button__link),
.single-post .ttp-entry-content li a:not(.wp-block-button__link) {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: text;
}

.ttp-entry-content blockquote {
  padding: 18px 22px;
  border-left: 5px solid var(--ttp-blue);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--ttp-soft-shadow);
}

.ttp-entry-content figure.wp-block-image,
.ttp-entry-content .wp-block-gallery {
  margin-top: clamp(18px, 3vw, 30px);
  margin-bottom: clamp(18px, 3vw, 30px);
}

.ttp-single .ttp-entry-content > figure.wp-block-image:first-child,
.ttp-page .ttp-entry-content > figure.wp-block-image:first-child {
  margin-top: 0;
}

.ttp-entry-content figure.wp-block-image img,
.ttp-entry-content .wp-block-gallery img {
  display: block;
  border-radius: 18px;
  box-shadow: var(--ttp-shadow);
}

.ttp-entry-content .wp-block-button__link,
.ttp-read-more,
.ttp-search-submit,
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(37, 99, 235, .20);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ttp-blue), var(--ttp-sky));
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(37, 99, 235, .22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.ttp-entry-content .wp-block-button__link:hover,
.ttp-read-more:hover,
.ttp-search-submit:hover,
.nav-links a:hover {
  color: #fff;
  filter: saturate(1.08);
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, .26);
}

.ttp-entry-content .ttp-ob-banner-block {
  max-width: min(100%, var(--ttp-content));
  margin-left: auto;
  margin-right: auto;
}

.ttp-home {
  display: grid;
  gap: clamp(30px, 5vw, 68px);
  position: relative;
}

.ttp-home-banner {
  width: min(100%, 1080px);
  margin: 0 auto calc(clamp(24px, 4vw, 52px) * -0.48);
  position: relative;
  z-index: 3;
}

.ttp-home-banner .ttp-ob-banner-block {
  max-width: 100%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .86) inset,
    0 18px 42px rgba(15, 23, 42, .14);
}

.ttp-home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 34px);
  min-height: clamp(520px, 56vw, 650px);
  overflow: hidden;
  padding: clamp(20px, 3.4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 36px;
  background:
    linear-gradient(115deg, rgba(17, 24, 39, .98) 0%, rgba(31, 47, 79, .96) 56%, rgba(248, 251, 255, .94) 56.1%, rgba(255, 250, 243, .96) 100%),
    var(--ttp-night);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .72) inset,
    0 34px 82px rgba(15, 23, 42, .22);
}

.ttp-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(245, 158, 11, .16), transparent 34%, rgba(37, 99, 235, .10) 66%, transparent);
  background-size: 42px 42px, 42px 42px, auto;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, .86), transparent 74%);
}

.ttp-home-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 3vw, 34px) clamp(8px, 2vw, 18px);
}

.ttp-home-label-row,
.ttp-home-actions,
.ttp-home-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.ttp-home-section__header {
  justify-content: space-between;
  margin-bottom: clamp(16px, 3vw, 26px);
}

.ttp-home-kicker,
.ttp-home-hero__category {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .10);
  backdrop-filter: blur(14px);
}

.ttp-home-hero__category {
  color: #d7f8ef;
  border-color: rgba(20, 184, 166, .28);
  background: rgba(15, 118, 110, .22);
}

.ttp-home-hero__title {
  max-width: 13ch;
  margin: 18px 0 14px;
  font-size: clamp(42px, 6.2vw, 74px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
}

.ttp-home-hero__title a,
.ttp-home-story-card__title a {
  color: inherit;
  text-decoration: none;
}

.ttp-home-hero__title a {
  color: #fff;
}

.ttp-home-hero__title a:hover,
.ttp-home-hero__title a:focus {
  color: #dbeafe;
}

.ttp-home-story-card__title a:hover {
  color: var(--ttp-blue);
}

.ttp-home-hero__meta,
.ttp-home-story-card__meta {
  color: var(--ttp-muted);
  font-size: 13px;
  font-weight: 800;
}

.ttp-home-hero__meta .updated:not(.published) {
  display: none;
}

.ttp-home-hero__meta a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
}

.ttp-home-hero__meta {
  color: rgba(255, 255, 255, .72);
}

.ttp-home-hero__excerpt {
  max-width: 50ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, .80);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
}

.ttp-home-hero__excerpt p {
  margin: 0;
}

.ttp-home-actions {
  margin-top: 26px;
}

.ttp-home-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ttp-amber), var(--ttp-rose) 42%, var(--ttp-blue));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(37, 99, 235, .24);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.ttp-home-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .30) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .45s ease;
}

.ttp-home-button:hover,
.ttp-home-button:focus {
  color: #fff;
  filter: saturate(1.08);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(37, 99, 235, .28);
}

.ttp-home-button:hover::before,
.ttp-home-button:focus::before {
  transform: translateX(120%);
}

.ttp-home-button.is-secondary {
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .16);
  backdrop-filter: blur(12px);
}

.ttp-home-button.is-secondary:hover,
.ttp-home-button.is-secondary:focus {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.ttp-home-hero__media,
.ttp-home-story-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(245, 158, 11, .12)),
    #fff;
  text-decoration: none;
}

.ttp-home-hero__media {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .64) inset,
    0 24px 58px rgba(15, 23, 42, .24);
  transform: rotate(.25deg);
}

.ttp-home-hero__media::after {
  content: "Latest field note";
  position: absolute;
  left: 18px;
  bottom: 18px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--ttp-ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .16);
  backdrop-filter: blur(14px);
}

.ttp-home-hero__media img,
.ttp-home-story-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ttp-home-hero__media img {
  min-height: 100%;
  aspect-ratio: 4 / 5;
}

.ttp-home-media-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: var(--ttp-blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.ttp-home-stat-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100% - clamp(18px, 4vw, 52px), 1000px);
  margin: calc(clamp(34px, 6vw, 76px) * -1) auto 0;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, .10);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(251, 252, 255, .90)),
    var(--ttp-paper);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .90) inset,
    0 24px 56px rgba(15, 23, 42, .14);
}

.ttp-home-stat-strip div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  align-content: center;
  justify-items: center;
  padding: 18px;
  text-align: center;
}

.ttp-home-stat-strip div + div {
  border-left: 1px solid rgba(23, 32, 51, .09);
}

.ttp-home-stat-strip span {
  color: var(--ttp-ink);
  font-size: clamp(25px, 4vw, 42px);
  font-weight: 950;
  line-height: 1;
}

.ttp-home-stat-strip strong {
  color: var(--ttp-muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.ttp-home-intro,
.ttp-home-search-panel,
.ttp-context-search-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .58fr);
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(23, 32, 51, .11);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(247, 250, 255, .72)),
    linear-gradient(100deg, rgba(245, 158, 11, .10), transparent 32%, rgba(14, 165, 233, .12));
  box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
}

.ttp-home-intro .ttp-home-kicker,
.ttp-home-section .ttp-home-kicker,
.ttp-home-search-panel .ttp-home-kicker,
.ttp-context-search-panel .ttp-home-kicker {
  border-color: rgba(37, 99, 235, .16);
  background: rgba(37, 99, 235, .09);
  color: var(--ttp-blue);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .07);
}

.ttp-home-intro h2,
.ttp-home-section h2,
.ttp-home-search-panel h2,
.ttp-context-search-panel h2 {
  margin: 8px 0 0;
  color: var(--ttp-ink);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.ttp-home-intro > p,
.ttp-home-search-panel p,
.ttp-context-search-panel p {
  margin: 0;
  color: #3f4b5d;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
}

.ttp-home-editorial-note {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 4vw, 54px);
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 158, 11, .20), transparent 22rem),
    radial-gradient(circle at 12% 92%, rgba(14, 165, 233, .14), transparent 20rem),
    linear-gradient(135deg, rgba(17, 24, 39, .99), rgba(24, 36, 62, .98) 54%, rgba(15, 118, 110, .92));
  box-shadow: 0 28px 66px rgba(15, 23, 42, .20);
  color: rgba(255, 255, 255, .82);
}

.ttp-home-editorial-note::before {
  content: "TTP";
  position: absolute;
  right: clamp(12px, 4vw, 42px);
  bottom: clamp(-26px, -2vw, -10px);
  z-index: -1;
  color: rgba(255, 255, 255, .055);
  font-size: clamp(120px, 22vw, 260px);
  font-weight: 950;
  line-height: .74;
}

.ttp-home-editorial-note .ttp-home-kicker {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .86);
}

.ttp-home-editorial-note h2 {
  max-width: 12ch;
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 950;
  line-height: .96;
  letter-spacing: 0;
}

.ttp-home-editorial-note__copy p:last-child {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.66;
}

.ttp-home-editorial-points {
  display: grid;
  gap: 14px;
  align-content: center;
}

.ttp-home-editorial-points div {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
  backdrop-filter: blur(16px);
}

.ttp-home-editorial-points span {
  grid-row: span 2;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.ttp-home-editorial-points strong {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.ttp-home-editorial-points p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.5;
}

.ttp-home-section {
  width: 100%;
}

.ttp-home-text-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ttp-blue);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .07);
  text-decoration: none;
}

.ttp-home-text-link::after {
  content: ">";
  font-weight: 950;
}

.ttp-home-text-link:hover,
.ttp-home-text-link:focus {
  color: var(--ttp-teal);
  border-color: rgba(15, 118, 110, .20);
  transform: translateY(-1px);
}

.ttp-home-story-grid,
.ttp-home-category-grid,
.ttp-home-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ttp-home-story-card,
.ttp-home-category-card,
.ttp-home-update {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, .12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 252, 255, .92)),
    var(--ttp-paper);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .82) inset,
    var(--ttp-soft-shadow);
}

.ttp-home-story-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 22px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ttp-home-story-card::before,
.ttp-home-category-card::before,
.ttp-home-update::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--ttp-amber), var(--ttp-rose), var(--ttp-blue), var(--ttp-teal));
}

.ttp-home-story-card:hover,
.ttp-home-category-card:hover,
.ttp-home-update:hover {
  border-color: rgba(37, 99, 235, .24);
  box-shadow: 0 24px 54px rgba(15, 23, 42, .16);
  transform: translateY(-5px);
}

.ttp-home-story-card__media {
  min-height: 210px;
}

.ttp-home-story-card__media img {
  aspect-ratio: 16 / 10;
  transition: transform .35s ease, filter .35s ease;
}

.ttp-home-story-card:hover .ttp-home-story-card__media img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.04);
}

.ttp-home-story-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

.ttp-home-story-card__title {
  margin: 10px 0 8px;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.12;
  letter-spacing: 0;
}

.ttp-home-story-card__excerpt {
  display: -webkit-box;
  margin: 0 0 14px;
  overflow: hidden;
  color: #4b5565;
  font-size: 14px;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (min-width: 981px) {
  .ttp-home-story-card:first-child {
    display: grid;
    grid-column: span 2;
    grid-template-columns: minmax(260px, .9fr) minmax(0, .7fr);
  }

  .ttp-home-story-card:first-child .ttp-home-story-card__media,
  .ttp-home-story-card:first-child .ttp-home-story-card__media img {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .ttp-home-story-card:first-child .ttp-home-story-card__body {
    justify-content: center;
    padding: clamp(22px, 3vw, 34px);
  }

  .ttp-home-story-card:first-child .ttp-home-story-card__title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.02;
  }

  .ttp-home-story-card:first-child .ttp-home-story-card__excerpt {
    color: #394558;
    font-size: 16px;
    -webkit-line-clamp: 5;
  }
}

.ttp-home-category-card {
  display: grid;
  min-height: 176px;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  color: var(--ttp-ink);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ttp-home-category-card::after {
  content: "Explore";
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--ttp-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.ttp-home-category-card span {
  position: relative;
  z-index: 1;
  font-size: clamp(21px, 3vw, 29px);
  font-weight: 950;
  line-height: 1.05;
}

.ttp-home-category-card strong {
  position: relative;
  z-index: 1;
  color: var(--ttp-muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  padding-bottom: 44px;
}

.ttp-home-category-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--ttp-blue), var(--ttp-sky), var(--ttp-teal));
}

.ttp-home-category-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--ttp-rose), var(--ttp-amber), var(--ttp-blue));
}

.ttp-home-category-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--ttp-teal), var(--ttp-amber), var(--ttp-rose));
}

.ttp-home-category-card:nth-child(5)::before {
  background: linear-gradient(90deg, var(--ttp-violet), var(--ttp-blue), var(--ttp-rose));
}

.ttp-home-route-deck {
  position: relative;
}

.ttp-home-route-grid {
  align-items: stretch;
  margin-top: 24px;
  row-gap: 28px;
}

.ttp-home-route-card {
  --file-paper: #f7f3ea;
  --file-paper-deep: #eee5d3;
  --file-ink: #1f2937;
  --file-muted: #5b6473;
  --file-accent: #7b3f2c;
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 312px;
  align-content: space-between;
  gap: 22px;
  overflow: hidden;
  padding: 34px 28px 26px;
  border: 1px solid rgba(80, 70, 55, .26);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .22)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(80, 70, 55, .07) 38px 39px),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .62), transparent 16rem),
    linear-gradient(180deg, var(--file-paper), var(--file-paper-deep));
  color: var(--file-ink);
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .78) inset,
    0 20px 42px rgba(31, 41, 55, .09);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ttp-home-route-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  z-index: 0;
  width: min(40%, 154px);
  height: 24px;
  border: 1px solid rgba(80, 70, 55, .20);
  border-bottom: 0;
  border-radius: 0 0 9px 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .50), transparent),
    color-mix(in srgb, var(--file-paper-deep) 62%, #fff);
  box-shadow: 0 8px 18px rgba(31, 41, 55, .045);
}

.ttp-home-route-card::after {
  content: "";
  position: absolute;
  inset: 11px;
  z-index: 0;
  border-top: 3px solid color-mix(in srgb, var(--file-accent) 54%, transparent);
  border-radius: 8px;
  opacity: .58;
  pointer-events: none;
}

.ttp-home-route-card > * {
  position: relative;
  z-index: 1;
}

.ttp-home-route-card h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 12px;
  background: color-mix(in srgb, var(--file-accent) 72%, #111827);
  opacity: .55;
}

.ttp-home-route-card:nth-child(2) {
  --file-paper: #f3f2e9;
  --file-paper-deep: #e3e6da;
  --file-accent: #176b66;
}

.ttp-home-route-card:nth-child(3) {
  --file-paper: #f5ede3;
  --file-paper-deep: #eadbc8;
  --file-accent: #8c3f54;
}

.ttp-home-route-card:hover,
.ttp-home-route-card:focus {
  border-color: rgba(78, 66, 47, .34);
  color: var(--file-ink);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .78) inset,
    0 24px 52px rgba(31, 41, 55, .13);
  transform: translateY(-3px);
}

.ttp-home-route-card span {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--file-accent) 34%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, .46);
  color: color-mix(in srgb, var(--file-accent) 64%, #111827);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.ttp-home-route-card h3 {
  max-width: 12ch;
  margin: 4px 0 0;
  color: var(--file-ink);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
}

.ttp-home-route-card p {
  margin: 0;
  color: var(--file-muted);
  font-size: 14.5px;
  line-height: 1.56;
}

.ttp-home-route-card strong {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--file-accent) 32%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  color: color-mix(in srgb, var(--file-accent) 70%, #111827);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

.ttp-home-route-card strong::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: .58;
}

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
  .ttp-home-route-card h3::after,
  .ttp-home-route-card strong::before {
    background: var(--file-accent);
  }

  .ttp-home-route-card span,
  .ttp-home-route-card strong {
    border-color: rgba(47, 42, 34, .22);
    color: var(--file-accent);
  }
}

.ttp-home-update-list {
  display: grid;
  gap: 12px;
}

.ttp-home-updates {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, .98), rgba(23, 32, 51, .94)),
    var(--ttp-night);
  box-shadow: 0 26px 62px rgba(15, 23, 42, .18);
}

.ttp-home-updates h2 {
  color: #fff;
}

.ttp-home-updates .ttp-home-kicker {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .84);
}

.ttp-home-update {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .055)),
    rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
}

.ttp-home-update span {
  font-weight: 900;
}

.ttp-home-update strong {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 900;
}

.ttp-home-search-panel .ttp-search-form,
.ttp-context-search-panel .ttp-search-form {
  margin: 0;
  justify-self: end;
}

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

.ttp-post-grid.is-related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ttp-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: var(--ttp-radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .10), rgba(15, 118, 110, .06) 34%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--ttp-soft-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ttp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--ttp-blue), var(--ttp-teal), var(--ttp-amber));
}

.ttp-card:hover {
  border-color: rgba(37, 99, 235, .24);
  box-shadow: var(--ttp-shadow);
  transform: translateY(-3px);
}

.ttp-card-media {
  display: block;
  overflow: hidden;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(15, 118, 110, .10)),
    #fff;
  text-decoration: none;
}

.ttp-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .28s ease;
}

.ttp-card:hover .ttp-card-media img {
  transform: scale(1.035);
}

.ttp-card-placeholder {
  display: grid;
  min-height: 210px;
  place-items: center;
  color: var(--ttp-blue);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.ttp-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.ttp-card-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.1;
  letter-spacing: 0;
}

.ttp-card-title a {
  color: var(--ttp-ink);
  text-decoration: none;
}

.ttp-card-title a:hover {
  color: var(--ttp-blue);
}

.ttp-card-excerpt {
  color: var(--ttp-muted);
  font-size: 15px;
  line-height: 1.55;
}

.ttp-card-excerpt p {
  margin-bottom: 16px;
}

.ttp-read-more {
  margin-top: auto;
}

.ttp-entry-footer,
.post-navigation,
.comments-area {
  width: min(100%, var(--ttp-content));
  margin: clamp(24px, 4vw, 42px) auto;
}

.ttp-tag-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--ttp-muted);
  font-size: 14px;
  font-weight: 750;
}

.ttp-tag-list a {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(99, 116, 139, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.post-navigation .nav-links a {
  width: 100%;
  max-width: 360px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(15, 118, 110, .08)),
    #fff;
  color: var(--ttp-ink);
  box-shadow: var(--ttp-soft-shadow);
}

.post-navigation .nav-links a:hover {
  color: var(--ttp-blue);
}

.nav-subtitle {
  color: var(--ttp-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-title {
  margin-top: 4px;
  font-weight: 850;
}

.ttp-comments-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(37, 99, 235, .13);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 250, 255, .82)),
    linear-gradient(100deg, rgba(245, 158, 11, .10), transparent 44%, rgba(15, 118, 110, .10));
  box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
}

.ttp-comments-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--ttp-amber), var(--ttp-sky), var(--ttp-teal));
}

.ttp-comments-card .ttp-home-kicker {
  border-color: rgba(37, 99, 235, .16);
  background: rgba(37, 99, 235, .09);
  color: var(--ttp-blue);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .07);
}

.ttp-comments-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.ttp-comments-card__head h2 {
  margin: 8px 0 6px;
  color: var(--ttp-ink);
  font-size: clamp(25px, 4vw, 40px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.ttp-comments-card__head p:not(.ttp-home-kicker) {
  max-width: 56ch;
  margin: 0;
  color: var(--ttp-muted);
  line-height: 1.55;
}

.ttp-comments-count {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--ttp-blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ttp-comment-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.ttp-comment-list .comment {
  padding: 14px;
  border: 1px solid rgba(99, 116, 139, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--ttp-soft-shadow);
}

.ttp-comment-list .children {
  margin: 12px 0 0 14px;
  padding-left: 12px;
  border-left: 2px solid rgba(37, 99, 235, .14);
  list-style: none;
}

.ttp-comment-list .comment-meta,
.ttp-comment-list .comment-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--ttp-muted);
  font-size: 13px;
}

.ttp-comment-list .avatar {
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

.ttp-comment-list .comment-content {
  margin-top: 10px;
  color: #2c3647;
}

.ttp-comment-list .reply a,
.ttp-comments-card .comment-navigation a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--ttp-blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.ttp-comment-drawer {
  margin-top: 18px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .78)),
    rgba(255, 255, 255, .88);
  box-shadow: var(--ttp-soft-shadow);
}

.ttp-comment-drawer summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--ttp-ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 950;
  list-style: none;
}

.ttp-comment-drawer summary::-webkit-details-marker {
  display: none;
}

.ttp-comment-drawer .ttp-contact-stamp {
  border-color: rgba(37, 99, 235, .14);
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(15, 118, 110, .10));
  color: var(--ttp-blue);
}

.ttp-comment-form-shell {
  padding: 0 14px 14px;
}

.ttp-comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ttp-comment-form label {
  display: grid;
  gap: 6px;
  color: var(--ttp-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ttp-comment-form label.is-wide,
.ttp-comment-form .logged-in-as,
.ttp-comment-form .comment-form-cookies-consent,
.ttp-comment-form .form-submit {
  grid-column: 1 / -1;
}

.ttp-comment-form input:not([type="checkbox"]),
.ttp-comment-form textarea {
  width: 100%;
  border: 1px solid rgba(99, 116, 139, .22);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  color: var(--ttp-ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.ttp-comment-form input:not([type="checkbox"]) {
  min-height: 42px;
  padding: 9px 11px;
}

.ttp-comment-form textarea {
  min-height: 112px;
  padding: 11px;
  resize: vertical;
}

.ttp-comment-form input:focus,
.ttp-comment-form textarea:focus {
  outline: 3px solid rgba(37, 99, 235, .15);
  border-color: rgba(37, 99, 235, .42);
}

.ttp-comment-form .logged-in-as,
.ttp-comment-form .comment-form-cookies-consent {
  margin: 0;
  color: var(--ttp-muted);
  font-size: 13px;
}

.ttp-comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
}

.ttp-comment-form .form-submit {
  margin: 0;
}

.ttp-comment-submit {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ttp-blue), var(--ttp-sky), var(--ttp-teal));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
  cursor: pointer;
}

.ttp-comments-closed {
  margin: 18px 0 0;
  color: var(--ttp-muted);
  font-weight: 750;
}

.navigation.pagination {
  margin-top: 34px;
}

.pagination .nav-links {
  justify-content: center;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 116, 139, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--ttp-ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--ttp-soft-shadow);
}

.pagination .page-numbers.current {
  color: #fff;
  background: linear-gradient(135deg, var(--ttp-blue), var(--ttp-teal));
}

.ttp-search-form {
  display: flex;
  width: min(100%, 680px);
  gap: 10px;
  margin-top: 18px;
}

.ttp-search-field {
  min-height: 46px;
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(99, 116, 139, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--ttp-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.ttp-search-field:focus {
  outline: 3px solid rgba(37, 99, 235, .16);
  border-color: rgba(37, 99, 235, .45);
}

.ttp-share-strip {
  width: min(100% - 32px, var(--ttp-content));
  margin: clamp(22px, 4vw, 40px) auto;
}

.ttp-share-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 250, 255, .82)),
    linear-gradient(100deg, rgba(245, 158, 11, .10), transparent 42%, rgba(14, 165, 233, .10));
  box-shadow: var(--ttp-soft-shadow);
}

.ttp-share-strip span {
  display: block;
  color: var(--ttp-blue);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.ttp-share-strip strong {
  display: block;
  margin-top: 5px;
  color: var(--ttp-ink);
  font-size: 17px;
  line-height: 1.2;
}

.ttp-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.ttp-share-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--ttp-blue);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .07);
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.ttp-share-button:hover,
.ttp-share-button:focus {
  color: #fff;
  background: linear-gradient(135deg, var(--ttp-blue), var(--ttp-teal));
  box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
  transform: translateY(-2px);
}

.ttp-share-button svg,
.ttp-contact-stamp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.ttp-context-search-panel {
  width: min(100% - 32px, 980px);
  max-width: 980px;
  margin-top: clamp(24px, 4vw, 46px);
  margin-bottom: clamp(20px, 4vw, 36px);
}

.ttp-empty-state {
  max-width: 760px;
  padding: clamp(28px, 6vw, 60px);
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 24px;
  background: var(--ttp-card);
  box-shadow: var(--ttp-shadow);
}

.ttp-related-section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.ttp-site-footer {
  border-top: 1px solid rgba(99, 116, 139, .14);
  background:
    linear-gradient(135deg, rgba(23, 32, 51, .98), rgba(15, 118, 110, .94)),
    #172033;
  color: rgba(255, 255, 255, .82);
}

.ttp-footer-inner {
  width: min(100% - 32px, var(--ttp-wide));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  gap: 18px;
}

.ttp-footer-brand strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.ttp-footer-brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
}

.ttp-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ttp-footer-menu a {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.ttp-footer-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .10);
}

.ttp-footer-credit {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.ttp-footer-widgets {
  display: grid;
  gap: 16px;
}

.ttp-contact-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .58fr);
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  overflow: hidden;
  margin: 10px 0 4px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035)),
    linear-gradient(110deg, rgba(15, 23, 42, .48), rgba(15, 118, 110, .20));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .16) inset,
    0 22px 52px rgba(0, 0, 0, .18);
}

.ttp-contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--ttp-amber), var(--ttp-sky), var(--ttp-teal));
}

.ttp-contact-card::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -30%;
  width: 46%;
  height: 140%;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 58%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .09) 0 9px, transparent 9px 18px);
  transform: rotate(-12deg);
}

.ttp-contact-card__copy h2 {
  margin: 8px 0 8px;
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.03;
}

.ttp-contact-card__copy p:not(.ttp-home-kicker) {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, .75);
}

.ttp-contact-drawer {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
  backdrop-filter: blur(16px);
}

.ttp-contact-drawer summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
}

.ttp-contact-drawer summary::-webkit-details-marker {
  display: none;
}

.ttp-contact-stamp {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 15px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.ttp-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 14px 14px;
}

.ttp-contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ttp-contact-form label.is-wide {
  grid-column: 1 / -1;
}

.ttp-contact-form input,
.ttp-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .93);
  color: var(--ttp-ink);
  font: inherit;
}

.ttp-contact-form input {
  min-height: 42px;
  padding: 9px 11px;
}

.ttp-contact-form textarea {
  min-height: 116px;
  padding: 11px;
  resize: vertical;
}

.ttp-contact-form input:focus,
.ttp-contact-form textarea:focus {
  outline: 3px solid rgba(14, 165, 233, .22);
  border-color: rgba(14, 165, 233, .45);
}

.ttp-contact-submit {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ttp-amber), var(--ttp-sky), var(--ttp-teal));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
  cursor: pointer;
}

.ttp-contact-notice {
  margin: 0 14px 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
}

.ttp-contact-notice.is-success {
  background: rgba(34, 197, 94, .22);
}

.ttp-contact-notice.is-error {
  background: rgba(225, 29, 72, .24);
}

.ttp-contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text,
.gallery-caption {
  color: var(--ttp-muted);
  font-size: 13px;
}

.sticky {
  border-color: rgba(245, 158, 11, .32);
}

.bypostauthor {
  outline: 2px solid rgba(37, 99, 235, .12);
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0 24px 18px 0;
}

.alignright {
  float: right;
  margin: 0 0 18px 24px;
}

@media (max-width: 980px) {
  .ttp-editorial-entry-hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(17, 24, 39, .98), rgba(31, 47, 79, .96)),
      var(--ttp-night);
  }

  .ttp-editorial-entry-media {
    min-height: clamp(300px, 48vw, 460px);
    transform: none;
  }

  .ttp-editorial-entry-media img {
    min-height: clamp(300px, 48vw, 460px);
    aspect-ratio: 16 / 9;
  }

  .ttp-home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(17, 24, 39, .98), rgba(31, 47, 79, .96)),
      var(--ttp-night);
  }

  .ttp-home-hero__copy {
    padding: clamp(8px, 3vw, 20px);
  }

  .ttp-home-hero__title {
    max-width: 14ch;
  }

  .ttp-home-hero__media {
    min-height: clamp(300px, 48vw, 460px);
    transform: none;
  }

  .ttp-home-hero__media img {
    aspect-ratio: 16 / 9;
  }

  .ttp-home-intro,
  .ttp-home-search-panel,
  .ttp-context-search-panel,
  .ttp-contact-card,
  .ttp-home-editorial-note {
    grid-template-columns: 1fr;
  }

  .ttp-home-stat-strip {
    margin-top: -36px;
  }

  .ttp-home-search-panel .ttp-search-form,
  .ttp-context-search-panel .ttp-search-form {
    justify-self: stretch;
  }

  .ttp-home-story-grid,
  .ttp-home-category-grid,
  .ttp-home-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttp-menu-toggle {
    display: inline-flex;
  }

  .ttp-site-navigation {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(99, 116, 139, .16);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--ttp-shadow);
  }

  .ttp-site-navigation.is-open {
    display: block;
  }

  .ttp-primary-menu {
    display: grid;
    gap: 4px;
  }

  .ttp-primary-menu a {
    width: 100%;
    justify-content: flex-start;
  }

  .ttp-primary-menu .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 4px 12px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .ttp-primary-menu li.is-submenu-open > .sub-menu {
    display: block;
  }

  .ttp-post-grid,
  .ttp-post-grid.is-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .ttp-home {
    gap: 26px;
  }

  .ttp-home-banner {
    margin-bottom: -4px;
  }

  .ttp-home-hero,
  .ttp-editorial-entry-hero,
  .ttp-home-intro,
  .ttp-home-search-panel,
  .ttp-context-search-panel,
  .ttp-comments-card,
  .ttp-home-editorial-note {
    border-radius: 22px;
    padding: 16px;
  }

  .ttp-home-stat-strip {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 100%);
    margin-top: -24px;
    border-radius: 20px;
  }

  .ttp-home-stat-strip div {
    min-height: 86px;
  }

  .ttp-home-stat-strip div + div {
    border-top: 1px solid rgba(23, 32, 51, .09);
    border-left: 0;
  }

  .ttp-home-hero__title {
    font-size: clamp(36px, 11vw, 52px);
    line-height: .98;
  }

  .ttp-editorial-entry-hero .ttp-entry-title {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 54px);
    line-height: .98;
  }

  .ttp-editorial-entry-media::after {
    left: 12px;
    bottom: 12px;
  }

  .ttp-home-hero__media::after {
    left: 12px;
    bottom: 12px;
  }

  .ttp-home-actions,
  .ttp-home-section__header,
  .ttp-home-update {
    align-items: stretch;
    flex-direction: column;
  }

  .ttp-home-button,
  .ttp-home-text-link {
    width: 100%;
  }

  .ttp-home-story-grid,
  .ttp-home-category-grid,
  .ttp-home-route-grid {
    grid-template-columns: 1fr;
  }

  .ttp-home-editorial-note h2 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 48px);
  }

  .ttp-home-editorial-points div {
    grid-template-columns: 1fr;
  }

  .ttp-home-editorial-points span {
    grid-row: auto;
  }

  .ttp-home-route-card {
    min-height: auto;
    gap: 20px;
    padding: 30px 22px 24px;
  }

  .ttp-home-route-card h3 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .ttp-home-route-card p {
    font-size: 15px;
  }

  .ttp-home-route-card::before {
    left: 22px;
    width: 136px;
  }

  .ttp-home-story-card__media {
    min-height: 220px;
  }

  .ttp-home-update strong {
    width: fit-content;
  }

  .ttp-header-inner {
    min-height: 74px;
  }

  .ttp-main {
    width: min(100% - 24px, var(--ttp-wide));
  }

  .ttp-post-grid,
  .ttp-post-grid.is-related {
    grid-template-columns: 1fr;
  }

  .ttp-page-head h1,
  .ttp-entry-title,
  .ttp-empty-state h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .ttp-entry-content h2::before {
    transform: translateX(-10px);
  }

  .ttp-search-form,
  .nav-links,
  .ttp-share-strip,
  .ttp-contact-card,
  .ttp-contact-form,
  .ttp-comments-card__head {
    flex-direction: column;
  }

  .ttp-share-strip,
  .ttp-contact-card,
  .ttp-contact-form,
  .ttp-comment-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .single-post .ttp-entry-footer .ttp-tag-list,
  .single-post .ttp-entry-content .taxonomy-post_tag,
  .single-post .ttp-entry-content .wp-block-post-terms.taxonomy-post_tag {
    display: none !important;
  }

  .ttp-comments-card__head {
    align-items: flex-start;
  }

  .ttp-comment-list .children {
    margin-left: 6px;
    padding-left: 10px;
  }

  .ttp-share-links {
    justify-content: flex-start;
  }

  .post-navigation .nav-links a {
    max-width: none;
  }

  .alignleft,
  .alignright {
    float: none;
    margin: 18px auto;
  }
}

@media (max-width: 720px) {
  body .ttp-ob-banner-block {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  body .ttp-ob-banner__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    overflow: hidden;
  }

  body .ttp-ob-banner__prefix {
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  body .ttp-ob-banner__track-wrap {
    display: block !important;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    height: 30px;
    min-height: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
    scrollbar-width: none;
  }

  body .ttp-ob-banner__track {
    position: static;
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 18px;
    min-width: max-content;
    transform: none !important;
    white-space: nowrap;
    will-change: auto;
    max-width: none;
  }

  body .ttp-ob-banner__track--clone {
    display: none !important;
  }

  body .ttp-ob-banner__item,
  body .ttp-ob-banner__link,
body .ttp-ob-banner__text {
    white-space: nowrap;
  }
}

/* Premium editorial homepage reset. */
body.home .ttp-home {
  gap: clamp(34px, 5.6vw, 76px);
}

body.home .ttp-home-kicker,
body.home .ttp-home-hero__category,
body.home .ttp-eyebrow,
body.home .ttp-home-intro .ttp-home-kicker,
body.home .ttp-home-section .ttp-home-kicker,
body.home .ttp-home-search-panel .ttp-home-kicker,
body.home .ttp-context-search-panel .ttp-home-kicker {
  min-height: 28px;
  padding: 7px 10px;
  border-color: rgba(48, 54, 63, .18);
  border-radius: 999px;
  background: rgba(255, 253, 247, .72);
  color: #354052;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .075em;
  box-shadow: none;
  backdrop-filter: none;
}

body.home .ttp-home-hero .ttp-home-kicker,
body.home .ttp-home-hero__category,
body.home .ttp-home-editorial-note .ttp-home-kicker,
body.home .ttp-home-updates .ttp-home-kicker,
body.home .ttp-contact-card .ttp-home-kicker {
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .095);
  color: rgba(255, 255, 255, .86);
}

body.home .ttp-home-hero__category {
  color: #f3dfbd;
}

body.home .ttp-home-button {
  border-color: rgba(255, 255, 255, .26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    #f4ead7;
  color: #172033;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

body.home .ttp-home-button.is-secondary {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: none;
}

body.home .ttp-home-button:hover,
body.home .ttp-home-button:focus {
  color: #172033;
  filter: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}

body.home .ttp-home-button.is-secondary:hover,
body.home .ttp-home-button.is-secondary:focus {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

body.home .ttp-home-stat-strip {
  border-color: rgba(31, 41, 55, .14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(245, 239, 227, .94)),
    #fffaf3;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .13);
}

body.home .ttp-home-stat-strip span {
  color: #172033;
}

body.home .ttp-home-intro,
body.home .ttp-home-search-panel,
body.home .ttp-context-search-panel {
  border-color: rgba(31, 41, 55, .12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .97), rgba(247, 243, 235, .92)),
    #fffaf3;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

body.home .ttp-home-trip-planner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, .58fr) minmax(540px, 1.42fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .13);
  border-top: 7px solid transparent;
  border-image: linear-gradient(90deg, #dda236, #b84d59, #3867c8, #2c7068) 1;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(rgba(23, 32, 51, .038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, .035) 1px, transparent 1px),
    radial-gradient(circle at 82% 22%, rgba(56, 103, 200, .18), transparent 31%),
    radial-gradient(circle at 15% 100%, rgba(221, 162, 54, .15), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(247, 243, 235, .92));
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  box-shadow: 0 26px 68px rgba(15, 23, 42, .13);
}

body.home .ttp-home-trip-planner::before {
  content: "PLAN";
  position: absolute;
  right: -12px;
  bottom: -18px;
  color: rgba(23, 32, 51, .035);
  font-size: clamp(88px, 15vw, 190px);
  font-weight: 950;
  letter-spacing: .02em;
  line-height: .8;
  pointer-events: none;
}

body.home .ttp-home-trip-planner__copy,
body.home .ttp-home-trip-planner__visual,
body.home .ttp-home-trip-planner__steps {
  position: relative;
  z-index: 1;
}

body.home .ttp-home-trip-planner__copy h2 {
  max-width: 10ch;
  margin: 14px 0;
  color: #172033;
  font-size: clamp(34px, 4.3vw, 62px);
  line-height: .98;
  letter-spacing: -.018em;
}

body.home .ttp-home-trip-planner__copy p:not(.ttp-home-kicker) {
  max-width: 40ch;
  color: #4b5565;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

body.home .ttp-home-trip-planner__mini-list {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 18px;
}

body.home .ttp-home-trip-planner__mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #273244;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body.home .ttp-home-trip-planner__mini-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid #fffefa;
  border-radius: 50%;
  background: #2c7068;
  box-shadow: 0 0 0 3px rgba(44, 112, 104, .13);
}

body.home .ttp-home-trip-planner__actions {
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

body.home .ttp-home-trip-planner__actions .ttp-home-button {
  border-color: rgba(23, 32, 51, .12);
  background: #172033;
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .18);
}

body.home .ttp-home-trip-planner__actions .ttp-home-button:hover,
body.home .ttp-home-trip-planner__actions .ttp-home-button:focus {
  color: #fff;
}

body.home .ttp-home-trip-planner__visual {
  display: grid;
  grid-template-areas:
    "stage"
    "summary";
  gap: 14px;
  min-height: 0;
}

body.home .ttp-home-trip-story-demo,
body.home .ttp-home-trip-nav-card,
body.home .ttp-home-trip-summary {
  position: relative;
  z-index: 4;
  border: 1px solid rgba(31, 41, 55, .13);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(247, 243, 235, .90)),
    #fffaf3;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

body.home .ttp-home-trip-story-demo {
  grid-area: stage;
  min-height: clamp(320px, 32vw, 430px);
  overflow: hidden;
  padding: 18px;
  perspective: 1100px;
}

body.home .ttp-home-trip-story-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .45), transparent 42%),
    linear-gradient(rgba(23, 32, 51, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, .03) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  pointer-events: none;
}

body.home .ttp-home-trip-article-card,
body.home .ttp-home-trip-found-card {
  position: absolute;
  inset: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(247, 243, 235, .91)),
    #fffaf3;
  box-shadow:
    0 18px 38px rgba(15, 23, 42, .10),
    -10px 10px 0 rgba(255, 253, 248, .50),
    -20px 20px 0 rgba(23, 32, 51, .045);
  transform-origin: left center;
  transform-style: preserve-3d;
  will-change: opacity, transform;
}

body.home .ttp-home-trip-article-card {
  opacity: 1;
  animation: ttp-home-article-card 18s ease-in-out infinite;
}

body.home .ttp-home-trip-article-scroll {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 26px;
  animation: ttp-home-article-scroll 18s cubic-bezier(.4, 0, .2, 1) infinite;
}

body.home .ttp-home-trip-article-card span,
body.home .ttp-home-trip-address-snippet em {
  color: #7a3f2c;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.home .ttp-home-trip-article-card strong {
  max-width: 14ch;
  color: #172033;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .98;
}

body.home .ttp-home-trip-article-card i {
  display: block;
  width: min(100%, 430px);
  height: 10px;
  border-radius: 999px;
  background: rgba(23, 32, 51, .10);
}

body.home .ttp-home-trip-article-card i:nth-of-type(2) {
  width: min(76%, 330px);
}

body.home .ttp-home-trip-article-card i:nth-of-type(3) {
  width: min(88%, 390px);
}

body.home .ttp-home-trip-article-image {
  width: min(100%, 470px);
  height: clamp(92px, 11vw, 132px);
  margin: 2px 0;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(23, 32, 51, .72), rgba(44, 112, 104, .34)),
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px),
    #172033;
  background-size: auto, 22px 22px, 22px 22px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24);
}

body.home .ttp-home-trip-address-snippet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  width: min(100%, 500px);
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(44, 112, 104, .18);
  border-left: 5px solid #2c7068;
  border-radius: 18px;
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .11);
}

body.home .ttp-home-trip-address-snippet b {
  grid-column: 1;
  color: #172033;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.05;
}

body.home .ttp-home-trip-address-snippet small {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  justify-self: end;
  padding: 10px 12px;
  border-radius: 999px;
  background: #172033;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .18);
}

body.home .ttp-home-trip-article-click {
  position: absolute;
  right: clamp(118px, 24%, 180px);
  bottom: clamp(64px, 8vw, 78px);
  z-index: 9;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(44, 112, 104, .38);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-home-article-click-ring 18s ease-in-out infinite;
}

body.home .ttp-home-trip-article-cursor {
  position: absolute;
  right: clamp(128px, 25%, 190px);
  bottom: clamp(66px, 8.2vw, 80px);
  z-index: 10;
  width: 23px;
  height: 30px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 21px 97%, 14px 75%, 23px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-home-article-cursor 18s ease-in-out infinite;
}

body.home .ttp-home-trip-search-card,
body.home .ttp-home-trip-results-card,
body.home .ttp-home-trip-found-card {
  position: absolute;
  inset: 14px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 14px;
  background: rgba(255, 253, 248, .92);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, .08),
    -8px 8px 0 rgba(255, 253, 248, .50),
    -16px 16px 0 rgba(23, 32, 51, .04);
  transform-origin: left center;
  transform-style: preserve-3d;
  will-change: opacity, transform;
}

body.home .ttp-home-trip-search-card {
  animation: ttp-home-story-search 18s ease-in-out infinite;
}

body.home .ttp-home-trip-results-card {
  opacity: 0;
  transform: translate3d(18px, 10px, 0) rotate(2deg) rotateY(10deg) scale(.98);
  animation: ttp-home-story-results 18s ease-in-out infinite;
}

body.home .ttp-home-trip-found-card {
  grid-template-columns: minmax(0, 1fr) auto;
  opacity: 0;
  transform: translate3d(24px, 8px, 0) rotate(2deg) rotateY(12deg) scale(.98);
  animation: ttp-home-story-found 18s ease-in-out infinite;
}

body.home .ttp-home-trip-search-card span,
body.home .ttp-home-trip-results-card span,
body.home .ttp-home-trip-found-card span,
body.home .ttp-home-trip-nav-card span,
body.home .ttp-home-trip-summary span {
  color: #7a3f2c;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.home .ttp-home-trip-search-card strong,
body.home .ttp-home-trip-found-card strong,
body.home .ttp-home-trip-summary strong {
  display: block;
  color: #172033;
  font-size: 18px;
  line-height: 1.15;
}

body.home .ttp-home-trip-search-card em,
body.home .ttp-home-trip-found-card em,
body.home .ttp-home-trip-summary em {
  display: block;
  color: #5a6676;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.35;
}

body.home .ttp-home-trip-results-card b {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #273244;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}

body.home .ttp-home-trip-results-card b::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dda236;
  box-shadow: 0 0 0 4px rgba(221, 162, 54, .13);
}

body.home .ttp-home-trip-results-card b:nth-of-type(2)::before {
  background: #2c7068;
  box-shadow: 0 0 0 4px rgba(44, 112, 104, .14);
}

body.home .ttp-home-trip-results-card::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 105px;
  z-index: 8;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(44, 112, 104, .34);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-home-result-click-ring 18s ease-in-out infinite;
}

body.home .ttp-home-trip-results-card::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 108px;
  z-index: 9;
  width: 22px;
  height: 28px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-home-result-cursor 18s ease-in-out infinite;
}

body.home .ttp-home-trip-found-card i {
  grid-row: 1 / span 3;
  grid-column: 2;
  align-self: center;
  padding: 8px 10px;
  border: 1px solid rgba(44, 112, 104, .20);
  border-radius: 999px;
  background: rgba(44, 112, 104, .10);
  color: #2c7068;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

body.home .ttp-home-trip-nav-card {
  grid-area: stage;
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: clamp(320px, 32vw, 430px);
  padding: clamp(22px, 3vw, 34px);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  animation: ttp-home-nav-card-in 18s ease-in-out infinite;
}

body.home .ttp-home-trip-nav-card::before {
  content: "";
  position: absolute;
  left: calc(50% - 2px);
  top: calc(50% + 8px);
  z-index: 8;
  width: 22px;
  height: 28px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-home-nav-cursor 18s ease-in-out infinite;
}

body.home .ttp-home-trip-nav-card::after {
  content: "";
  position: absolute;
  left: calc(50% - 14px);
  top: 50%;
  z-index: 7;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(14, 165, 233, .34);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-home-nav-click-ring 18s ease-in-out infinite;
}

body.home .ttp-home-trip-nav-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
}

body.home .ttp-home-trip-nav-options b {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: clamp(92px, 10vw, 126px);
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
  color: #2563eb;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

body.home .ttp-home-trip-nav-options .is-waze {
  color: #0ea5e9;
  animation: ttp-home-nav-choice 18s ease-in-out infinite;
}

body.home .ttp-home-trip-nav-options .is-apple {
  color: #38bdf8;
}

body.home .ttp-home-trip-nav-options img {
  width: clamp(32px, 4vw, 48px);
  height: clamp(32px, 4vw, 48px);
  object-fit: contain;
}

body.home .ttp-home-trip-map {
  grid-area: stage;
  position: relative;
  z-index: 6;
  min-height: clamp(320px, 32vw, 430px);
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 253, 248, .88) 0 12px, transparent 13px),
    radial-gradient(circle at 75% 24%, rgba(255, 253, 248, .82) 0 16px, transparent 17px),
    radial-gradient(circle at 68% 76%, rgba(255, 253, 248, .82) 0 14px, transparent 15px),
    linear-gradient(rgba(45, 112, 104, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 112, 104, .06) 1px, transparent 1px),
    radial-gradient(circle at 28% 36%, rgba(45, 112, 104, .22), transparent 14%),
    radial-gradient(circle at 70% 64%, rgba(221, 162, 54, .23), transparent 15%),
    #f7f2e8;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  opacity: 0;
  transform: translateY(12px) scale(.985);
  animation: ttp-home-map-reveal 18s ease-in-out infinite;
}

body.home .ttp-home-trip-map::before,
body.home .ttp-home-trip-map::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

body.home .ttp-home-trip-map::before {
  inset: -60px;
  background:
    linear-gradient(38deg, transparent 0 45%, rgba(255, 255, 255, .50) 45% 48%, transparent 48%),
    linear-gradient(-28deg, transparent 0 49%, rgba(255, 255, 255, .38) 49% 52%, transparent 52%);
  opacity: .74;
  animation: ttp-home-map-pan 18s ease-in-out infinite alternate;
}

body.home .ttp-home-trip-map::after {
  left: -12%;
  top: 52%;
  width: 124%;
  height: 36px;
  border-top: 2px solid rgba(122, 63, 44, .12);
  border-bottom: 2px solid rgba(122, 63, 44, .10);
  background: rgba(255, 255, 255, .28);
  transform: rotate(-12deg);
}

body.home .ttp-home-trip-road {
  position: absolute;
  z-index: 0;
  height: 9px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 10px, rgba(122, 63, 44, .18) 10px 18px, transparent 18px 30px),
    rgba(255, 255, 255, .42);
  box-shadow: 0 0 0 1px rgba(31, 41, 55, .045);
  opacity: .86;
  pointer-events: none;
}

body.home .ttp-home-trip-road.is-road-one {
  left: -8%;
  top: 28%;
  width: 74%;
  transform: rotate(18deg);
}

body.home .ttp-home-trip-road.is-road-two {
  right: -12%;
  top: 48%;
  width: 78%;
  transform: rotate(-23deg);
}

body.home .ttp-home-trip-road.is-road-three {
  left: 16%;
  bottom: 24%;
  width: 68%;
  transform: rotate(7deg);
}

body.home .ttp-home-trip-route-svg {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, .10));
  pointer-events: none;
}

body.home .ttp-home-trip-route-track,
body.home .ttp-home-trip-route-draw {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.home .ttp-home-trip-route-track {
  stroke: rgba(23, 32, 51, .13);
  stroke-width: 15;
}

body.home .ttp-home-trip-route-draw {
  stroke: url(#ttp-home-route-gradient);
  stroke-width: 8;
  stroke-dasharray: 14 14;
  filter: url(#ttp-home-route-shadow);
  stroke-dashoffset: 760;
  animation: ttp-home-route-draw 18s cubic-bezier(.4, 0, .2, 1) infinite;
}

body.home .ttp-home-trip-route-car {
  filter:
    drop-shadow(0 15px 16px rgba(15, 23, 42, .26))
    drop-shadow(0 2px 1px rgba(255, 255, 255, .75));
  opacity: 0;
  animation: ttp-home-car-reveal 18s ease-in-out infinite;
}

body.home .ttp-home-trip-place {
  position: absolute;
  z-index: 1;
  padding: 5px 8px;
  border: 1px solid rgba(31, 41, 55, .08);
  border-radius: 999px;
  background: rgba(255, 253, 248, .74);
  color: rgba(23, 32, 51, .58);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

body.home .ttp-home-trip-place.is-place-one {
  left: 18%;
  top: 18%;
}

body.home .ttp-home-trip-place.is-place-two {
  right: 10%;
  top: 32%;
}

body.home .ttp-home-trip-place.is-place-three {
  left: 43%;
  bottom: 13%;
}

body.home .ttp-home-trip-discovery {
  position: absolute;
  z-index: 7;
  display: grid;
  gap: 3px;
  min-width: 118px;
  padding: 9px 10px;
  border: 1px solid rgba(31, 41, 55, .12);
  border-left: 4px solid #dda236;
  border-radius: 13px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 16px 28px rgba(15, 23, 42, .13);
  opacity: 0;
  transform: translateY(8px) scale(.96);
}

body.home .ttp-home-trip-discovery::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid #fffefa;
  border-radius: 50%;
  background: #dda236;
  box-shadow: 0 0 0 4px rgba(221, 162, 54, .18);
  transform: translateY(-50%);
}

body.home .ttp-home-trip-discovery strong,
body.home .ttp-home-trip-discovery em {
  display: block;
}

body.home .ttp-home-trip-discovery strong {
  color: #172033;
  font-size: 12px;
  line-height: 1.1;
}

body.home .ttp-home-trip-discovery em {
  color: #2c7068;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

body.home .ttp-home-trip-discovery.is-discovery-one {
  left: 25%;
  top: 30%;
  animation: ttp-home-discovery-one 18s ease-in-out infinite;
}

body.home .ttp-home-trip-discovery.is-discovery-two {
  right: 15%;
  top: 40%;
  border-left-color: #2c7068;
  animation: ttp-home-discovery-two 18s ease-in-out infinite;
}

body.home .ttp-home-trip-discovery.is-discovery-two::before {
  background: #2c7068;
  box-shadow: 0 0 0 4px rgba(44, 112, 104, .18);
}

body.home .ttp-home-trip-discovery.is-discovery-three {
  left: 48%;
  bottom: 22%;
  border-left-color: #7a4737;
  animation: ttp-home-discovery-three 18s ease-in-out infinite;
}

body.home .ttp-home-trip-discovery.is-discovery-three::before {
  background: #7a4737;
  box-shadow: 0 0 0 4px rgba(122, 71, 55, .18);
}

body.home .ttp-home-trip-pin {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 5px solid #fffefa;
  border-radius: 50%;
  background: #172033;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 14px 24px rgba(15, 23, 42, .20);
  animation: ttp-home-pin-pop 7.2s ease-in-out infinite;
}

body.home .ttp-home-trip-pin.is-start {
  left: calc(14% - 24px);
  top: calc(23% - 24px);
  background: #2c7068;
  animation-delay: 0s;
}

body.home .ttp-home-trip-pin.is-one {
  left: calc(22% - 24px);
  top: calc(62% - 24px);
  background: #d39b2e;
  animation-delay: .7s;
}

body.home .ttp-home-trip-pin.is-two {
  left: calc(77% - 24px);
  top: calc(75% - 24px);
  background: #7a4737;
  animation-delay: 1.4s;
}

body.home .ttp-home-trip-pin.is-end {
  left: calc(91% - 24px);
  top: calc(61% - 24px);
  background: #172033;
  animation-delay: 2.1s;
}

body.home .ttp-home-trip-road-sign {
  position: absolute;
  right: 3%;
  top: 52%;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 34px;
  padding: 8px 10px;
  border: 2px solid rgba(122, 71, 55, .72);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(247, 236, 218, .94));
  color: #7a4737;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .10em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(15, 23, 42, .14);
  opacity: 0;
  transform: translateY(10px) rotate(-2deg) scale(.96);
  animation: ttp-home-road-sign 18s ease-in-out infinite;
}

body.home .ttp-home-trip-road-sign::before,
body.home .ttp-home-trip-road-sign::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 4px;
  height: 23px;
  border-radius: 999px;
  background: rgba(122, 71, 55, .70);
}

body.home .ttp-home-trip-road-sign::before {
  left: 24px;
}

body.home .ttp-home-trip-road-sign::after {
  right: 24px;
}

body.home .ttp-home-trip-popup {
  position: absolute;
  z-index: 6;
  right: 16px;
  top: 15px;
  width: min(178px, 48%);
  border: 1px solid rgba(31, 41, 55, .13);
  border-radius: 14px;
  padding: 12px 12px 11px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 18px 36px rgba(15, 23, 42, .16);
  opacity: 0;
  transform: translateY(8px) scale(.96);
  animation: ttp-home-popup 18s ease-in-out infinite;
}

body.home .ttp-home-trip-summary {
  grid-area: summary;
  padding: 15px 16px;
}

body.home .ttp-home-trip-summary strong {
  margin: 5px 0;
}

body.home .ttp-home-trip-popup strong,
body.home .ttp-home-trip-popup em {
  display: block;
}

body.home .ttp-home-trip-popup strong {
  color: #172033;
  font-size: 13px;
  line-height: 1.1;
}

body.home .ttp-home-trip-popup em {
  margin-top: 7px;
  color: #2c7068;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.home .ttp-home-trip-card {
  position: absolute;
  z-index: 7;
  left: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  width: min(198px, 50%);
  border: 1px solid rgba(31, 41, 55, .14);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 18px 36px rgba(15, 23, 42, .13);
}

body.home .ttp-home-trip-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(45, 112, 104, .20);
  border-radius: 999px;
  color: #2c7068;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

body.home .ttp-home-trip-card strong {
  display: block;
  color: #172033;
  font-size: 26px;
  line-height: 1;
}

@keyframes ttp-home-map-pan {
  0% {
    transform: translate3d(-8px, -4px, 0) scale(1.01);
  }
  100% {
    transform: translate3d(8px, 5px, 0) scale(1.04);
  }
}

@keyframes ttp-home-article-card {
  0%,
  38% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) rotateY(0deg) scale(1);
  }
  44%,
  100% {
    opacity: 0;
    transform: translate3d(-34px, -10px, 0) rotate(-4deg) rotateY(-14deg) scale(.97);
  }
}

@keyframes ttp-home-article-scroll {
  0%,
  13% {
    transform: translateY(0);
  }
  24%,
  40% {
    transform: translateY(clamp(-148px, -13vw, -105px));
  }
  48%,
  100% {
    transform: translateY(clamp(-158px, -14vw, -112px));
  }
}

@keyframes ttp-home-article-cursor {
  0%,
  25% {
    opacity: 0;
    transform: translate3d(-62px, 22px, 0) rotate(-6deg) scale(.98);
  }
  30%,
  34% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  36% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  39% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  46%,
  100% {
    opacity: 0;
    transform: translate3d(34px, 14px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-home-article-click-ring {
  0%,
  33% {
    opacity: 0;
    transform: scale(.2);
  }
  37% {
    opacity: .78;
    transform: scale(1);
  }
  45%,
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@keyframes ttp-home-route-draw {
  0%,
  73% {
    stroke-dashoffset: 760;
  }
  95%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ttp-home-story-search {
  0%,
  14% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) rotateY(0deg) scale(1);
  }
  20%,
  100% {
    opacity: 0;
    transform: translate3d(-28px, -8px, 0) rotate(-4deg) rotateY(-14deg) scale(.97);
  }
}

@keyframes ttp-home-story-results {
  0%,
  16% {
    opacity: 0;
    transform: translate3d(24px, 10px, 0) rotate(3deg) rotateY(14deg) scale(.97);
  }
  21%,
  34% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(.7deg) rotateY(0deg) scale(1);
  }
  39%,
  100% {
    opacity: 0;
    transform: translate3d(-24px, -8px, 0) rotate(-3deg) rotateY(-12deg) scale(.98);
  }
}

@keyframes ttp-home-story-found {
  0%,
  36% {
    opacity: 0;
    transform: translate3d(28px, 8px, 0) rotate(3deg) rotateY(14deg) scale(.97);
  }
  42%,
  50% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) rotateY(0deg) scale(1);
  }
  55%,
  100% {
    opacity: 0;
    transform: translate3d(-16px, -6px, 0) rotate(-2deg) rotateY(-10deg) scale(.99);
  }
}

@keyframes ttp-home-nav-card-in {
  0%,
  52% {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }
  57%,
  68% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  73%,
  100% {
    opacity: 0;
    transform: translateY(-6px) scale(.99);
  }
}

@keyframes ttp-home-result-cursor {
  0%,
  20% {
    opacity: 0;
    transform: translate3d(-34px, 12px, 0) rotate(-6deg) scale(.98);
  }
  23%,
  29% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  31% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  34% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  39%,
  100% {
    opacity: 0;
    transform: translate3d(28px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-home-result-click-ring {
  0%,
  28% {
    opacity: 0;
    transform: scale(.2);
  }
  32% {
    opacity: .78;
    transform: scale(1);
  }
  39%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-home-nav-cursor {
  0%,
  57% {
    opacity: 0;
    transform: translate3d(-40px, 16px, 0) rotate(-6deg) scale(.98);
  }
  60%,
  65% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  67% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  69% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  74%,
  100% {
    opacity: 0;
    transform: translate3d(34px, 14px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-home-nav-click-ring {
  0%,
  64% {
    opacity: 0;
    transform: scale(.2);
  }
  68% {
    opacity: .78;
    transform: scale(1);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-home-nav-choice {
  0%,
  62% {
    border-color: rgba(31, 41, 55, .12);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
    transform: translateY(0);
  }
  67%,
  73% {
    border-color: rgba(14, 165, 233, .36);
    box-shadow: 0 16px 30px rgba(14, 165, 233, .18);
    transform: translateY(-2px);
  }
  78%,
  100% {
    border-color: rgba(31, 41, 55, .12);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
    transform: translateY(0);
  }
}

@keyframes ttp-home-map-reveal {
  0%,
  68% {
    opacity: 0;
    transform: translateY(12px) scale(.985);
  }
  74%,
  98% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(.99);
  }
}

@keyframes ttp-home-car-reveal {
  0%,
  69% {
    opacity: 0;
  }
  74%,
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ttp-home-road-sign {
  0%,
  84% {
    opacity: 0;
    transform: translateY(10px) rotate(-2deg) scale(.96);
  }
  88%,
  99% {
    opacity: 1;
    transform: translateY(0) rotate(-2deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-4px) rotate(-2deg) scale(.98);
  }
}

@keyframes ttp-home-demo-cursor {
  0%,
  8% {
    opacity: 0;
    transform: translate3d(-38px, 22px, 0) rotate(-6deg) scale(.98);
  }
  18%,
  31% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  35% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  41% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  55%,
  100% {
    opacity: 0;
    transform: translate3d(34px, 18px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-home-demo-click-ring {
  0%,
  31% {
    opacity: 0;
    transform: scale(.2);
  }
  37% {
    opacity: .78;
    transform: scale(1);
  }
  48%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-home-save-action {
  0%,
  34% {
    opacity: 1;
    transform: scale(1);
  }
  42%,
  100% {
    opacity: 0;
    transform: scale(.92);
  }
}

@keyframes ttp-home-added-action {
  0%,
  36% {
    opacity: 0;
    transform: scale(.92);
  }
  46%,
  82% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(.96);
  }
}

@keyframes ttp-home-saved-card-in {
  0%,
  39% {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }
  50%,
  86% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(.99);
  }
}

@keyframes ttp-home-pin-pop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  48% {
    transform: translateY(-3px) scale(1.04);
  }
}

@keyframes ttp-home-discovery-one {
  0%,
  76% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  80%,
  94% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px) scale(.98);
  }
}

@keyframes ttp-home-discovery-two {
  0%,
  82% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  86%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px) scale(.98);
  }
}

@keyframes ttp-home-discovery-three {
  0%,
  88% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  92%,
  99% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px) scale(.98);
  }
}

@keyframes ttp-home-popup {
  0%,
  82% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  86%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  96%,
  100% {
    opacity: 0;
    transform: translateY(-5px) scale(.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .ttp-home-trip-map::before,
  body.home .ttp-home-trip-article-card,
  body.home .ttp-home-trip-article-scroll,
  body.home .ttp-home-trip-article-click,
  body.home .ttp-home-trip-article-cursor,
  body.home .ttp-home-trip-search-card,
  body.home .ttp-home-trip-results-card,
  body.home .ttp-home-trip-results-card::before,
  body.home .ttp-home-trip-results-card::after,
  body.home .ttp-home-trip-found-card,
  body.home .ttp-home-trip-nav-card,
  body.home .ttp-home-trip-nav-card::before,
  body.home .ttp-home-trip-nav-card::after,
  body.home .ttp-home-trip-nav-options .is-waze,
  body.home .ttp-home-trip-map,
  body.home .ttp-home-trip-route-draw,
  body.home .ttp-home-trip-route-car,
  body.home .ttp-home-trip-discovery,
  body.home .ttp-home-trip-pin,
  body.home .ttp-home-trip-road-sign,
  body.home .ttp-home-trip-popup {
    animation: none;
  }

  body.home .ttp-home-trip-route-draw {
    stroke-dashoffset: 0;
  }

  body.home .ttp-home-trip-popup {
    opacity: 1;
    transform: none;
  }

  body.home .ttp-home-trip-search-card,
  body.home .ttp-home-trip-results-card,
  body.home .ttp-home-trip-article-card,
  body.home .ttp-home-trip-article-click,
  body.home .ttp-home-trip-article-cursor {
    display: none;
  }

  body.home .ttp-home-trip-found-card,
  body.home .ttp-home-trip-nav-card,
  body.home .ttp-home-trip-map,
  body.home .ttp-home-trip-route-car,
  body.home .ttp-home-trip-discovery,
  body.home .ttp-home-trip-road-sign {
    opacity: 1;
    transform: none;
  }
}

body.home .ttp-home-trip-planner__steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: -10px;
}

body.home .ttp-home-trip-planner__steps div {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 253, 248, .68);
}

body.home .ttp-home-trip-planner__steps span {
  color: #2c7068;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
}

body.home .ttp-home-trip-planner__steps strong {
  color: #172033;
  font-size: 14px;
  line-height: 1.2;
}

body.home .ttp-home-intro h2,
body.home .ttp-home-section h2,
body.home .ttp-home-search-panel h2,
body.home .ttp-context-search-panel h2 {
  color: #172033;
  letter-spacing: -.01em;
}

body.home .ttp-home-editorial-note {
  border-color: rgba(255, 255, 255, .14);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(135deg, #111827 0%, #172033 58%, #222936 100%);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: 0 30px 70px rgba(15, 23, 42, .22);
}

body.home .ttp-home-editorial-note::before {
  content: "FIELD REPORT";
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, .045);
  font-size: clamp(58px, 10vw, 134px);
  letter-spacing: .03em;
  line-height: .82;
}

body.home .ttp-home-editorial-points div {
  border-color: rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
}

body.home .ttp-home-editorial-points span {
  border-radius: 10px;
  background: rgba(244, 234, 215, .10);
  color: #f4ead7;
}

body.home .ttp-home-text-link {
  border-color: rgba(31, 41, 55, .14);
  background: rgba(255, 253, 248, .82);
  color: #172033;
  box-shadow: none;
}

body.home .ttp-home-story-card,
body.home .ttp-home-category-card,
body.home .ttp-home-update {
  border-color: rgba(31, 41, 55, .13);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(247, 243, 235, .93)),
    #fffaf3;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

body.home .ttp-home-story-card::before,
body.home .ttp-home-category-card::before,
body.home .ttp-home-update::before {
  height: 0;
  background: none;
}

body.home .ttp-home-story-card {
  border-radius: 16px;
}

body.home .ttp-home-story-card:hover,
body.home .ttp-home-category-card:hover,
body.home .ttp-home-update:hover {
  border-color: rgba(31, 41, 55, .22);
  box-shadow: 0 24px 54px rgba(15, 23, 42, .13);
  transform: translateY(-4px);
}

body.home .ttp-home-story-card__media {
  background: #e8e1d3;
}

body.home .ttp-home-story-card__media img {
  filter: saturate(.94) contrast(1.04);
}

body.home .ttp-home-story-card:hover .ttp-home-story-card__media img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.025);
}

body.home .ttp-home-story-card__body {
  padding: 20px;
}

body.home .ttp-home-story-card__title {
  color: #172033;
  letter-spacing: -.01em;
}

body.home .ttp-home-story-card__excerpt {
  color: #4b5565;
}

body.home .ttp-home-story-card__meta {
  color: #7a6f60;
  letter-spacing: .03em;
  text-transform: uppercase;
}

body.home .ttp-home-story-card .ttp-eyebrow {
  border-color: rgba(122, 63, 44, .20);
  background: rgba(122, 63, 44, .07);
  color: #6f3b2c;
}

body.home .ttp-home-category-grid {
  gap: 16px;
}

body.home .ttp-home-category-card {
  display: grid;
  min-height: 210px;
  grid-template-rows: 112px 1fr;
  align-content: stretch;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 14px;
  isolation: isolate;
  background: #fffaf3;
}

body.home .ttp-home-category-card::after {
  content: "Open";
  right: 18px;
  bottom: 18px;
  border-color: rgba(31, 41, 55, .16);
  background: rgba(255, 253, 248, .68);
  color: #172033;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 3;
}

body.home .ttp-home-category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 112px;
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, .16), rgba(15, 23, 42, .72)),
    var(--ttp-category-banner-image, linear-gradient(135deg, rgba(23, 32, 51, .98), rgba(44, 112, 104, .82)));
  background-position: var(--ttp-category-banner-position, center);
  background-size: cover;
  filter: saturate(.9) contrast(1.05);
  transform: scale(1.01);
}

body.home .ttp-home-category-card span {
  display: flex;
  min-height: 112px;
  align-items: flex-end;
  padding: 18px 22px;
  color: #fffdf8;
  font-size: clamp(20px, 2.5vw, 27px);
  letter-spacing: -.01em;
  text-shadow: 0 12px 26px rgba(15, 23, 42, .34);
}

body.home .ttp-home-category-card span em {
  font-style: normal;
}

body.home .ttp-home-category-card strong {
  display: flex;
  align-items: flex-start;
  padding: 18px 22px 58px;
  color: #7a6f60;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(247, 243, 235, .94)),
    #fffaf3;
}

body.home .ttp-home-category-card.is-category-true-crime {
  --ttp-category-banner-position: center 45%;
}

body.home .ttp-home-category-card.is-category-movie-locations {
  --ttp-category-banner-position: center 44%;
}

body.home .ttp-home-category-card.is-category-disasters-and-unfortunate-events {
  --ttp-category-banner-position: center 42%;
}

body.home .ttp-home-category-card.is-category-odd-but-true {
  --ttp-category-banner-position: center 48%;
}

body.home .ttp-home-category-card.is-category-unsolved {
  --ttp-category-banner-position: center 52%;
}

body.home .ttp-home-category-card.is-category-celebrity-deaths {
  --ttp-category-banner-position: center 50%;
}

body.home .ttp-home-route-grid {
  gap: 18px;
  margin-top: 22px;
}

body.home .ttp-home-route-card {
  --file-paper: #fbf7ee;
  --file-paper-deep: #f0eadc;
  --file-ink: #172033;
  --file-muted: #4d596a;
  --file-accent: #6f3b2c;
  min-height: 306px;
  gap: 20px;
  padding: 28px 26px 24px;
  border-color: rgba(31, 41, 55, .18);
  border-top: 3px solid color-mix(in srgb, var(--file-accent) 58%, #f8f3e8);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 253, 248, .52)),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(31, 41, 55, .045) 35px 36px),
    linear-gradient(180deg, var(--file-paper), var(--file-paper-deep));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .82) inset,
    0 18px 44px rgba(15, 23, 42, .09);
}

body.home .ttp-home-route-card::before {
  display: none;
}

body.home .ttp-home-route-card::after {
  display: none;
}

body.home .ttp-home-route-card:nth-child(2) {
  --file-paper: #fbfaf4;
  --file-paper-deep: #e9eadf;
  --file-accent: #315f5d;
}

body.home .ttp-home-route-card:nth-child(3) {
  --file-paper: #fbf6ef;
  --file-paper-deep: #efe2d3;
  --file-accent: #744156;
}

body.home .ttp-home-route-card span {
  border-color: color-mix(in srgb, var(--file-accent) 26%, transparent);
  background: rgba(255, 253, 248, .68);
  color: color-mix(in srgb, var(--file-accent) 76%, #172033);
  font-size: 10px;
  letter-spacing: .14em;
}

body.home .ttp-home-route-card h3 {
  max-width: 11ch;
  font-size: clamp(28px, 3.1vw, 38px);
  letter-spacing: -.012em;
}

body.home .ttp-home-route-card p {
  color: #536071;
  font-size: 14.5px;
}

body.home .ttp-home-route-card strong {
  min-height: 34px;
  border-color: color-mix(in srgb, var(--file-accent) 25%, transparent);
  background: rgba(255, 253, 248, .70);
  color: color-mix(in srgb, var(--file-accent) 72%, #172033);
  font-size: 10px;
  letter-spacing: .11em;
}

body.home .ttp-home-updates {
  border-color: rgba(255, 255, 255, .12);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(135deg, #111827, #172033);
  background-size: 38px 38px, 38px 38px, auto;
}

body.home .ttp-home-update {
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
}

body.home .ttp-home-update strong {
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .075);
}

body.home .ttp-home-search-panel .ttp-search-form,
body.home .ttp-context-search-panel .ttp-search-form {
  width: min(100%, 560px);
}

body.home .ttp-search-field {
  border-color: rgba(31, 41, 55, .18);
  border-radius: 12px;
  background: rgba(255, 253, 248, .96);
  box-shadow: none;
}

body.home .ttp-search-submit,
body.home .search-submit {
  border-radius: 12px;
  background: #172033;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .18);
}

body.home .ttp-contact-card {
  border-color: rgba(255, 255, 255, .14);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(135deg, #111827, #172033);
  background-size: 38px 38px, 38px 38px, auto;
}

body.home .ttp-contact-card::before {
  height: 0;
}

@media (max-width: 700px) {
  body.home .ttp-home {
    gap: 30px;
  }

  body.home .ttp-home-hero__title {
    font-size: clamp(38px, 10.2vw, 50px);
  }

  body.home .ttp-home-section h2,
  body.home .ttp-home-search-panel h2,
  body.home .ttp-context-search-panel h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  body.home .ttp-home-intro,
  body.home .ttp-home-search-panel,
  body.home .ttp-context-search-panel,
  body.home .ttp-home-trip-planner,
  body.home .ttp-home-editorial-note,
  body.home .ttp-home-updates,
  body.home .ttp-contact-card {
    border-radius: 18px;
  }

  body.home .ttp-home-trip-planner {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  body.home .ttp-home-trip-planner__copy h2 {
    max-width: 12ch;
    font-size: clamp(34px, 9vw, 46px);
  }

  body.home .ttp-home-trip-planner__visual,
  body.home .ttp-home-trip-map {
    min-height: 250px;
  }

  body.home .ttp-home-trip-card {
    left: 14px;
    right: auto;
    top: auto;
    bottom: 14px;
    width: min(178px, 54%);
  }

  body.home .ttp-home-trip-planner__steps {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  body.home .ttp-home-route-grid {
    gap: 18px;
  }

  body.home .ttp-home-route-card {
    min-height: auto;
    gap: 18px;
    padding: 24px 22px 22px;
  }

  body.home .ttp-home-route-card h3 {
    max-width: 12ch;
    font-size: clamp(28px, 8.4vw, 36px);
  }

  body.home .ttp-home-route-card p {
    font-size: 15px;
  }

  body.home .ttp-home-category-card {
    min-height: 132px;
  }
}

body.home .ttp-home-trip-planner {
  grid-template-columns: minmax(240px, .54fr) minmax(560px, 1.46fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 58px);
}

body.home .ttp-home-trip-planner::before {
  content: "ROUTE";
  right: 0;
  bottom: -20px;
  color: rgba(23, 32, 51, .032);
  font-size: clamp(84px, 14vw, 168px);
}

body.home .ttp-home-trip-planner__copy {
  align-self: center;
}

body.home .ttp-home-trip-planner__copy h2 {
  max-width: 11ch;
  font-size: clamp(38px, 4.9vw, 68px);
}

body.home .ttp-home-trip-planner__copy p:not(.ttp-home-kicker) {
  max-width: 31ch;
  font-size: clamp(17px, 1.55vw, 20px);
}

body.home .ttp-home-trip-planner__mini-list {
  margin-top: 24px;
}

body.home .ttp-home-trip-planner__mini-list span {
  align-items: flex-start;
  color: #344052;
  font-size: 12px;
  letter-spacing: .08em;
}

body.home .ttp-home-trip-planner__mini-list span::before {
  flex: 0 0 auto;
  margin-top: 2px;
}

body.home .ttp-home-trip-planner__visual {
  display: block;
  min-height: 0;
}

body.home .ttp-home-trip-board {
  position: relative;
  overflow: hidden;
  min-height: clamp(430px, 41vw, 560px);
  border: 1px solid rgba(31, 41, 55, .14);
  border-top: 7px solid transparent;
  border-image: linear-gradient(90deg, #dda236, #b84d59, #3867c8, #2c7068) 1;
  border-radius: 24px;
  background:
    linear-gradient(rgba(23, 32, 51, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, .03) 1px, transparent 1px),
    radial-gradient(circle at 82% 13%, rgba(56, 103, 200, .16), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(247, 242, 233, .93));
  background-size: 36px 36px, 36px 36px, auto, auto;
  box-shadow:
    0 28px 62px rgba(15, 23, 42, .13),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

body.home .ttp-home-trip-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 58%, rgba(255, 255, 255, .60) 58% 61%, transparent 61%),
    radial-gradient(circle at 18% 78%, rgba(44, 112, 104, .11), transparent 28%);
  pointer-events: none;
}

body.home .ttp-home-trip-board__header {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px clamp(18px, 2.8vw, 30px) 0;
}

body.home .ttp-home-trip-board__header span,
body.home .ttp-home-trip-board__saved span {
  color: #7a4737;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

body.home .ttp-home-trip-board__header strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(44, 112, 104, .18);
  border-radius: 999px;
  background: rgba(44, 112, 104, .09);
  color: #2c7068;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

body.home .ttp-home-trip-board__map {
  position: absolute;
  left: clamp(18px, 2.8vw, 30px);
  top: 74px;
  bottom: clamp(18px, 2.8vw, 30px);
  width: min(64%, 620px);
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .14);
  border-radius: 20px;
  background:
    linear-gradient(36deg, transparent 0 42%, rgba(255, 255, 255, .60) 42% 44%, transparent 44%),
    linear-gradient(-21deg, transparent 0 57%, rgba(255, 255, 255, .42) 57% 59%, transparent 59%),
    linear-gradient(rgba(44, 112, 104, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 112, 104, .055) 1px, transparent 1px),
    radial-gradient(circle at 26% 36%, rgba(44, 112, 104, .16), transparent 18%),
    radial-gradient(circle at 80% 72%, rgba(221, 162, 54, .18), transparent 20%),
    #f1eadf;
  background-size: auto, auto, 32px 32px, 32px 32px, auto, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .80);
}

body.home .ttp-home-trip-board__map::before {
  content: "";
  position: absolute;
  inset: -22px;
  background:
    linear-gradient(17deg, transparent 0 34%, rgba(122, 71, 55, .13) 34% 35%, rgba(255, 255, 255, .35) 35% 38%, rgba(122, 71, 55, .11) 38% 39%, transparent 39%),
    linear-gradient(-31deg, transparent 0 56%, rgba(122, 71, 55, .10) 56% 57%, rgba(255, 255, 255, .35) 57% 60%, rgba(122, 71, 55, .09) 60% 61%, transparent 61%);
  pointer-events: none;
}

body.home .ttp-home-trip-board__svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

body.home .ttp-home-trip-board__road,
body.home .ttp-home-trip-board__route-base,
body.home .ttp-home-trip-board__route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.home .ttp-home-trip-board__road {
  stroke: rgba(122, 71, 55, .14);
  stroke-width: 18;
}

body.home .ttp-home-trip-board__road.is-b {
  stroke: rgba(44, 112, 104, .13);
  stroke-width: 15;
}

body.home .ttp-home-trip-board__route-base {
  stroke: rgba(23, 32, 51, .13);
  stroke-width: 18;
}

body.home .ttp-home-trip-board__route-line {
  stroke: url(#ttp-home-premium-route);
  stroke-width: 8;
  stroke-dasharray: 770;
  stroke-dashoffset: 770;
  filter: url(#ttp-home-premium-shadow);
  animation: ttp-home-premium-route-draw 10s cubic-bezier(.4, 0, .2, 1) infinite;
}

body.home .ttp-home-trip-board__car {
  filter:
    drop-shadow(0 16px 18px rgba(15, 23, 42, .24))
    drop-shadow(0 2px 1px rgba(255, 255, 255, .85));
  animation: ttp-home-premium-car 10s ease-in-out infinite;
}

body.home .ttp-home-trip-board__pin {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 5px solid #fffefa;
  border-radius: 50%;
  background: #172033;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 16px 26px rgba(15, 23, 42, .22);
}

body.home .ttp-home-trip-board__pin.is-start {
  left: calc(12% - 24px);
  top: calc(22% - 24px);
  background: #2c7068;
}

body.home .ttp-home-trip-board__pin.is-one {
  left: calc(24% - 24px);
  top: calc(62% - 24px);
  background: #d39b2e;
}

body.home .ttp-home-trip-board__pin.is-two {
  left: calc(78% - 24px);
  top: calc(70% - 24px);
  background: #7a4737;
}

body.home .ttp-home-trip-board__pin.is-end {
  left: calc(94% - 28px);
  top: calc(55% - 24px);
  width: 56px;
  background: #172033;
  font-size: 11px;
  letter-spacing: .05em;
}

body.home .ttp-home-trip-board__tag {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 999px;
  background: rgba(255, 253, 248, .82);
  color: #5a6676;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(15, 23, 42, .08);
}

body.home .ttp-home-trip-board__tag.is-added {
  left: 20%;
  top: 19%;
}

body.home .ttp-home-trip-board__tag.is-nearby {
  right: 10%;
  top: 34%;
  color: #2c7068;
}

body.home .ttp-home-trip-board__sign {
  position: absolute;
  right: 4%;
  top: 46%;
  z-index: 6;
  padding: 8px 10px;
  border: 2px solid rgba(122, 71, 55, .76);
  border-radius: 5px;
  background: rgba(255, 253, 248, .96);
  color: #7a4737;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(15, 23, 42, .14);
}

body.home .ttp-home-trip-board__sign::before,
body.home .ttp-home-trip-board__sign::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: rgba(122, 71, 55, .70);
}

body.home .ttp-home-trip-board__sign::before {
  left: 23px;
}

body.home .ttp-home-trip-board__sign::after {
  right: 23px;
}

body.home .ttp-home-trip-board__nav {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 7;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(31, 41, 55, .13);
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 18px 30px rgba(15, 23, 42, .13);
}

body.home .ttp-home-trip-board__nav img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

body.home .ttp-home-trip-board__side {
  position: absolute;
  right: clamp(18px, 2.8vw, 30px);
  top: 74px;
  bottom: clamp(18px, 2.8vw, 30px);
  z-index: 4;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  width: min(30%, 270px);
}

body.home .ttp-home-trip-board__saved,
body.home .ttp-home-trip-board__route {
  border: 1px solid rgba(31, 41, 55, .13);
  border-radius: 18px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 16px 30px rgba(15, 23, 42, .08);
}

body.home .ttp-home-trip-board__saved {
  display: grid;
  gap: 7px;
  padding: 16px;
}

body.home .ttp-home-trip-board__saved strong {
  color: #172033;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.02;
}

body.home .ttp-home-trip-board__saved em {
  color: #5a6676;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

body.home .ttp-home-trip-board__route {
  display: grid;
  gap: 10px;
  align-content: start;
  margin: 0;
  padding: 14px;
  list-style: none;
}

body.home .ttp-home-trip-board__route li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  color: #273244;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

body.home .ttp-home-trip-board__route span {
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #172033;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}

body.home .ttp-home-trip-planner__steps {
  margin-top: -6px;
}

body.home .ttp-home-trip-planner__steps div {
  border-radius: 12px;
  background: rgba(255, 253, 248, .76);
}

@keyframes ttp-home-premium-route-draw {
  0%,
  16% {
    stroke-dashoffset: 770;
  }
  62%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ttp-home-premium-car {
  0%,
  12% {
    opacity: 0;
  }
  18%,
  94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .ttp-home-trip-board__route-line,
  body.home .ttp-home-trip-board__car {
    animation: none;
  }

  body.home .ttp-home-trip-board__route-line {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 980px) {
  body.home .ttp-home-trip-planner {
    grid-template-columns: 1fr;
  }

  body.home .ttp-home-trip-planner__copy h2 {
    max-width: 12ch;
  }

  body.home .ttp-home-trip-board {
    min-height: 650px;
  }

  body.home .ttp-home-trip-board__map {
    width: auto;
    right: clamp(18px, 2.8vw, 30px);
    bottom: 206px;
  }

  body.home .ttp-home-trip-board__side {
    top: auto;
    left: clamp(18px, 2.8vw, 30px);
    width: auto;
    height: 172px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    grid-template-rows: 1fr;
  }
}

@media (max-width: 700px) {
  body.home .ttp-home-trip-board {
    min-height: 620px;
    border-radius: 18px;
  }

  body.home .ttp-home-trip-board__header {
    align-items: flex-start;
    flex-direction: column;
  }

  body.home .ttp-home-trip-board__map {
    top: 122px;
    min-height: 300px;
  }

  body.home .ttp-home-trip-board__pin {
    width: 42px;
    height: 42px;
    border-width: 4px;
  }

  body.home .ttp-home-trip-board__tag {
    display: none;
  }

  body.home .ttp-home-trip-board__side {
    height: 164px;
    grid-template-columns: 1fr;
  }

  body.home .ttp-home-trip-board__route {
    display: none;
  }
}

body.home .ttp-home-trip-planner {
  grid-template-columns: minmax(260px, .62fr) minmax(360px, 1fr);
  align-items: center;
}

body.home .ttp-home-trip-planner__visual {
  display: grid;
  place-items: center;
}

body.home .ttp-home-trip-phone {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(520px, 50vw, 680px);
}

body.home .ttp-home-trip-phone::before {
  content: "";
  position: absolute;
  inset: 9% 0 5%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 103, 200, .16), transparent 34%),
    radial-gradient(circle at 50% 96%, rgba(221, 162, 54, .13), transparent 30%);
  filter: blur(4px);
  opacity: .75;
}

body.home .ttp-home-trip-phone__device {
  position: relative;
  width: clamp(288px, 29vw, 376px);
  aspect-ratio: 9 / 18.9;
  border: 7px solid #16181d;
  border-radius: clamp(36px, 4vw, 54px);
  background:
    linear-gradient(90deg, #0b0c10, #4b4d53 8%, #101216 15%, #0b0c10 86%, #4b4d53 94%, #0b0c10),
    #111318;
  box-shadow:
    0 34px 70px rgba(15, 23, 42, .26),
    0 0 0 2px rgba(255, 255, 255, .40) inset;
}

body.home .ttp-home-trip-phone__device::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, .20);
  border-radius: calc(clamp(36px, 4vw, 54px) - 9px);
  pointer-events: none;
}

body.home .ttp-home-trip-phone__button {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: #30343b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
}

body.home .ttp-home-trip-phone__button.is-left {
  left: -10px;
  top: 19%;
  height: 76px;
}

body.home .ttp-home-trip-phone__button.is-right {
  right: -10px;
  top: 28%;
  height: 112px;
}

body.home .ttp-home-trip-phone__notch {
  position: absolute;
  left: 50%;
  top: 6px;
  z-index: 4;
  width: 40%;
  height: 26px;
  border-radius: 0 0 17px 17px;
  background: #101216;
  transform: translateX(-50%);
}

body.home .ttp-home-trip-phone__notch::before,
body.home .ttp-home-trip-phone__notch::after {
  content: "";
  position: absolute;
  top: 9px;
  border-radius: 999px;
  background: #22262e;
}

body.home .ttp-home-trip-phone__notch::before {
  left: 38%;
  width: 36px;
  height: 5px;
}

body.home .ttp-home-trip-phone__notch::after {
  right: 18%;
  width: 7px;
  height: 7px;
  background: #182133;
  box-shadow: inset 0 0 0 2px rgba(56, 103, 200, .16);
}

body.home .ttp-home-trip-phone__screen {
  position: absolute;
  inset: 13px;
  overflow: hidden;
  border-radius: calc(clamp(36px, 4vw, 54px) - 13px);
  background:
    linear-gradient(rgba(23, 32, 51, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, .03) 1px, transparent 1px),
    radial-gradient(circle at 76% 8%, rgba(56, 103, 200, .14), transparent 29%),
    linear-gradient(180deg, #fffdf7, #f4efe5);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

body.home .ttp-home-trip-phone__status {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 14px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  color: #172033;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .56);
}

body.home .ttp-home-trip-phone__status-left,
body.home .ttp-home-trip-phone__status-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

body.home .ttp-home-trip-phone__time {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.02em;
  line-height: 1;
}

body.home .ttp-home-trip-phone__location-arrow {
  width: 15px;
  height: 15px;
  background: #172033;
  clip-path: polygon(52% 0, 100% 100%, 52% 72%, 0 100%);
  transform: rotate(45deg);
}

body.home .ttp-home-trip-phone__signal {
  display: inline-flex;
  gap: 2px;
  align-items: end;
  height: 17px;
}

body.home .ttp-home-trip-phone__signal i {
  width: 4px;
  border-radius: 999px;
  background: #172033;
}

body.home .ttp-home-trip-phone__signal i:nth-child(1) {
  height: 7px;
  opacity: .48;
}

body.home .ttp-home-trip-phone__signal i:nth-child(2) {
  height: 10px;
  opacity: .65;
}

body.home .ttp-home-trip-phone__signal i:nth-child(3) {
  height: 14px;
  opacity: .84;
}

body.home .ttp-home-trip-phone__signal i:nth-child(4) {
  height: 17px;
}

body.home .ttp-home-trip-phone__network {
  display: inline-flex;
  align-items: flex-start;
  gap: 1px;
  color: #172033;
  font-size: 17px;
  font-weight: 950;
  line-height: .86;
}

body.home .ttp-home-trip-phone__network small {
  font-size: 7px;
  font-weight: 950;
  letter-spacing: -.04em;
}

body.home .ttp-home-trip-phone__battery {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 16px;
  border: 2px solid rgba(23, 32, 51, .72);
  border-radius: 6px;
}

body.home .ttp-home-trip-phone__battery::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 4px;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: rgba(23, 32, 51, .72);
}

body.home .ttp-home-trip-phone__battery i {
  position: absolute;
  inset: 3px 6px 3px 3px;
  border-radius: 3px;
  background: #172033;
}

body.home .ttp-home-trip-phone__browserbar {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 45px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 999px;
  padding: 5px 12px 5px 8px;
  background: rgba(255, 253, 248, .74);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

body.home .ttp-home-trip-phone__favicon {
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, #12336b 0 54%, #d7a436 54% 100%);
  color: #fff;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .38);
}

body.home .ttp-home-trip-phone__browserbar b {
  min-width: 0;
  overflow: hidden;
  color: #4b5667;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: -.01em;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.home .ttp-home-trip-phone__score-alert {
  position: absolute;
  left: 17px;
  right: 17px;
  top: 42px;
  z-index: 12;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  padding: 10px 11px 11px;
  background:
    linear-gradient(135deg, rgba(42, 47, 58, .96), rgba(22, 26, 36, .98));
  color: #f8fafc;
  box-shadow: 0 24px 38px rgba(15, 23, 42, .26);
  opacity: 0;
  transform: translateY(-26px) scale(.97);
  animation: ttp-phone-score-alert 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__score-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
  color: rgba(248, 250, 252, .68);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
}

body.home .ttp-home-trip-phone__score-meta b {
  color: #fff;
  font-size: 9px;
  font-weight: 950;
}

body.home .ttp-home-trip-phone__score-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

body.home .ttp-home-trip-phone__score-body div {
  display: grid;
  gap: 4px;
  justify-items: center;
  min-width: 0;
}

body.home .ttp-home-trip-phone__score-body i {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 23px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

body.home .ttp-home-trip-phone__score-body i.is-pitt {
  color: #ffb81c;
  font-family: Georgia, serif;
  font-size: 14px;
  text-shadow: -1px -1px 0 #003594, 1px -1px 0 #003594, -1px 1px 0 #003594, 1px 1px 0 #003594;
}

body.home .ttp-home-trip-phone__score-body i.is-wvu {
  color: #eaaa00;
  font-size: 12px;
  letter-spacing: -.08em;
  text-shadow: 1px 1px 0 #002855;
}

body.home .ttp-home-trip-phone__score-body span {
  overflow: hidden;
  max-width: 78px;
  color: rgba(248, 250, 252, .86);
  font-size: 7px;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.home .ttp-home-trip-phone__score-body strong {
  color: #fff;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1;
}

body.home .ttp-home-trip-phone__score-body em {
  color: rgba(248, 250, 252, .58);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

body.home .ttp-home-trip-phone__playback {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 118px;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 253, 248, .82);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, .16),
    inset 0 1px 0 rgba(255, 255, 255, .82);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

body.home .ttp-home-trip-phone__playback button {
  appearance: none;
  position: relative;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 32, 51, .92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  cursor: pointer;
  padding: 0;
}

body.home .ttp-home-trip-phone__playback .is-toggle::before,
body.home .ttp-home-trip-phone__playback .is-toggle::after {
  content: "";
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
}

body.home .ttp-home-trip-phone__playback .is-toggle {
  grid-template-columns: auto auto;
  gap: 4px;
  background: rgba(44, 112, 104, .92);
  animation: ttp-phone-playback-pulse 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone.is-paused .ttp-home-trip-phone__playback .is-toggle {
  grid-template-columns: auto;
  background: rgba(23, 32, 51, .92);
  animation: none;
}

body.home .ttp-home-trip-phone.is-paused .ttp-home-trip-phone__playback .is-toggle::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  border-radius: 0;
  background: transparent;
}

body.home .ttp-home-trip-phone.is-paused .ttp-home-trip-phone__playback .is-toggle::after {
  display: none;
}

body.home .ttp-home-trip-phone__playback .is-step {
  display: none;
  width: 25px;
  height: 25px;
  background: rgba(122, 71, 55, .92);
}

body.home .ttp-home-trip-phone.is-paused .ttp-home-trip-phone__playback .is-step {
  display: grid;
}

body.home .ttp-home-trip-phone__playback .is-step::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

body.home .ttp-home-trip-phone__playback .is-prev::before {
  transform: rotate(225deg);
}

body.home .ttp-home-trip-phone__playback i {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-width: 42px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31, 41, 55, .14);
}

body.home .ttp-home-trip-phone__playback i::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #dda236, #2c7068);
  transform: translateX(-84%);
  animation: ttp-phone-playback-progress 14s linear infinite;
}

body.home .ttp-home-trip-phone__brand {
  position: absolute;
  left: 24px;
  top: 50px;
  z-index: 6;
  color: #7a4737;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body.home .ttp-home-trip-phone__scene {
  position: absolute;
  inset: 78px 24px 26px;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px) scale(.985);
}

body.home .ttp-home-trip-phone__scene span {
  color: #7a4737;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.home .ttp-home-trip-phone__scene strong {
  color: #172033;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: -.012em;
  line-height: 1.02;
}

body.home .ttp-home-trip-phone__scene em {
  color: #5a6676;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

body.home .ttp-home-trip-phone__scene.is-search {
  animation: ttp-phone-search-scene 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__scene.is-save {
  animation: ttp-phone-save-scene 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__scene.is-route {
  inset: 76px 18px 20px;
  align-content: start;
  animation: ttp-phone-route-scene 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__searchbar,
body.home .ttp-home-trip-phone__story-row,
body.home .ttp-home-trip-phone__address-card,
body.home .ttp-home-trip-phone__nav {
  border: 1px solid rgba(31, 41, 55, .12);
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}

body.home .ttp-home-trip-phone__searchbar {
  position: relative;
  min-height: 46px;
  border-radius: 999px;
  padding: 14px 18px 12px 42px;
  color: #5a6676;
  font-size: 13px;
  font-weight: 850;
}

body.home .ttp-home-trip-phone__searchbar::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #2c7068;
  border-radius: 50%;
  transform: translateY(-50%);
}

body.home .ttp-home-trip-phone__searchbar::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 28px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #2c7068;
  transform: rotate(45deg);
}

body.home .ttp-home-trip-phone__story-row {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  border-radius: 18px;
  padding: 14px;
  animation: ttp-phone-story-row 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__story-row i {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(23, 32, 51, .80), rgba(44, 112, 104, .36)),
    #172033;
}

body.home .ttp-home-trip-phone__story-row b {
  color: #172033;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.1;
}

body.home .ttp-home-trip-phone__address-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 8px;
  align-items: center;
  margin-top: 0;
  border-left: 5px solid #2c7068;
  border-radius: 18px;
  padding: 10px 11px;
}

body.home .ttp-home-trip-phone__address-card b,
body.home .ttp-home-trip-phone__address-card i {
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

body.home .ttp-home-trip-phone__address-card b {
  color: #172033;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.06;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.home .ttp-home-trip-phone__address-card i {
  padding: 7px 8px;
  border-radius: 999px;
  background: rgba(44, 112, 104, .11);
  color: #2c7068;
  font-style: normal;
  opacity: 0;
  animation: ttp-phone-added-pill 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__map {
  position: relative;
  height: 330px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .13);
  border-radius: 22px;
  background:
    linear-gradient(32deg, transparent 0 35%, rgba(255,255,255,.56) 35% 38%, transparent 38%),
    linear-gradient(-24deg, transparent 0 60%, rgba(255,255,255,.46) 60% 63%, transparent 63%),
    linear-gradient(rgba(44, 112, 104, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 112, 104, .065) 1px, transparent 1px),
    #f0e8dc;
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86);
}

body.home .ttp-home-trip-phone__map svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body.home .ttp-home-trip-phone__road,
body.home .ttp-home-trip-phone__route-base,
body.home .ttp-home-trip-phone__route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.home .ttp-home-trip-phone__road {
  stroke: rgba(122, 71, 55, .14);
  stroke-width: 13;
}

body.home .ttp-home-trip-phone__road.is-alt {
  stroke: rgba(44, 112, 104, .13);
}

body.home .ttp-home-trip-phone__route-base {
  stroke: rgba(23, 32, 51, .14);
  stroke-width: 14;
}

body.home .ttp-home-trip-phone__route-line {
  stroke: url(#ttp-home-phone-route);
  stroke-width: 7;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: ttp-phone-route-draw 14s cubic-bezier(.4, 0, .2, 1) infinite;
}

body.home .ttp-home-trip-phone__car {
  filter: drop-shadow(0 12px 12px rgba(15, 23, 42, .24));
  opacity: 0;
  animation: ttp-phone-car-show 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__map i {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 4px solid #fffefa;
  border-radius: 50%;
  background: #172033;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 14px 22px rgba(15, 23, 42, .20);
}

body.home .ttp-home-trip-phone__map i.is-start {
  left: calc(26% - 21px);
  top: calc(20% - 21px);
  background: #2c7068;
}

body.home .ttp-home-trip-phone__map i.is-one {
  left: calc(35% - 21px);
  top: calc(66% - 21px);
  background: #dda236;
}

body.home .ttp-home-trip-phone__map i.is-two {
  left: calc(80% - 21px);
  top: calc(48% - 21px);
  background: #7a4737;
}

body.home .ttp-home-trip-phone__map i.is-end {
  left: calc(72% - 24px);
  top: calc(85% - 21px);
  width: 48px;
  background: #172033;
  font-size: 10px;
}

body.home .ttp-home-trip-phone__map b {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 10px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-left: 4px solid #dda236;
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  color: #2c7068;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 13px 22px rgba(15, 23, 42, .13);
  opacity: 0;
  transform: translateY(8px) scale(.96);
}

body.home .ttp-home-trip-phone__map b.is-nearby-one {
  left: 48%;
  top: 26%;
  animation: ttp-phone-nearby-one 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__map b.is-nearby-two {
  left: 18%;
  bottom: 18%;
  border-left-color: #2c7068;
  animation: ttp-phone-nearby-two 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 999px;
  padding: 8px 10px;
}

body.home .ttp-home-trip-phone__nav img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

@keyframes ttp-phone-search-scene {
  0%,
  28% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-save-scene {
  0%,
  26% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  36%,
  55% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  64%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-route-scene {
  0%,
  54% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  64%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(.99);
  }
}

@keyframes ttp-phone-story-row {
  0%,
  13% {
    opacity: 0;
    transform: translateY(8px);
  }
  20%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ttp-phone-added-pill {
  0%,
  39% {
    opacity: 0;
    transform: scale(.88);
  }
  45%,
  60% {
    opacity: 1;
    transform: scale(1);
  }
  68%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-route-draw {
  0%,
  62% {
    stroke-dashoffset: 520;
  }
  89%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ttp-phone-car-show {
  0%,
  60% {
    opacity: 0;
  }
  66%,
  96% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ttp-phone-nearby-one {
  0%,
  72% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  78%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px) scale(.98);
  }
}

@keyframes ttp-phone-nearby-two {
  0%,
  80% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  86%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px) scale(.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .ttp-home-trip-phone__scene,
  body.home .ttp-home-trip-phone__story-row,
  body.home .ttp-home-trip-phone__address-card i,
  body.home .ttp-home-trip-phone__route-line,
  body.home .ttp-home-trip-phone__car,
  body.home .ttp-home-trip-phone__map b {
    animation: none;
  }

  body.home .ttp-home-trip-phone__scene.is-search,
  body.home .ttp-home-trip-phone__scene.is-save {
    display: none;
  }

  body.home .ttp-home-trip-phone__scene.is-route,
  body.home .ttp-home-trip-phone__car,
  body.home .ttp-home-trip-phone__map b {
    opacity: 1;
    transform: none;
  }

  body.home .ttp-home-trip-phone__route-line {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 980px) {
  body.home .ttp-home-trip-phone {
    min-height: 610px;
  }
}

@media (max-width: 700px) {
  body.home .ttp-home-trip-phone {
    min-height: 560px;
  }

  body.home .ttp-home-trip-phone__device {
    width: min(310px, 92vw);
  }
}

body.home .ttp-home-trip-phone__web-header {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 82px;
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 5px 0 8px;
  border-bottom: 1px solid rgba(31, 41, 55, .08);
}

body.home .ttp-home-trip-phone__logo {
  min-width: 0;
}

body.home .ttp-home-trip-phone__logo img {
  display: block;
  width: min(158px, 100%);
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 2px rgba(15, 23, 42, .15));
}

body.home .ttp-home-trip-phone__logo span {
  color: #172033;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

body.home .ttp-home-trip-phone__menu {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
  color: #273244;
  font-size: 5px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

body.home .ttp-home-trip-phone__menu span:first-child {
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(56, 103, 200, .12);
  color: #2563eb;
}

body.home .ttp-home-trip-phone__brand {
  display: none;
}

body.home .ttp-home-trip-phone__scene {
  inset: 142px 24px 26px;
}

body.home .ttp-home-trip-phone__scene.is-route {
  inset: 136px 18px 20px;
}

body.home .ttp-home-trip-phone__scene.is-save {
  align-content: start;
  gap: 6px;
  padding-top: 2px;
}

body.home .ttp-home-trip-phone__scene.is-search {
  align-content: start;
  gap: 8px;
  padding-top: 4px;
}

body.home .ttp-home-trip-phone__scene.is-search > strong {
  font-size: clamp(24px, 2.65vw, 34px);
}

body.home .ttp-home-trip-phone__searchbar {
  color: transparent;
}

body.home .ttp-home-trip-phone__searchbar b {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: #5a6676;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  vertical-align: bottom;
  animation: ttp-phone-type-query 14s steps(16, end) infinite;
}

body.home .ttp-home-trip-phone__searchbar b::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 3px;
  border-radius: 999px;
  background: #2c7068;
  vertical-align: -2px;
  animation: ttp-phone-type-caret 1s steps(1, end) infinite;
}

body.home .ttp-home-trip-phone__web-preview {
  overflow: hidden;
  height: 58px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 15px;
  background: rgba(255, 253, 248, .74);
  box-shadow: 0 14px 22px rgba(15, 23, 42, .07);
}

body.home .ttp-home-trip-phone__web-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 62%;
  opacity: .82;
}

body.home .ttp-home-trip-phone__post-preview {
  overflow: hidden;
  display: grid;
  min-height: 98px;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 16px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 16px 28px rgba(15, 23, 42, .09);
}

body.home .ttp-home-trip-phone__post-preview img {
  display: block;
  width: 100%;
  height: 48px;
  object-fit: cover;
  object-position: center 42%;
}

body.home .ttp-home-trip-phone__post-preview div {
  display: grid;
  gap: 2px;
  padding: 7px 9px 8px;
}

body.home .ttp-home-trip-phone__post-preview span {
  color: #7a4737;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}

body.home .ttp-home-trip-phone__post-preview strong {
  display: -webkit-box;
  overflow: hidden;
  color: #172033;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.home .ttp-home-trip-phone__post-preview em {
  color: #5a6676;
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
}

body.home .ttp-home-trip-phone__location-mini {
  display: grid;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-left: 4px solid #7a4737;
  border-radius: 15px;
  background: rgba(255, 253, 248, .68);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .065);
}

body.home .ttp-home-trip-phone__location-mini span {
  color: #7a4737;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

body.home .ttp-home-trip-phone__location-mini strong {
  display: -webkit-box;
  overflow: hidden;
  color: #172033;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.home .ttp-home-trip-phone__location-mini em {
  color: #5a6676;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
}

body.home .ttp-home-trip-phone__suggestions {
  display: grid;
  gap: 5px;
}

body.home .ttp-home-trip-phone__suggestions b {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 27px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 13px;
  padding: 6px 9px;
  background: rgba(255, 253, 248, .70);
  color: #536072;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 20px rgba(15, 23, 42, .055);
  opacity: 0;
  transform: translateY(7px);
}

body.home .ttp-home-trip-phone__suggestions b::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dda236;
  box-shadow: 0 0 0 3px rgba(221, 162, 54, .12);
}

body.home .ttp-home-trip-phone__suggestions b:nth-child(1) {
  animation: ttp-phone-suggestion-one 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__suggestions b:nth-child(2) {
  animation: ttp-phone-suggestion-two 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__suggestions b:nth-child(3) {
  animation: ttp-phone-suggestion-three 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__suggestions b:nth-child(4) {
  animation: ttp-phone-suggestion-four 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__story-row {
  animation: ttp-phone-story-row-premium 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__story-row {
  min-height: 34px;
  border-radius: 13px;
  padding: 8px 10px;
  position: relative;
}

body.home .ttp-home-trip-phone__story-row i {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2c7068;
  box-shadow: 0 0 0 3px rgba(44, 112, 104, .12);
}

body.home .ttp-home-trip-phone__story-row b {
  color: #536072;
  font-size: 11px;
  line-height: 1.1;
}

body.home .ttp-home-trip-phone__story-row em {
  margin-left: auto;
  padding: 7px 8px;
  border-radius: 999px;
  background: rgba(44, 112, 104, .11);
  color: #2c7068;
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(.86);
  animation: ttp-phone-result-added 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__story-row::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  z-index: 4;
  width: 21px;
  height: 27px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-result-cursor 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__story-row::after {
  content: "";
  position: absolute;
  right: 21px;
  top: calc(50% - 14px);
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(44, 112, 104, .34);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-result-click-ring 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__nav.is-save-nav {
  position: relative;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(8px) scale(.96);
  animation: ttp-phone-save-nav 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__nav.is-save-nav::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% + 3px);
  z-index: 4;
  width: 21px;
  height: 27px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-waze-cursor 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__nav.is-save-nav::after {
  content: "";
  position: absolute;
  left: calc(50% - 13px);
  top: calc(50% - 13px);
  z-index: 3;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(14, 165, 233, .36);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-waze-click-ring 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__nav.is-save-nav .is-waze {
  animation: ttp-phone-waze-choice 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__address-card::before {
  content: "";
  position: absolute;
  right: 31px;
  top: 50%;
  z-index: 4;
  width: 22px;
  height: 28px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-save-cursor 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__address-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: calc(50% - 14px);
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(44, 112, 104, .34);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-save-click-ring 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__address-card b {
  animation: none;
}

body.home .ttp-home-trip-phone__address-card i {
  animation: ttp-phone-added-pill-premium 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__address-card span {
  grid-column: 1;
  color: #5a6676;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

body.home .ttp-home-trip-phone__address-card i {
  grid-column: 2;
  grid-row: 1 / span 2;
}

body.home .ttp-home-trip-phone__map i.is-end {
  left: calc(72% - 34px);
  width: 68px;
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: .04em;
  line-height: 1.05;
  text-align: center;
}

body.home .ttp-home-trip-phone__pin-label {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 6px 8px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  color: #5a6676;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(15, 23, 42, .11);
  opacity: 0;
  transform: translateY(6px) scale(.96);
  animation: ttp-phone-nearby-place-pop 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__pin-label::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(31, 41, 55, .18);
  transform: translateY(-50%);
}

body.home .ttp-home-trip-phone__pin-label.is-one-label {
  left: 42%;
  top: 62%;
  color: #7a4737;
}

body.home .ttp-home-trip-phone__pin-label.is-two-label {
  left: 42%;
  top: 44%;
  color: #2c7068;
}

body.home .ttp-home-trip-phone__pin-label.is-end-label {
  right: 5%;
  top: 80%;
}

body.home .ttp-home-trip-phone__nearby-toggle {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 24px);
  min-height: 30px;
  border: 1px solid rgba(31, 41, 55, .11);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 253, 248, .91);
  box-shadow: 0 14px 22px rgba(15, 23, 42, .12);
}

body.home .ttp-home-trip-phone__nearby-toggle em {
  position: relative;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(44, 112, 104, .42);
  border-radius: 5px;
  background: rgba(255, 253, 248, .94);
  animation: ttp-phone-nearby-checkbox 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__nearby-toggle em::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(.82);
  animation: ttp-phone-nearby-check 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__nearby-toggle small {
  color: #172033;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

body.home .ttp-home-trip-phone__nearby-toggle::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  z-index: 8;
  width: 18px;
  height: 24px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-nearby-cursor 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__nearby-toggle::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  z-index: 7;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(44, 112, 104, .34);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-nearby-click-ring 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__map b,
body.home .ttp-home-trip-phone__nearby-dot {
  animation: ttp-phone-nearby-place-pop 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__map b.is-nearby-one {
  animation: ttp-phone-nearby-place-pop 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__map b.is-nearby-two {
  animation: ttp-phone-nearby-place-pop 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__map b.is-nearby-three {
  left: 8%;
  top: 44%;
  border-left-color: #7a4737;
  animation: ttp-phone-nearby-place-pop 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__map b.is-nearby-four {
  right: 5%;
  top: 28%;
  border-left-color: #dda236;
  animation: ttp-phone-nearby-place-pop 14s ease-in-out infinite;
}

body.home .ttp-home-trip-phone__nearby-dot {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 3px solid #fffefa;
  border-radius: 50%;
  background: #dda236;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 13px 18px rgba(15, 23, 42, .18);
  opacity: 0;
  transform: translateY(6px) scale(.86);
}

body.home .ttp-home-trip-phone__nearby-dot.is-nearby-dot-one {
  left: 58%;
  top: 36%;
}

body.home .ttp-home-trip-phone__nearby-dot.is-nearby-dot-two {
  left: 16%;
  top: 52%;
}

body.home .ttp-home-trip-phone__nearby-dot.is-nearby-dot-three {
  right: 18%;
  top: 18%;
}

body.home .ttp-home-trip-phone__nearby-dot.is-nearby-dot-four {
  right: 10%;
  bottom: 22%;
}

@keyframes ttp-phone-type-query {
  0%,
  18% {
    max-width: 0;
  }
  32%,
  100% {
    max-width: 16ch;
  }
}

@keyframes ttp-phone-type-caret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes ttp-phone-suggestion-one {
  0%,
  31% {
    opacity: 0;
    transform: translateY(7px);
  }
  35%,
  47% {
    opacity: 1;
    transform: translateY(0);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-two {
  0%,
  33% {
    opacity: 0;
    transform: translateY(7px);
  }
  37%,
  47% {
    opacity: .82;
    transform: translateY(0);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-three {
  0%,
  35% {
    opacity: 0;
    transform: translateY(7px);
  }
  39%,
  47% {
    opacity: .72;
    transform: translateY(0);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-four {
  0%,
  37% {
    opacity: 0;
    transform: translateY(7px);
  }
  41%,
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  56%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-story-row-premium {
  0%,
  43% {
    opacity: 0;
    transform: translateY(8px);
  }
  48%,
  55% {
    opacity: 1;
    transform: translateY(0);
  }
  61%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-result-cursor {
  0%,
  46% {
    opacity: 0;
    transform: translate3d(-24px, 10px, 0) rotate(-6deg) scale(.98);
  }
  50%,
  53% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  55% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  57% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  62%,
  100% {
    opacity: 0;
    transform: translate3d(22px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-result-click-ring {
  0%,
  53% {
    opacity: 0;
    transform: scale(.2);
  }
  56% {
    opacity: .76;
    transform: scale(1);
  }
  62%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-result-added {
  0%,
  54% {
    opacity: 0;
    transform: scale(.86);
  }
  58%,
  63% {
    opacity: 1;
    transform: scale(1);
  }
  68%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-save-cursor {
  0%,
  61% {
    opacity: 0;
    transform: translate3d(-34px, 10px, 0) rotate(-6deg) scale(.98);
  }
  65%,
  68% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  72% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  76%,
  100% {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-save-click-ring {
  0%,
  68% {
    opacity: 0;
    transform: scale(.2);
  }
  71% {
    opacity: .76;
    transform: scale(1);
  }
  76%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-save-label {
  0%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  75%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-added-pill-premium {
  0%,
  67% {
    opacity: 0;
    transform: scale(.88);
  }
  70%,
  82% {
    opacity: 1;
    transform: scale(1);
  }
  86%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-save-nav {
  0%,
  72% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  76%,
  82% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  86%,
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(.98);
  }
}

@keyframes ttp-phone-waze-cursor {
  0%,
  76% {
    opacity: 0;
    transform: translate3d(-34px, 10px, 0) rotate(-6deg) scale(.98);
  }
  79%,
  82% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  84% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  86% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  89%,
  100% {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-waze-click-ring {
  0%,
  82% {
    opacity: 0;
    transform: scale(.2);
  }
  85% {
    opacity: .78;
    transform: scale(1);
  }
  89%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-waze-choice {
  0%,
  82% {
    transform: translateY(0) scale(1);
    filter: none;
  }
  85%,
  88% {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 8px 10px rgba(14, 165, 233, .30));
  }
  92%,
  100% {
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes ttp-phone-score-alert {
  0%,
  10% {
    opacity: 0;
    transform: translateY(-30px) scale(.97);
  }
  15%,
  34% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  42%,
  100% {
    opacity: 0;
    transform: translateY(-22px) scale(.985);
  }
}

@keyframes ttp-phone-search-scene {
  0%,
  56% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  63%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-save-scene {
  0%,
  58% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  64%,
  77% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  82%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-route-scene {
  0%,
  78% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  82%,
  99% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(.99);
  }
}

@keyframes ttp-phone-route-draw {
  0%,
  82% {
    stroke-dashoffset: 520;
  }
  90%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ttp-phone-car-show {
  0%,
  82% {
    opacity: 0;
  }
  85%,
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ttp-phone-nearby-cursor {
  0%,
  84% {
    opacity: 0;
    transform: translate3d(22px, 12px, 0) rotate(-6deg) scale(.98);
  }
  86%,
  87% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  88% {
    opacity: 1;
    transform: translate3d(1px, 1px, 0) rotate(-6deg) scale(.86);
  }
  89% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  93%,
  100% {
    opacity: 0;
    transform: translate3d(18px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-nearby-click-ring {
  0%,
  86% {
    opacity: 0;
    transform: scale(.2);
  }
  89% {
    opacity: .72;
    transform: scale(1);
  }
  94%,
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@keyframes ttp-phone-nearby-checkbox {
  0%,
  86% {
    background: rgba(255, 253, 248, .94);
    border-color: rgba(44, 112, 104, .42);
  }
  89%,
  100% {
    background: #2c7068;
    border-color: #2c7068;
  }
}

@keyframes ttp-phone-nearby-check {
  0%,
  86% {
    opacity: 0;
    transform: rotate(45deg) scale(.6);
  }
  90%,
  100% {
    opacity: 1;
    transform: rotate(45deg) scale(.82);
  }
}

@keyframes ttp-phone-nearby-place-pop {
  0%,
  87% {
    opacity: 0;
    transform: translateY(6px) scale(.9);
  }
  91%,
  99% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-3px) scale(.96);
  }
}

@keyframes ttp-phone-playback-progress {
  0% {
    transform: translateX(-96%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes ttp-phone-playback-pulse {
  0%,
  39% {
    background: rgba(44, 112, 104, .92);
  }
  45%,
  60% {
    background: rgba(122, 71, 55, .92);
  }
  72%,
  100% {
    background: rgba(44, 112, 104, .92);
  }
}

body.home .ttp-home-trip-phone.is-paused * {
  animation-play-state: paused !important;
}

body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__score-alert,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__scene,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__story-row,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__suggestions b,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__address-card i,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nav.is-save-nav,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__map b,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nearby-dot,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__pin-label {
  opacity: 0 !important;
  animation: none !important;
}

body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__scene,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__story-row,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nav.is-save-nav,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__suggestions b,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__map b,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nearby-dot,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__pin-label {
  transform: translateY(8px) scale(.96) !important;
}

body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__searchbar b,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__searchbar b::after,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__story-row::before,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__story-row::after,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__address-card::before,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__address-card::after,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nav.is-save-nav::before,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nav.is-save-nav::after,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nearby-toggle::before,
body.home .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nearby-toggle::after {
  animation: none !important;
}

body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__scene.is-search,
body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="save"] .ttp-home-trip-phone__scene.is-save,
body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__scene.is-route,
body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__suggestions b,
body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__story-row,
body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="save"] .ttp-home-trip-phone__nav.is-save-nav,
body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__map b,
body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__nearby-dot,
body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__pin-label {
  opacity: 1 !important;
  transform: none !important;
}

body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__searchbar b {
  max-width: 16ch !important;
}

body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__story-row em,
body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="save"] .ttp-home-trip-phone__address-card i {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="save"] .ttp-home-trip-phone__address-card b {
  opacity: 1 !important;
  animation: none !important;
}

body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__route-line {
  stroke-dashoffset: 0 !important;
  animation: none !important;
}

body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__car {
  opacity: 1 !important;
  animation: none !important;
}

body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__nearby-toggle em {
  background: #2c7068 !important;
  border-color: #2c7068 !important;
  animation: none !important;
}

body.home .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__nearby-toggle em::after {
  opacity: 1 !important;
  transform: rotate(45deg) scale(.82) !important;
  animation: none !important;
}

@media (max-width: 980px) {
  body.home .ttp-home-trip-planner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.home .ttp-home-trip-planner {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  body.home .ttp-home-trip-planner__visual {
    width: 100%;
    margin-top: 8px;
    overflow: hidden;
  }

  body.home .ttp-home-trip-phone {
    min-height: 580px;
    overflow: hidden;
    animation: ttp-home-phone-mobile-slide 1s cubic-bezier(.2, .75, .2, 1) .25s both;
  }

  body.home .ttp-home-trip-phone__device {
    width: min(300px, 86vw);
  }

  body.home .ttp-home-trip-phone__menu {
    gap: 4px;
    font-size: 5px;
  }

  body.home .ttp-home-trip-phone__logo img {
    width: min(130px, 100%);
  }

  body.home .ttp-home-trip-phone__status {
    left: 18px;
    right: 18px;
  }
}

@keyframes ttp-home-phone-mobile-slide {
  0% {
    opacity: 0;
    transform: translateX(72px) scale(.96);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Phone-first homepage hero pass. */
body.home .ttp-home-trip-planner.is-home-hero {
  order: -40;
  grid-template-columns: minmax(280px, .58fr) minmax(520px, 1.22fr);
  gap: clamp(26px, 4.6vw, 70px);
  min-height: clamp(640px, 74vh, 820px);
  padding: clamp(30px, 5vw, 62px);
  border-radius: 32px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .78) inset,
    0 38px 90px rgba(15, 23, 42, .16);
}

body.home .ttp-home-trip-planner.is-home-hero::before {
  content: "YOUR PLACES";
  right: -18px;
  bottom: -22px;
  font-size: clamp(96px, 16vw, 218px);
  letter-spacing: .01em;
}

body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy h1 {
  max-width: 11ch;
  margin: 14px 0 16px;
  color: #172033;
  font-size: clamp(44px, 6.1vw, 86px);
  font-weight: 950;
  letter-spacing: -.018em;
  line-height: .95;
}

body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy p:not(.ttp-home-kicker) {
  max-width: 35ch;
  font-size: clamp(18px, 1.7vw, 22px);
}

body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone {
  min-height: clamp(650px, 62vw, 780px);
}

body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone__device {
  width: clamp(316px, 32vw, 412px);
}

body.home .ttp-home-stat-strip {
  order: -30;
}

body.home .ttp-home-intro {
  order: -20;
}

body.home .ttp-home-hero.is-featured-story {
  order: -10;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  min-height: 0;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 24px;
  background:
    linear-gradient(116deg, rgba(17, 24, 39, .98) 0%, rgba(31, 47, 79, .96) 50%, rgba(248, 251, 255, .96) 50.1%, rgba(255, 250, 243, .97) 100%),
    var(--ttp-night);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .70) inset,
    0 24px 62px rgba(15, 23, 42, .17);
}

body.home .ttp-home-hero.is-featured-story .ttp-home-hero__copy {
  padding: clamp(8px, 2vw, 18px);
}

body.home .ttp-home-hero.is-featured-story .ttp-home-hero__title {
  max-width: 17ch;
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1;
}

body.home .ttp-home-hero.is-featured-story .ttp-home-hero__excerpt {
  display: -webkit-box;
  max-width: 58ch;
  margin-top: 12px;
  overflow: hidden;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.home .ttp-home-hero.is-featured-story .ttp-home-actions {
  margin-top: 18px;
}

body.home .ttp-home-hero.is-featured-story .ttp-home-hero__media {
  min-height: clamp(220px, 25vw, 360px);
  border-radius: 22px;
  transform: rotate(.15deg);
}

body.home .ttp-home-hero.is-featured-story .ttp-home-hero__media img {
  min-height: 0;
  height: 100%;
  aspect-ratio: 16 / 10;
}

@media (max-width: 980px) {
  body.home .ttp-home-trip-planner.is-home-hero,
  body.home .ttp-home-hero.is-featured-story {
    grid-template-columns: 1fr;
  }

  body.home .ttp-home-trip-planner.is-home-hero {
    min-height: 0;
  }

  body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy h1 {
    max-width: 12ch;
    font-size: clamp(42px, 9vw, 72px);
  }

  body.home .ttp-home-hero.is-featured-story {
    background:
      linear-gradient(180deg, rgba(17, 24, 39, .98), rgba(31, 47, 79, .96)),
      var(--ttp-night);
  }
}

@media (max-width: 700px) {
  body.home .ttp-home-trip-planner.is-home-hero {
    gap: 14px;
    padding: 20px 14px 22px;
    border-radius: 20px;
  }

  body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy h1 {
    max-width: 12ch;
    margin: 10px 0 12px;
    font-size: clamp(34px, 10.6vw, 46px);
  }

  body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy p:not(.ttp-home-kicker) {
    max-width: 30ch;
    font-size: 16px;
    line-height: 1.45;
  }

  body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__mini-list {
    gap: 5px;
    margin-top: 12px;
  }

  body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__mini-list span {
    gap: 8px;
    font-size: 10px;
    line-height: 1.25;
  }

  body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone {
    min-height: 520px;
    margin-top: -6px;
  }

  body.home .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone__device {
    width: min(258px, 72vw);
  }

  body.home .ttp-home-hero.is-featured-story {
    border-radius: 20px;
  }

  body.home .ttp-home-hero.is-featured-story .ttp-home-hero__title {
    font-size: clamp(34px, 10vw, 48px);
  }
}
