/* --------------------------------------------------------------
   Golden Circle Homepage
   Placeholder structure only.
-------------------------------------------------------------- */

.gc-home-page {
  background: #edf1f5;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
}

body.gc-home-page-shell .wp-site-blocks > * + *,
body:has(.gc-home-page) .wp-site-blocks > * + *,
body.page-id-7750 .wp-site-blocks > * + *,
body.page-template-home-page .wp-site-blocks > * + * {
  margin-block-start: 0 !important;
}

body.page-id-7750 .wp-site-blocks > p:empty,
body.page-id-7750 .gc-home-page > p:empty,
body.page-template-home-page .wp-site-blocks > p:empty,
body.page-template-home-page .gc-home-page > p:empty {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.gc-home-page-shell .wp-block-post-content,
body.gc-home-page-shell .entry-content,
body.gc-home-page-shell .wp-block-shortcode,
body:has(.gc-home-page) .wp-block-post-content,
body:has(.gc-home-page) .entry-content,
body:has(.gc-home-page) .wp-block-shortcode {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  padding-top: 0 !important;
  padding-block-start: 0 !important;
}

.gc-home-section {
  padding: 56px 0;
}

.gc-home-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--gc-blue-deep);
  background-image:
    radial-gradient(circle at 86% 22%, rgba(212, 175, 55, 0.12), transparent 30%),
    url("https://goldencircle.is/wp-content/uploads/2025/12/golden-circle-geysir-eruption.webp"),
    linear-gradient(135deg, var(--gc-blue-deep) 0%, var(--gc-blue-dark) 100%);
  background-position: center center, 40% 14%, center center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
  color: var(--gc-white);
  padding: 92px 0 78px;
}

@media (min-width: 1400px) {
  .gc-home-hero {
    background-position: center center, 40% 8%, center center;
  }
}

@media (max-width: 1200px) {
  .gc-home-hero {
    background-position: center center, 36% 20%, center center;
  }
}

.gc-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 17, 38, 0.78) 0%,
    rgba(0, 17, 38, 0.62) 28%,
    rgba(0, 17, 38, 0.32) 44%,
    rgba(0, 17, 38, 0.08) 58%,
    rgba(0, 17, 38, 0) 68%
  );
  pointer-events: none;
}

.gc-home-hero .gc-container {
  position: relative;
  z-index: 1;
}

.gc-home-hero__content {
  max-width: 720px;
}

.gc-home-hero__title {
  max-width: 620px;
  margin: 0;
  color: var(--gc-white);
  font-family: var(--gc-font-heading);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.04;
}

.gc-home-hero__text {
  max-width: 470px;
  margin: 20px 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--gc-font-body);
  font-size: 1.05rem;
  line-height: 1.6;
}

.gc-home-hero__cards-label {
  margin: 74px 0 12px;
  color: var(--gc-gold);
  font-family: var(--gc-font-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gc-home-travel-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 570px;
}

.gc-home-travel-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-height: 96px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--gc-radius-sm);
  background: rgba(255, 255, 255, 0.055);
  color: var(--gc-white);
  text-decoration: none;
}

.gc-home-travel-card:focus-visible {
  outline: 2px solid var(--gc-gold);
  outline-offset: 3px;
}

@media (min-width: 921px) {
  .gc-home-travel-card__title,
  .gc-home-travel-card__text {
    white-space: nowrap;
  }
}

.gc-home-travel-card--featured {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.gc-home-travel-card__title {
  margin: 0;
  color: var(--gc-white);
  font-family: var(--gc-font-body);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}

.gc-home-travel-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--gc-font-body);
  font-size: 0.82rem;
  line-height: 1.4;
}

.gc-home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--gc-font-body);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.gc-home-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gc-home-hero__trust li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gc-gold);
}

.gc-home-intro {
  background: #edf1f5;
  padding: clamp(68px, 7vw, 96px) 0;
}

.gc-home-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.gc-home-intro__eyebrow {
  margin: 0 0 10px;
}

.gc-home-intro__title {
  font-size: clamp(1.85rem, 2.35vw, 2.5rem);
}

.gc-home-intro__text {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 1rem;
  line-height: 1.72;
}

.gc-home-intro__text--support {
  max-width: 520px;
  margin-top: 14px;
}

.gc-home-intro__facts {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  margin: 30px 0 0;
}

.gc-home-intro__stop-boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
}

.gc-home-intro__stop-boxes .gc-home-guide-link-card {
  justify-content: center;
  text-align: center;
  min-height: 40px;
  padding: 9px 16px;
  background: var(--gc-white);
}

.gc-home-intro__fact {
  box-sizing: border-box;
  min-width: 0;
  margin: 0;
  padding: 2px 16px;
  border-left: 1px solid var(--gc-gold);
}

.gc-home-intro__fact:first-child {
  padding-left: 16px;
}

.gc-home-intro__fact dt {
  margin: 0 0 8px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gc-home-intro__fact dd {
  margin: 0;
  color: #00255e;
  font-family: var(--gc-font-heading);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.gc-home-route-map {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gc-home-page .gc-home-route-map {
  background: transparent;
  box-shadow: none;
}

.gc-home-page .gc-home-route-map:hover {
  transform: none;
  box-shadow: none;
}

.gc-home-route-map__visual {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--gc-radius-sm);
  background: transparent;
  box-shadow: none;
}

.gc-home-route-map__image {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: none;
}

.gc-home-page .gc-home-route-map__image:hover {
  box-shadow: none;
}

.gc-home-route-map__link {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 37, 94, 0.14);
  font-size: 0.84rem;
}

.gc-home-reviews {
  background: #edf1f5;
  padding: 48px 0 32px;
}

.gc-home-reviews__header {
  margin-bottom: 20px;
}

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

.gc-home-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 26px 24px;
  border-radius: var(--gc-radius-md);
  background: var(--gc-white);
  box-shadow: 0 10px 28px rgba(0, 37, 94, 0.06);
}

.gc-home-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 -6px;
}

.gc-home-review-card__stars {
  color: var(--gc-gold);
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  line-height: 1;
}

.gc-home-review-card__mark {
  font-family: var(--gc-font-heading);
  font-size: 2rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.28);
}

.gc-home-review-card__quote {
  margin: 0 0 20px;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.gc-home-review-card__footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gc-border);
}

.gc-home-review-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.gc-home-review-card__avatar {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gc-gold);
}

.gc-home-review-card__avatar svg {
  width: 20px;
  height: 20px;
}

.gc-home-review-card__id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gc-home-review-card__name,
.gc-home-review-card__tour,
.gc-home-review-card__type {
  display: block;
  font-family: var(--gc-font-body);
  font-style: normal;
  line-height: 1.35;
}

.gc-home-review-card__name {
  color: var(--gc-text);
  font-size: 0.92rem;
  font-weight: 800;
}

.gc-home-review-card__tour,
.gc-home-review-card__type {
  margin-top: 2px;
  color: var(--gc-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.gc-home-review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.gc-home-review-card__verified,
.gc-home-review-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gc-font-body);
  font-size: 0.76rem;
  font-weight: 700;
}

.gc-home-review-card__verified {
  color: #2f9e5c;
}

.gc-home-review-card__date {
  color: var(--gc-muted);
}

.gc-home-review-card__verified svg,
.gc-home-review-card__date svg {
  width: 15px;
  height: 15px;
}

.gc-home-cta {
  background: #edf1f5;
  padding: 20px 0 56px;
}

/* The shared footer's margin-top (calibrated for pages whose preceding
   section shares the body's beige background) would otherwise expose a
   second, differently-colored sliver of beige below this section's own
   gray background before the navy footer starts. Let this section's own
   padding provide the entire gap instead, for a single clean gray-to-navy
   transition (matching about-us, which doesn't use the shared footer). */
body.gc-home-page-shell .wp-site-blocks .gc-site-footer {
  margin-top: 0;
}

.gc-home-cta__banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 0;
  overflow: hidden;
  padding: 30px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--gc-radius-md);
  background: var(--gc-blue-deep);
  box-shadow: 0 12px 28px rgba(0, 17, 38, 0.1);
}

.gc-home-cta__banner::before,
.gc-home-cta__banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 999px;
}

.gc-home-cta__banner::before {
  width: 210px;
  height: 210px;
  top: -64px;
  right: -34px;
}

.gc-home-cta__banner::after {
  width: 134px;
  height: 134px;
  top: -26px;
  right: 52px;
}

.gc-home-cta__content,
.gc-home-cta__actions {
  position: relative;
  z-index: 1;
}

.gc-home-cta__title {
  max-width: 620px;
  margin: 0;
  color: var(--gc-white);
  font-family: var(--gc-font-heading);
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  font-weight: 600;
  line-height: 1.16;
}

.gc-home-cta__text {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--gc-font-body);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.5;
}

.gc-home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gc-home-cta__button {
  min-width: 120px;
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.gc-home-routes {
  background: var(--gc-white);
  padding: clamp(72px, 7vw, 96px) 0;
  padding-bottom: 40px;
}

.gc-home-routes__layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.92fr) minmax(0, 2.18fr);
  column-gap: 40px;
  align-items: start;
}

.gc-home-routes__intro {
  min-width: 0;
}

.gc-home-routes__eyebrow {
  margin: 0 0 13px;
}

.gc-home-routes__title {
  margin: 0;
  font-family: var(--gc-font-heading);
  font-size: clamp(2rem, 2.65vw, 2.8rem);
  line-height: 1.12;
}

.gc-home-routes__intro-text {
  margin: 20px 0 0;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.98rem;
  line-height: 1.7;
}

.gc-home-routes__link {
  margin-top: 26px;
}

.gc-home-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
  align-items: stretch;
}

.gc-home-routes .gc-home-route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: 15px;
  color: var(--gc-text);
  overflow: hidden;
  box-shadow: none;
  cursor: default;
  transition: transform 275ms ease, border-color 275ms ease;
}

.gc-home-routes .gc-home-route-card:hover,
.gc-home-routes .gc-home-route-card:focus-within,
.gc-home-page .gc-home-routes .gc-home-route-card:hover,
.gc-home-page .gc-home-routes .gc-home-route-card:focus-within {
  background: var(--gc-white);
  border-color: rgba(0, 37, 94, 0.24);
  box-shadow: none;
}

.gc-home-page .gc-home-routes .gc-home-route-card {
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: 15px;
  color: var(--gc-text);
  overflow: hidden;
  box-shadow: none;
}

.gc-home-routes .gc-home-route-card__image-link {
  position: relative;
  display: block;
  height: 232px;
  flex: 0 0 232px;
  overflow: hidden;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(0, 17, 38, 0.92), rgba(0, 37, 94, 0.72)),
    var(--gc-blue-deep);
  box-shadow: none;
  line-height: 0;
}

.gc-home-routes .gc-home-route-card__image {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  margin: 0;
  object-fit: cover;
  box-shadow: none;
  transition: transform 275ms ease;
}

.gc-home-page .gc-home-route-card__image,
.gc-home-page .gc-home-route-card__image-link,
.gc-home-page .gc-home-route-card__image-link img {
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

.gc-home-page .gc-home-routes__grid > p:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.gc-home-page .gc-home-route-card > p:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.gc-home-routes .gc-home-route-card__image-link:focus-visible,
.gc-home-routes .gc-home-route-card__title a:focus-visible,
.gc-home-routes .gc-home-route-card__button:focus-visible {
  outline: 2px solid var(--gc-blue);
  outline-offset: 3px;
}

.gc-home-routes .gc-home-route-card__image-link--placeholder {
  min-height: 232px;
}

.gc-home-routes .gc-home-route-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 22px 20px 20px;
}

.gc-home-routes .gc-home-route-card__label {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--gc-blue);
  font-family: var(--gc-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gc-home-routes .gc-home-route-card__title {
  min-height: 2.5em;
  margin: 0 0 12px;
  color: var(--gc-blue);
  font-family: var(--gc-font-heading);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.25;
}

.gc-home-route-card__title a {
  color: inherit;
  text-decoration: none;
}

.gc-home-route-card__title a:hover,
.gc-home-route-card__title a:focus {
  color: inherit;
  text-decoration: none;
}

.gc-home-routes .gc-home-route-card__text {
  margin: 0 0 18px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  line-height: 1.55;
}

.gc-home-page .gc-home-routes__grid .gc-home-route-card .gc-home-route-card__text {
  color: var(--gc-muted);
}

.gc-home-routes .gc-home-route-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 15px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.gc-home-routes .gc-home-route-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.gc-home-routes .gc-home-route-card__meta-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gc-home-routes .gc-home-route-card__footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gc-border);
}

.gc-home-routes .gc-home-route-card__price {
  margin: 0;
  color: var(--gc-blue);
  font-family: var(--gc-font-body);
  line-height: 1.3;
}

.gc-home-routes .gc-home-route-card__price-label,
.gc-home-routes .gc-home-route-card__price-value {
  display: block;
}

.gc-home-routes .gc-home-route-card__price-label {
  margin-bottom: 2px;
  color: var(--gc-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.gc-home-routes .gc-home-route-card__price-value {
  font-size: 0.9rem;
  font-weight: 800;
}

.gc-home-routes .gc-home-route-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: 100%;
  padding: 0 14px;
  border-radius: 7px;
  background: var(--gc-gold);
  color: var(--gc-blue-deep);
  font-family: var(--gc-font-body);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 275ms ease;
}

.gc-home-routes .gc-home-route-card__button:hover {
  background: var(--gc-gold-soft);
  color: var(--gc-blue-deep);
}

@media (hover: hover) and (pointer: fine) {
  .gc-home-routes .gc-home-route-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 37, 94, 0.24);
  }

  .gc-home-routes .gc-home-route-card:hover .gc-home-route-card__image {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-home-page .gc-home-route-card,
  .gc-home-page .gc-home-route-card:hover,
  .gc-home-page .gc-home-route-card:focus-within,
  .gc-home-page .gc-home-route-card:focus-visible {
    transform: none;
    transition: none;
  }

  .gc-home-routes .gc-home-route-card__image,
  .gc-home-routes .gc-home-route-card__button {
    transform: none;
    transition: none;
  }

}

/* Temporary homepage comparison banner (v2). */
.gc-home-why-us-v2 {
  background: var(--gc-white);
  padding: 0 0 46px;
}

.gc-home-why-us-v2__container {
  width: calc(100% - 40px);
  max-width: var(--gc-container);
  margin-inline: auto;
}

.gc-home-why-us-v2__banner {
  overflow: hidden;
  border-radius: var(--gc-radius-sm);
  background: var(--gc-blue-deep);
}

.gc-home-why-us-v2__main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 400px;
}

.gc-home-why-us-v2__media {
  overflow: hidden;
  min-width: 0;
  height: 100%;
  margin: 0;
  background: var(--gc-blue-dark);
}

.gc-home-why-us-v2__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
}

.gc-home-why-us-v2__content {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(36px, 4vw, 56px);
  background: var(--gc-blue);
}

.gc-home-why-us-v2__eyebrow {
  margin: 0 0 13px;
  color: var(--gc-gold);
  font-family: var(--gc-font-body);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gc-home-why-us-v2__title {
  max-width: 580px;
  margin: 0 0 17px;
  color: var(--gc-white);
  font-family: var(--gc-font-heading);
  font-size: clamp(1.95rem, 2.25vw, 2.2rem);
  font-weight: 700;
  line-height: 1.08;
}

.gc-home-why-us-v2__description {
  max-width: 72ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--gc-font-body);
  font-size: 0.82rem;
  line-height: 1.6;
}

.gc-home-why-us-v2__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--gc-blue-deep);
}

.gc-home-why-us-v2__benefit {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 12px;
  padding: 0 clamp(20px, 2.5vw, 30px) 0;
}

.gc-home-why-us-v2__benefit + .gc-home-why-us-v2__benefit::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.gc-home-why-us-v2__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--gc-gold);
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gc-home-why-us-v2__benefit-copy {
  min-width: 0;
}

.gc-home-why-us-v2__benefit-title {
  margin: 0 0 4px;
  color: var(--gc-white);
  font-family: var(--gc-font-body);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

.gc-home-why-us-v2__benefit-text {
  margin: 0;
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--gc-font-body);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .gc-home-why-us-v2__main {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gc-home-why-us-v2__media {
    height: clamp(280px, 45vw, 360px);
  }

  .gc-home-why-us-v2__content {
    height: auto;
    padding: 42px 40px;
  }
}

@media (max-width: 768px) {
  .gc-home-why-us-v2__benefits {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gc-home-why-us-v2__benefit {
    min-height: 72px;
    padding: 14px 24px;
  }

  .gc-home-why-us-v2__benefit + .gc-home-why-us-v2__benefit::before {
    top: 0;
    right: 24px;
    bottom: auto;
    left: 24px;
    width: auto;
    height: 1px;
  }
}

@media (max-width: 640px) {
  .gc-home-why-us-v2__container {
    width: calc(100% - 28px);
  }

  .gc-home-why-us-v2__media {
    height: clamp(240px, 70vw, 300px);
  }

  .gc-home-why-us-v2__content {
    padding: 34px 24px 38px;
  }

  .gc-home-why-us-v2__title {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
  }
}

.gc-home-guides {
  background: var(--gc-white);
  padding: 64px 0 112px;
}

.gc-home-guides__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.9fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: stretch;
}

.gc-home-guides__column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gc-home-guides__column + .gc-home-guides__column .gc-home-article-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

.gc-home-guides__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.gc-home-guides__header .gc-section-title {
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.gc-home-featured-guide {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gc-home-featured-guide:hover {
  transform: translateY(-1px);
  box-shadow: var(--gc-shadow-soft);
}

.gc-home-featured-guide__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.3 / 1;
  margin: 0;
  background: var(--gc-blue-deep);
}

.gc-home-featured-guide__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gc-home-featured-guide__body {
  padding: 18px 20px 16px;
}

.gc-home-featured-guide__title {
  margin: 0 0 8px;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 600;
  line-height: 1.18;
}

.gc-home-featured-guide__text {
  margin: 0;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.88rem;
  line-height: 1.5;
}

.gc-home-featured-guide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.86rem;
  font-weight: 800;
}

.gc-home-featured-guide__footer .gc-link-arrow {
  font-size: 0.88rem;
}

.gc-home-guide-link-card {
  min-width: 0;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-sm);
  background: var(--gc-white);
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.32;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.gc-home-guide-link-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: var(--gc-shadow-card);
  transform: translateY(-1px);
}

.gc-home-article-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.gc-home-article-item {
  margin: 0;
  padding: 0;
  min-height: 0;
  border-bottom: 1px solid var(--gc-border);
}

.gc-home-article-item__link {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  min-height: 0;
  padding: 8px 0;
  color: var(--gc-text);
  text-decoration: none;
  transition: transform 0.18s ease, color 0.18s ease;
}

.gc-home-article-item__link:hover {
  color: var(--gc-blue);
  transform: translateX(2px);
}

.gc-home-article-item__number {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.625rem;
  font-weight: 900;
}

.gc-home-article-item__content {
  display: block;
  min-height: 0;
  min-width: 0;
}

.gc-home-article-item__category {
  display: block;
  margin: 0 0 2px;
  color: var(--gc-gold);
  font-family: var(--gc-font-body);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.gc-home-article-item__title {
  display: block;
  margin: 0 0 2px;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.gc-home-article-item__meta {
  display: block;
  margin: 0;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.15;
}

.gc-home-planning {
  background: #edf1f5;
  padding: 84px 0 64px;
}

.gc-home-planning__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.2fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: stretch;
}

.gc-home-planning__content {
  min-width: 0;
}

.gc-home-planning__eyebrow {
  margin: 0 0 10px;
}

.gc-home-planning__title {
  max-width: 560px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.gc-home-planning__intro {
  max-width: 510px;
  margin: 18px 0 28px;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.58;
}

.gc-home-planning__values {
  display: grid;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-home-planning-value {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.gc-home-planning-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--gc-font-body);
  font-weight: 900;
  line-height: 1;
}

.gc-home-planning-value__icon {
  padding-top: 2px;
  color: var(--gc-gold);
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.gc-home-planning-value__body,
.gc-home-planning-benefit__body {
  display: block;
  min-width: 0;
}

.gc-home-planning-value__title,
.gc-home-planning-benefit__title {
  display: block;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  line-height: 1.28;
}

.gc-home-planning-value__title {
  margin: 0 0 4px;
  font-size: 0.94rem;
  font-weight: 700;
}

.gc-home-planning-value__text {
  display: block;
  max-width: 420px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
}

.gc-home-itin-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.gc-home-itin-preview__card {
  min-width: 0;
  padding: 26px 26px 28px;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-md);
  background: var(--gc-white);
  box-shadow: var(--gc-shadow-card);
}

.gc-home-itin-preview__card[data-clickable="true"] {
  cursor: pointer;
}

.gc-home-itin-preview__eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  color: var(--gc-gold);
  font-family: var(--gc-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gc-home-itin-preview__eyebrow-icon {
  display: inline-flex;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gc-gold);
  border-radius: 50%;
  color: var(--gc-gold);
}

.gc-home-itin-preview__eyebrow-icon svg {
  width: 12px;
  height: 12px;
}

.gc-home-itin-preview__title {
  margin: 0 0 6px;
  color: var(--gc-text);
  font-family: var(--gc-font-heading);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.gc-home-itin-preview__text {
  margin: 0 0 20px;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.84rem;
  line-height: 1.5;
}

.gc-home-itin-preview__step {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gc-border);
}

.gc-home-itin-preview__step:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.gc-home-itin-preview__step-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
}

.gc-home-itin-preview__step-num {
  display: inline-flex;
  flex: 0 0 21px;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gc-blue);
  color: var(--gc-white);
  font-family: var(--gc-font-body);
  font-size: 0.7rem;
  font-weight: 700;
}

.gc-home-itin-preview__step-label {
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  font-weight: 700;
}

.gc-home-itin-preview__who-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gc-home-itin-preview__who-box {
  padding: 10px 12px;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-sm);
}

.gc-home-itin-preview__who-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 9px;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.76rem;
  font-weight: 700;
}

.gc-home-itin-preview__who-label svg {
  width: 14px;
  height: 14px;
  color: var(--gc-blue);
  flex: none;
}

.gc-home-itin-preview__stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.8rem;
  font-weight: 600;
}

.gc-home-itin-preview__stepper span:first-child,
.gc-home-itin-preview__stepper span:last-child {
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gc-border);
  border-radius: 50%;
  color: var(--gc-muted);
}

.gc-home-itin-preview__travel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gc-home-itin-preview__travel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 13px 8px;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-sm);
  text-align: center;
}

.gc-home-itin-preview__travel-card.is-selected {
  border-color: var(--gc-gold);
  background: rgba(212, 175, 55, 0.06);
}

.gc-home-itin-preview__travel-card svg {
  width: 18px;
  height: 18px;
  color: var(--gc-blue);
}

.gc-home-itin-preview__travel-check {
  position: absolute;
  top: 7px;
  right: 7px;
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: var(--gc-gold);
}

.gc-home-itin-preview__travel-check svg {
  width: 14px;
  height: 14px;
}

.gc-home-itin-preview__travel-title {
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.8rem;
  font-weight: 700;
}

.gc-home-itin-preview__travel-text {
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.68rem;
  line-height: 1.3;
}

.gc-home-itin-preview__interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.gc-home-itin-preview__interest {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-sm);
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-size: 0.78rem;
  font-weight: 600;
}

.gc-home-itin-preview__interest.is-selected {
  border-color: var(--gc-gold);
  background: rgba(212, 175, 55, 0.06);
}

.gc-home-itin-preview__interest svg {
  width: 14px;
  height: 14px;
  color: var(--gc-blue);
  flex: none;
}

.gc-home-itin-preview__interest-check {
  display: inline-flex;
  flex: none;
  width: 13px;
  height: 13px;
  margin-left: auto;
  color: var(--gc-gold);
}

.gc-home-itin-preview__interest-check svg {
  width: 13px;
  height: 13px;
}

.gc-home-itin-preview__more {
  margin-top: 7px;
  padding: 9px;
  border: 1px dashed var(--gc-border);
  border-radius: var(--gc-radius-sm);
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.gc-home-itin-preview__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: var(--gc-radius-sm);
  background: var(--gc-gold);
  color: var(--gc-blue-deep);
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.gc-home-itin-preview__cta:hover {
  background: var(--gc-gold-deep, var(--gc-blue-deep));
  color: var(--gc-white);
}

.gc-home-itin-preview__footnote {
  margin: 10px 0 0;
  color: var(--gc-muted);
  font-family: var(--gc-font-body);
  font-size: 0.78rem;
  text-align: center;
}

.gc-home-planning__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 64px 0 0;
  padding: 0;
  border-radius: var(--gc-radius-md);
  background: var(--gc-blue-deep);
  color: var(--gc-white);
  list-style: none;
  overflow: hidden;
}

.gc-home-planning-benefit {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 18px 20px;
}

.gc-home-planning-benefit + .gc-home-planning-benefit {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.gc-home-planning-benefit__icon {
  width: auto;
  height: auto;
  border: none;
  color: var(--gc-gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding-top: 1px;
}

.gc-home-planning-benefit__title {
  margin: 0 0 4px;
  color: var(--gc-white);
  font-size: 0.86rem;
  font-weight: 700;
}

.gc-home-planning-benefit__text {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--gc-font-body);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 920px) {
  .gc-home-hero {
    background-position: center center, 34% 28%, center center;
  }

  .gc-home-travel-cards {
    max-width: 570px;
  }

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

@media (max-width: 960px) {
  .gc-home-routes__layout {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }

  .gc-home-routes__intro {
    max-width: 720px;
  }

  .gc-home-routes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .gc-home-intro__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .gc-home-intro__column {
    max-width: 720px;
  }

  .gc-home-intro__fact dd {
    white-space: normal;
  }

  .gc-home-guides__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .gc-home-planning__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .gc-home-planning__title,
  .gc-home-planning__intro {
    max-width: 680px;
  }

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

  .gc-home-planning-benefit:nth-child(odd) {
    border-left: 0;
  }

  .gc-home-planning-benefit:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 768px) {
  .gc-home-hero {
    background-position: center center, 32% 32%, center center;
    padding: 76px 0 58px;
  }

  .gc-home-hero__content {
    max-width: 100%;
  }

  .gc-home-hero__title {
    max-width: 480px;
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .gc-home-hero__text {
    font-size: 1rem;
  }

  .gc-home-hero__cards-label {
    margin-top: 58px;
  }

  .gc-home-section {
    padding: 40px 0;
  }

  .gc-home-intro {
    padding: 42px 0;
  }

  .gc-home-intro__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gc-home-routes {
    padding: 46px 0 36px;
  }

  .gc-home-why-us-v2 {
    padding: 0 0 24px;
  }

  .gc-home-guides {
    padding: 48px 0 56px;
  }

  .gc-home-reviews {
    padding: 44px 0 50px;
  }

  .gc-home-cta {
    padding: 26px 0 44px;
  }

  .gc-home-cta__banner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 36px 34px;
  }

  .gc-home-cta__actions {
    justify-content: flex-start;
  }

  .gc-home-guides__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .gc-home-planning {
    padding-top: 52px;
  }

  .gc-home-itin-preview__card {
    padding: 24px;
  }

  .gc-home-planning__benefits {
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .gc-home-intro__facts {
    grid-template-columns: 1fr;
  }

  .gc-home-intro__stop-boxes {
    grid-template-columns: 1fr;
  }

  .gc-home-intro__fact,
  .gc-home-intro__fact:first-child {
    padding: 16px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.55);
    border-left: 0;
  }

  .gc-home-intro__fact:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .gc-home-travel-cards {
    grid-template-columns: 1fr;
  }

  .gc-home-travel-card {
    min-height: 90px;
  }

  .gc-home-hero__trust {
    display: grid;
    gap: 10px;
  }

  .gc-home-routes__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gc-home-reviews__grid {
    grid-template-columns: 1fr;
  }

  .gc-home-review-card {
    padding: 24px 20px 22px;
  }

  .gc-home-cta__banner {
    padding: 30px 24px;
  }

  .gc-home-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .gc-home-cta__button {
    width: 100%;
  }

  .gc-home-route-map__link {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .gc-home-routes .gc-home-route-card__image-link {
    height: 190px;
    min-height: 190px;
    flex-basis: 190px;
  }

  .gc-home-routes .gc-home-route-card__title {
    display: block;
    min-height: 0;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .gc-home-routes .gc-home-route-card__text {
    display: block;
    overflow: visible;
  }

  .gc-home-featured-guide__footer {
    display: grid;
    gap: 12px;
  }

  .gc-home-article-item__link {
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 12px;
  }

  .gc-home-planning-value,
  .gc-home-planning-benefit {
    grid-template-columns: 1fr;
  }

  .gc-home-itin-preview__card {
    padding: 22px 18px;
  }

  .gc-home-itin-preview__who-grid,
  .gc-home-itin-preview__travel-grid,
  .gc-home-itin-preview__interest-grid {
    grid-template-columns: 1fr;
  }

  .gc-home-itin-preview__travel-card {
    flex-direction: row;
    text-align: left;
  }

  .gc-home-planning__benefits {
    grid-template-columns: 1fr;
  }

  .gc-home-planning-benefit,
  .gc-home-planning-benefit:nth-child(odd) {
    border-left: 0;
  }

.gc-home-planning-benefit + .gc-home-planning-benefit {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
}

/* Hero travel cards: force clean 3-card row */
.gc-home-page .gc-home-hero .gc-home-travel-cards {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 12px !important;
  width: 100%;
  max-width: 570px;
}

.gc-home-page .gc-home-hero .gc-home-travel-cards > .gc-home-travel-card {
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 96px !important;
  margin: 0 !important;
  padding: 18px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 5px !important;
  grid-column: auto !important;
  grid-row: auto !important;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
  color: var(--gc-white);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 200ms ease;
}

.gc-home-page .gc-home-hero .gc-home-travel-cards > .gc-home-travel-card.is-selected {
  border-color: var(--gc-gold);
}

.gc-home-page .gc-home-hero .gc-home-travel-cards > .gc-home-travel-card:hover,
.gc-home-page .gc-home-hero .gc-home-travel-cards > .gc-home-travel-card:focus-visible {
  border-color: var(--gc-gold);
}

.gc-home-page .gc-home-hero .gc-home-travel-cards > .gc-home-travel-card:focus-visible {
  outline: 2px solid var(--gc-gold);
  outline-offset: 3px;
}

.gc-home-page .gc-home-hero .gc-home-travel-cards:has(> .gc-home-travel-card:not(.is-selected):hover)
  > .gc-home-travel-card.is-selected,
.gc-home-page .gc-home-hero .gc-home-travel-cards:has(> .gc-home-travel-card:not(.is-selected):focus-visible)
  > .gc-home-travel-card.is-selected {
  border-color: rgba(255, 255, 255, 0.24);
}

.gc-home-page .gc-home-hero .gc-home-travel-card__title,
.gc-home-page .gc-home-hero .gc-home-travel-card__text {
  margin: 0 !important;
}

@media (max-width: 640px) {
  .gc-home-page .gc-home-hero .gc-home-travel-cards {
    flex-direction: column !important;
    max-width: 100%;
  }

  .gc-home-page .gc-home-hero .gc-home-travel-cards > .gc-home-travel-card {
    width: 100% !important;
  }
}
