:root {
  color-scheme: light;
  --ink: #1f2417;
  --muted: #5d6451;
  --paper: #fbfcf5;
  --white: #ffffff;
  --line: #d8ddc7;
  --brand-blue: #596638;
  --brand-blue-dark: #3e4a28;
  --brand-olive: #d5dbbf;
  --brand-olive-dark: #aeb782;
  --section-light: #ffffff;
  --section-tint: #eef1df;
  --sky-soft: #eef1df;
  --soft: #f7f8ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.24;
}

p {
  line-height: 1.68;
}

.hero {
  min-height: 92vh;
  padding-top: 84px;
  display: grid;
  grid-template-rows: 1fr;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(251, 252, 245, 0.96) 0%, rgba(251, 252, 245, 0.82) 52%, rgba(251, 252, 245, 0.34) 100%),
    url("public/images/travel-for-jesus-hero.png");
  background-position: center;
  background-size: cover;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 84px;
  padding: 0 max(16px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(216, 221, 199, 0.92);
  background: rgba(251, 252, 245, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
.footerBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img,
.footerBrand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 0.95rem;
}

.links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
}

.links a:hover {
  background: var(--brand-olive);
  color: var(--ink);
}

.heroInner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  align-self: center;
  padding: 70px 0 116px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede {
  max-width: 670px;
  color: #454c38;
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  font: inherit;
  cursor: pointer;
}

.primary {
  background: var(--brand-olive);
  color: var(--ink);
}

.secondary {
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
}

.intro,
.section,
.split,
.cta,
footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro,
.section,
.split,
.formLayout,
footer {
  position: relative;
  background: var(--section-light);
  box-shadow: 0 0 0 100vmax var(--section-light);
  clip-path: inset(0 -100vmax);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 58px;
  padding: 86px 0 74px;
}

.introCopy {
  align-self: end;
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  padding: 86px 0;
}

.sectionTint,
.split,
.toursSection {
  background: var(--section-tint);
  box-shadow: 0 0 0 100vmax var(--section-tint);
}

.section.compact {
  padding-top: 40px;
  background: var(--section-light);
  box-shadow: 0 0 0 100vmax var(--section-light);
}

.sectionHeader {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contentGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.contentCard {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.contentCard span,
.liveHeader span {
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contentCard p,
.status,
.cta p,
footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  padding: 24px 0 86px;
  align-items: center;
}

.photoPanel {
  position: relative;
  margin: 0;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(23, 77, 56, 0.12), rgba(23, 77, 56, 0)),
    url("public/images/community-prayer-journey.png");
  background-position: center;
  background-size: cover;
}

.splitText ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.splitText li {
  padding: 14px 16px;
  border-left: 4px solid var(--brand-olive);
  background: var(--sky-soft);
  color: var(--ink);
}

.placeList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.placeList span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.toursSection {
  border-top: 1px solid rgba(89, 102, 56, 0.16);
}

.storiesSection {
  background: var(--section-light);
  box-shadow: 0 0 0 100vmax var(--section-light);
}

.liveHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.smallLink {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--brand-blue);
  border-radius: 6px;
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.storiesHeader {
  margin-top: 0;
}

.tourShowcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 14px;
  margin-top: 18px;
  align-items: stretch;
}

.tourFeature,
.tourListCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tourFeature:hover,
.tourListCard:hover {
  border-color: rgba(89, 102, 56, 0.28);
  box-shadow: 0 14px 34px rgba(31, 36, 23, 0.08);
  transform: translateY(-2px);
}

.tourFeature a {
  display: grid;
  grid-template-rows: 240px auto;
  min-height: 100%;
}

.tourFeature img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
}

.tourFeature div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.tourFeature span,
.tourListCard span {
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tourFeature h3 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.tourFeature p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.tourList {
  display: grid;
  gap: 10px;
}

.tourListCard a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  min-height: 116px;
  padding: 10px;
}

.tourListCard img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
}

.tourListCard div {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding-right: 4px;
}

.tourListCard h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tourListCard p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.contentGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

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

.contentCard {
  min-height: 410px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contentCard a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.contentCard:hover {
  border-color: rgba(89, 102, 56, 0.28);
  box-shadow: 0 14px 34px rgba(31, 36, 23, 0.08);
  transform: translateY(-2px);
}

.contentCard img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
}

.contentCard img.fallbackImage {
  object-fit: cover;
  background: #fff;
}

.detailImage.fallbackImage {
  object-fit: contain;
  background: #fff;
}

.contentCard div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 20px;
}

.contentCard h3,
.storyCard h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.contentCard h3 {
  -webkit-line-clamp: 2;
  min-height: 2.68em;
}

.contentCard p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.articleCard.contentCard img {
  aspect-ratio: 4 / 3;
}

.articleCard.contentCard h3 {
  -webkit-line-clamp: 3;
  min-height: 4.02em;
}

.articleCard.contentCard p {
  -webkit-line-clamp: 2;
}

.cardAction {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: auto;
  margin-top: 4px;
  padding: 0;
  background: transparent;
  color: var(--brand-blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.cardAction::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.contentCard a:hover .cardAction,
.storyCard a:hover .cardAction {
  background: transparent;
  color: var(--brand-blue-dark);
}

.storyGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.storyCard {
  min-height: 188px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.storyCard a {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  grid-template-rows: 164px;
  gap: 16px;
  height: 100%;
}

.storyCard:hover {
  border-color: rgba(89, 102, 56, 0.28);
  box-shadow: 0 12px 28px rgba(31, 36, 23, 0.07);
  transform: translateY(-1px);
}

.storyCard img {
  width: 100%;
  height: 100%;
  min-height: 164px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
}

.storyCard img.fallbackImage {
  object-fit: cover;
  background: #fff;
}

.storyCard div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 20px 22px;
}

.storyCard span {
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.storyCard h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
  -webkit-line-clamp: 2;
}

.storyCard p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.status.error {
  border-color: #e0c84b;
  color: #6d5f00;
}

.pageHero {
  min-height: 440px;
  padding-top: 84px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(251, 252, 245, 0.96), rgba(251, 252, 245, 0.72)),
    url("public/images/travel-for-jesus-hero.png");
  background-position: center;
  background-size: cover;
}

.pageNav {
  color: var(--ink);
}

.pageHeroInner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 110px;
}

.pageHeroInner h1 {
  max-width: 920px;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
}

.detailLayout,
.formLayout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.detailLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}

.detailLayout.single {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.articleLayout {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.detailArticle {
  min-width: 0;
}

.detailImage {
  width: 100%;
  max-height: 520px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 24px;
}

.detailMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.detailMeta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detailLead {
  max-width: 840px;
  color: #4d4737;
  font-size: 1.18rem;
}

.highlightList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.highlightList li,
.dayItem,
.detailAside,
.formPanel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.highlightList li {
  padding: 14px 16px;
}

.dayList {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.dayItem {
  padding: 22px;
}

.dayItem span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mutedText {
  color: var(--muted);
  font-weight: 700;
}

.detailAside {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.detailAside h2 {
  font-size: 1.65rem;
}

.recentAside {
  top: 96px;
  overflow: hidden;
  gap: 18px;
  padding: 0;
}

.recentHeader {
  padding: 22px 22px 0;
  border-top: 5px solid var(--brand-olive);
}

.recentHeader span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.recentHeader h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
  line-height: 1.05;
}

.recentList {
  display: grid;
  gap: 12px;
  padding: 0 14px;
}

.recentItem {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  min-height: 96px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8f9f0);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.recentItem:hover {
  border-color: rgba(95, 104, 57, 0.24);
  box-shadow: 0 12px 28px rgba(47, 40, 27, 0.1);
  transform: translateY(-1px);
}

.recentThumb {
  min-width: 0;
}

.recentThumb img {
  width: 100%;
  height: 76px;
  border-radius: 6px;
  background: var(--soft);
  object-fit: cover;
}

.recentThumb img.fallbackImage {
  background: var(--white);
  object-fit: cover;
}

.recentCopy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
}

.recentCopy span {
  color: var(--brand-blue);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.recentCopy strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.22;
}

.recentCopy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.recentAllLink {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0 14px 14px;
  border-radius: 6px;
  background: var(--brand-olive);
  color: var(--ink);
  font-weight: 800;
}

.recentAllLink:hover {
  background: var(--brand-olive-dark);
}

.outlineLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--brand-blue);
  border-radius: 6px;
  color: var(--brand-blue);
  font-weight: 800;
}

.richText {
  color: #4d4737;
  font-size: 1.06rem;
}

.richText img {
  border-radius: 8px;
}

.richText a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: underline;
}

.formLayout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 52px;
}

.contactSection {
  background: var(--section-light);
  box-shadow: 0 0 0 100vmax var(--section-light);
}

.contactDetails {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contactDetails a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--brand-blue);
  font-weight: 800;
}

.contactDetails svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contactDetails a:hover {
  border-color: var(--brand-blue);
  background: var(--section-tint);
}

.formIntro p {
  color: var(--muted);
}

.formPanel,
.bookingInline {
  display: grid;
  gap: 16px;
}

.formPanel {
  padding: 26px;
}

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

.formPanel .primary,
.bookingInline .primary {
  width: fit-content;
  min-width: 160px;
  background: var(--brand-olive);
  color: var(--ink);
  box-shadow: none;
}

.formPanel .primary:hover,
.bookingInline .primary:hover {
  background: var(--brand-olive-dark);
}

.formPanel label,
.bookingInline label {
  display: grid;
  gap: 7px;
  color: #4d4737;
  font-weight: 800;
}

.formPanel input,
.formPanel select,
.formPanel textarea,
.bookingInline input,
.bookingInline select,
.bookingInline textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.formPanel textarea,
.bookingInline textarea {
  resize: vertical;
}

.bookingInline {
  margin-top: 6px;
}

.formGridTwo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.formNote {
  margin: 0;
  color: var(--muted);
}

.cta {
  margin-bottom: 28px;
  padding: 72px;
  border-radius: 8px;
  background: var(--brand-olive);
}

.cta p {
  max-width: 720px;
  margin-bottom: 26px;
}

footer {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

.whatsappFloat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
}

.whatsappFloat:hover {
  background: #1ebe5d;
}

.whatsappFloat svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .contentGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tourShowcase {
    grid-template-columns: 1fr;
  }

  .tourFeature a {
    grid-template-rows: auto auto;
  }

  .tourFeature img {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }

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

  .tourListCard a {
    grid-template-columns: 1fr;
  }

  .tourListCard img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .tourListCard div {
    align-content: start;
    padding: 2px 2px 6px;
  }

  .storyGrid {
    grid-template-columns: 1fr;
  }

  .intro,
  .split,
  .detailLayout,
  .formLayout {
    grid-template-columns: 1fr;
  }

  .photoPanel {
    min-height: 380px;
  }

  .detailAside {
    position: static;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 820px;
    background-position: 58% center;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 14px 16px;
  }

  .hero,
  .pageHero {
    padding-top: 132px;
  }

  .links {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
  }

  .links a {
    min-height: 36px;
    padding: 0 10px;
  }

  .heroInner {
    padding: 42px 0 82px;
  }

  .intro,
  .section {
    padding: 64px 0;
  }

  .contentGrid {
    grid-template-columns: 1fr;
  }

  .tourList {
    grid-template-columns: 1fr;
  }

  .tourFeature div {
    padding: 20px;
  }

  .storyCard a {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .storyCard img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .storyCard div {
    align-content: start;
  }

  .split {
    padding-bottom: 64px;
  }

  .cta {
    padding: 42px 20px;
  }

  .pageHeroInner {
    padding: 64px 0 76px;
  }

  .detailLayout,
  .formLayout {
    padding: 52px 0 64px;
  }

  .highlightList,
  .formGridTwo {
    grid-template-columns: 1fr;
  }

  .recentItem {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }
}

@media (max-width: 430px) {
  .recentItem {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .recentThumb img {
    height: 68px;
  }
}
