.ge-wpte-showcase,
.ge-wpte-showcase * {
  box-sizing: border-box;
}

.ge-wpte-showcase {
  --ge-orange: #bf5a14;
  --ge-orange-dark: #8f3f0d;
  --ge-gold: #e7a23a;
  --ge-cream: #fffaf2;
  --ge-text: #171717;
  --ge-muted: #5f5f5f;
  --ge-image-zoom: 1.03;
  --ge-card-lift: 6px;
  width: 100%;
  position: relative;
}

.ge-wpte-grid {
  display: grid;
  grid-template-columns: repeat(60, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.ge-wpte-card {
  grid-column: span var(--ge-desktop-span, 20);
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  transform: translateY(0);
  transition: transform .42s ease, box-shadow .42s ease, border-color .42s ease;
}

.ge-wpte-card:hover {
  transform: translateY(calc(-1 * var(--ge-card-lift, 6px)));
}

.ge-wpte-card a {
  text-decoration: none !important;
}

.ge-wpte-card__media,
.ge-wpte-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ge-wpte-card__image-link {
  z-index: 1;
}

.ge-wpte-card__image-backdrop {
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  filter: blur(16px) saturate(1.08) brightness(.82);
  transform: scale(1.08);
  opacity: .78;
  pointer-events: none;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}

.ge-wpte-card:hover .ge-wpte-card__image-backdrop {
  transform: scale(1.13);
  filter: blur(14px) saturate(1.12) brightness(.76);
}

.ge-wpte-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.001);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}

.ge-wpte-card:hover .ge-wpte-card__image {
  transform: scale(var(--ge-image-zoom, 1.03));
}

.ge-wpte-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: background .42s ease, opacity .42s ease;
}

.ge-wpte-card__title {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 850;
  letter-spacing: -0.025em;
}

.ge-wpte-card__title a {
  transition: color .3s ease;
}

.ge-wpte-card__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.ge-wpte-card__count {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--ge-orange);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.ge-wpte-card__count:hover {
  transform: translateY(-2px);
}

.ge-wpte-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  color: var(--ge-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  transition: color .3s ease, gap .3s ease;
}

.ge-wpte-card__cta:hover {
  color: var(--ge-orange-dark);
  gap: 12px;
}

.ge-wpte-card__arrow {
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
  transition: transform .3s ease;
}

.ge-wpte-card__cta:hover .ge-wpte-card__arrow {
  transform: translateX(3px);
}

.ge-lang-ar .ge-wpte-card__arrow {
  transform: rotate(180deg);
}

.ge-lang-ar .ge-wpte-card__cta:hover .ge-wpte-card__arrow {
  transform: rotate(180deg) translateX(3px);
}

/* =========================
   DESTINATIONS — CINEMATIC MOSAIC
   ========================= */
.ge-wpte-destinations .ge-wpte-card {
  min-height: 380px;
  background: #241308;
  box-shadow: 0 16px 44px rgba(35,20,8,.12);
}

.ge-wpte-destinations .ge-wpte-card__media {
  position: absolute;
  inset: 0;
}

.ge-wpte-destinations .ge-wpte-card__body {
  position: absolute;
  z-index: 3;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 26px;
  color: #fff;
  background: transparent;
  transform: translateY(0);
  transition: transform .42s ease;
}

.ge-wpte-destinations .ge-wpte-card__title,
.ge-wpte-destinations .ge-wpte-card__title a {
  color: #fff;
}

.ge-wpte-destinations .ge-wpte-card__count {
  order: 2;
  background: rgba(191,90,20,.90);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.ge-wpte-destinations .ge-wpte-card__description {
  order: 3;
  max-width: 680px;
  color: rgba(255,255,255,.92);
  opacity: 0;
  max-height: 0;
  transform: translateY(12px);
  transition: opacity .38s ease, transform .38s ease, max-height .45s ease;
}

.ge-wpte-destinations .ge-wpte-card__cta {
  order: 4;
  color: #fff;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  transition: opacity .38s ease, transform .38s ease, max-height .45s ease, gap .3s ease;
}

.ge-wpte-destinations .ge-wpte-card:hover .ge-wpte-card__description,
.ge-wpte-destinations .ge-wpte-card:hover .ge-wpte-card__cta {
  opacity: 1;
  max-height: 160px;
  transform: translateY(0);
}

.ge-wpte-destinations .ge-wpte-card:hover .ge-wpte-card__body {
  transform: translateY(-4px);
}


/* Smaller destination cards should not show the blurred same-image fill.
   Use clean cover images instead to avoid the dark blurred band under the photo. */
.ge-wpte-destinations .ge-span-15 .ge-wpte-card__image-backdrop,
.ge-wpte-destinations .ge-span-18 .ge-wpte-card__image-backdrop,
.ge-wpte-destinations .ge-span-20 .ge-wpte-card__image-backdrop {
  display: none;
}

.ge-wpte-destinations .ge-span-15 .ge-wpte-card__image,
.ge-wpte-destinations .ge-span-18 .ge-wpte-card__image,
.ge-wpte-destinations .ge-span-20 .ge-wpte-card__image {
  object-fit: cover;
}

.ge-wpte-destinations .ge-span-60 {
  min-height: 430px;
}


.ge-wpte-destinations .ge-wpte-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ge-wpte-destinations .ge-wpte-card__overlay {
  opacity: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.00) 8%, rgba(15,9,4,0.08) 62%, rgba(15,9,4,0.28) 100%);
}

.ge-wpte-destinations .ge-wpte-card:hover .ge-wpte-card__overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 8%, rgba(36,14,4,0.16) 60%, rgba(36,14,4,0.52) 100%);
}

.ge-wpte-destinations .ge-wpte-card__title,
.ge-wpte-destinations .ge-wpte-card__title a,
.ge-wpte-destinations .ge-wpte-card__count,
.ge-wpte-destinations .ge-wpte-card__cta {
  text-shadow: 0 2px 12px rgba(0,0,0,.30);
}

/* =========================
   TRIP TYPES — PREMIUM EDITORIAL CARDS
   ========================= */
.ge-wpte-trip-types .ge-wpte-card {
  display: flex;
  flex-direction: column;
  background: var(--ge-cream);
  border: 1px solid rgba(191,90,20,.14);
  box-shadow: 0 14px 40px rgba(45,26,10,.08);
}

.ge-wpte-trip-types .ge-wpte-card:hover {
  border-color: rgba(191,90,20,.35);
  box-shadow: 0 24px 58px rgba(82,40,9,.14);
}

.ge-wpte-trip-types .ge-wpte-card__media {
  height: 250px;
  flex: 0 0 auto;
  overflow: hidden;
}

.ge-wpte-trip-types .ge-wpte-card__count {
  position: absolute;
  z-index: 3;
  top: 18px;
  inset-inline-end: 18px;
  background: rgba(143,63,13,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ge-wpte-trip-types .ge-wpte-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
}

.ge-wpte-trip-types .ge-wpte-card__title,
.ge-wpte-trip-types .ge-wpte-card__title a {
  color: var(--ge-text);
}

.ge-wpte-trip-types .ge-wpte-card__description {
  color: var(--ge-muted);
}

.ge-wpte-trip-types .ge-wpte-card__cta {
  margin-top: auto;
  padding-top: 3px;
}

/* =========================
   ACTIVITIES — COMPACT EXPERIENCE CARDS
   ========================= */
.ge-wpte-activities .ge-wpte-card {
  min-height: 300px;
  background: #2b1709;
  box-shadow: 0 12px 34px rgba(35,20,8,.10);
}

.ge-wpte-activities .ge-wpte-card__media {
  position: absolute;
  inset: 0;
}

.ge-wpte-activities .ge-wpte-card__body {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 9px;
  padding: 22px;
  color: #fff;
}

.ge-wpte-activities .ge-wpte-card__count {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  background: rgba(191,90,20,.91);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ge-wpte-activities .ge-wpte-card__title,
.ge-wpte-activities .ge-wpte-card__title a {
  color: #fff;
}

.ge-wpte-activities .ge-wpte-card__description {
  color: rgba(255,255,255,.92);
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, max-height .4s ease;
}

.ge-wpte-activities .ge-wpte-card__cta {
  color: #fff;
  opacity: .92;
}

.ge-wpte-activities .ge-wpte-card:hover .ge-wpte-card__description {
  opacity: 1;
  max-height: 150px;
  transform: translateY(0);
}

.ge-wpte-editor-note {
  padding: 18px 20px;
  border: 1px dashed #bf5a14;
  border-radius: 12px;
  background: #fff8ee;
  color: #5c2b09;
  font-size: 14px;
}

/* Tablet: preserve responsive behavior and equalize cards by the selected tablet column count. */
@media (max-width: 1024px) {
  .ge-wpte-card {
    grid-column: span var(--ge-tablet-span, 30) !important;
  }

  .ge-wpte-grid.ge-tablet-cols-2 > .ge-wpte-card:last-child:nth-child(odd) {
    grid-column: span 60 !important;
  }

  .ge-wpte-grid.ge-tablet-cols-3 > .ge-wpte-card:last-child:nth-child(3n+1) {
    grid-column: span 60 !important;
  }
  .ge-wpte-grid.ge-tablet-cols-3 > .ge-wpte-card:nth-last-child(2):nth-child(3n+1),
  .ge-wpte-grid.ge-tablet-cols-3 > .ge-wpte-card:last-child:nth-child(3n+2) {
    grid-column: span 30 !important;
  }

  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:last-child:nth-child(4n+1) {
    grid-column: span 60 !important;
  }
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:nth-last-child(2):nth-child(4n+1),
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:last-child:nth-child(4n+2) {
    grid-column: span 30 !important;
  }
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:nth-last-child(3):nth-child(4n+1),
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:nth-last-child(2):nth-child(4n+2),
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:last-child:nth-child(4n+3) {
    grid-column: span 20 !important;
  }

  .ge-wpte-destinations .ge-wpte-card__description,
  .ge-wpte-destinations .ge-wpte-card__cta,
  .ge-wpte-activities .ge-wpte-card__description {
    opacity: 1;
    max-height: 150px;
    transform: none;
  }
}

/* Mobile: description is intentionally visible and clamped to the mobile line setting (default 2). */
@media (max-width: 767px) {
  .ge-wpte-card {
    grid-column: span var(--ge-mobile-span, 60) !important;
  }

  .ge-wpte-grid.ge-mobile-cols-2 > .ge-wpte-card:last-child:nth-child(odd) {
    grid-column: span 60 !important;
  }

  .ge-wpte-destinations .ge-wpte-card__body,
  .ge-wpte-activities .ge-wpte-card__body {
    padding: 20px;
  }

  .ge-wpte-card__title {
    font-size: clamp(21px, 7vw, 30px);
  }

  .ge-wpte-destinations .ge-wpte-card__description,
  .ge-wpte-destinations .ge-wpte-card__cta,
  .ge-wpte-activities .ge-wpte-card__description {
    opacity: 1;
    max-height: 120px;
    transform: none;
  }

  .ge-wpte-trip-types .ge-wpte-card__body {
    padding: 20px;
  }
}

@media (hover: none) {
  .ge-wpte-destinations .ge-wpte-card__description,
  .ge-wpte-destinations .ge-wpte-card__cta,
  .ge-wpte-activities .ge-wpte-card__description {
    opacity: 1;
    max-height: 150px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ge-wpte-showcase *,
  .ge-wpte-showcase *::before,
  .ge-wpte-showcase *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


/* =========================
   UNIFIED GATE EAST WISHLIST HEART
   ========================= */
.ge-wpte-card__media { isolation: isolate; }
.ge-wpte-wishlist {
  --ge-wpte-wl-size: 42px;
  --ge-wpte-wl-icon: 20px;
  --ge-wpte-wl-top: 16px;
  --ge-wpte-wl-side: 16px;
  --ge-wpte-wl-color: #13213e;
  --ge-wpte-wl-hover: #bf5a14;
  --ge-wpte-wl-active: #bf5a14;
  --ge-wpte-wl-bg: rgba(255,255,255,.94);
  --ge-wpte-wl-hover-bg: #fff8ee;
  --ge-wpte-wl-active-bg: #fff;
  position: absolute !important;
  z-index: 8;
  top: var(--ge-wpte-wl-top) !important;
  width: var(--ge-wpte-wl-size) !important;
  height: var(--ge-wpte-wl-size) !important;
  min-width: var(--ge-wpte-wl-size) !important;
  min-height: var(--ge-wpte-wl-size) !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(19,33,62,.10) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--ge-wpte-wl-bg) !important;
  color: var(--ge-wpte-wl-color) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.14) !important;
  cursor: pointer;
  line-height: 1 !important;
  appearance: none;
  -webkit-appearance: none;
  transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.ge-wpte-wishlist--start { inset-inline-start: var(--ge-wpte-wl-side) !important; inset-inline-end: auto !important; }
.ge-wpte-wishlist--end { inset-inline-end: var(--ge-wpte-wl-side) !important; inset-inline-start: auto !important; }
.ge-wpte-wishlist:hover {
  color: var(--ge-wpte-wl-hover) !important;
  background: var(--ge-wpte-wl-hover-bg) !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 11px 30px rgba(0,0,0,.18) !important;
}
.ge-wpte-wishlist.active {
  color: var(--ge-wpte-wl-active) !important;
  background: var(--ge-wpte-wl-active-bg) !important;
}
.ge-wpte-wishlist.is-busy { opacity: .62; pointer-events: none; }
.ge-wpte-wishlist__normal,
.ge-wpte-wishlist__active { display: inline-flex; align-items: center; justify-content: center; }
.ge-wpte-wishlist__active { display: none; }
.ge-wpte-wishlist.active .ge-wpte-wishlist__normal { display: none; }
.ge-wpte-wishlist.active .ge-wpte-wishlist__active { display: inline-flex; }
.ge-wpte-wishlist svg,
.ge-wpte-wishlist i {
  width: var(--ge-wpte-wl-icon) !important;
  height: var(--ge-wpte-wl-icon) !important;
  font-size: var(--ge-wpte-wl-icon) !important;
  line-height: 1 !important;
  display: block;
}
.ge-wpte-wishlist svg { fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
  .ge-wpte-wishlist { transition: none !important; }
}

/* =========================
   v1.0.6 — RESPONSIVE WIDTH GUARD
   Prevent any card/image from exceeding the Elementor column on tablet/mobile,
   in both LTR and RTL directions.
   ========================= */
.ge-wpte-showcase,
.ge-wpte-grid,
.ge-wpte-card,
.ge-wpte-card__media,
.ge-wpte-card__image-link,
.ge-wpte-card__body,
.ge-wpte-card__image {
  min-inline-size: 0;
  max-inline-size: 100%;
}

.ge-wpte-showcase,
.ge-wpte-grid {
  width: 100%;
  max-width: 100%;
}

.ge-wpte-card {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

.ge-wpte-card__image,
.ge-wpte-card__image-link {
  width: 100%;
  max-width: 100%;
}

.ge-wpte-card__title,
.ge-wpte-card__title a,
.ge-wpte-card__description,
.ge-wpte-destination-footer__title,
.ge-wpte-destination-footer__text {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 1024px) {
  .ge-wpte-showcase {
    overflow-x: clip;
  }

  .ge-wpte-grid {
    min-width: 0 !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
  }

  .ge-wpte-grid > .ge-wpte-card {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .ge-wpte-card__media,
  .ge-wpte-card__image-link,
  .ge-wpte-card__image {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Touch reveal: descriptions are closed by default on tablet/mobile. */
  .ge-wpte-destinations .ge-wpte-card:not(.is-touch-open) .ge-wpte-card__description,
  .ge-wpte-destinations .ge-wpte-card:not(.is-touch-open) .ge-wpte-card__cta,
  .ge-wpte-activities .ge-wpte-card:not(.is-touch-open) .ge-wpte-card__description {
    opacity: 0 !important;
    max-height: 0 !important;
    transform: translateY(10px) !important;
    pointer-events: none !important;
  }

  .ge-wpte-destinations .ge-wpte-card.is-touch-open .ge-wpte-card__description,
  .ge-wpte-destinations .ge-wpte-card.is-touch-open .ge-wpte-card__cta,
  .ge-wpte-activities .ge-wpte-card.is-touch-open .ge-wpte-card__description {
    opacity: 1 !important;
    max-height: 170px !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .ge-wpte-destinations .ge-wpte-card.is-touch-open .ge-wpte-card__body,
  .ge-wpte-activities .ge-wpte-card.is-touch-open .ge-wpte-card__body {
    transform: translateY(-4px);
  }

  .ge-wpte-destinations .ge-wpte-card.is-touch-open .ge-wpte-card__overlay,
  .ge-wpte-activities .ge-wpte-card.is-touch-open .ge-wpte-card__overlay {
    opacity: 1;
  }
}

/* =========================
   DESTINATIONS — FULL WIDTH SEO CTA
   ========================= */
.ge-wpte-destination-footer {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 24px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: #fffaf2;
  border: 1px solid rgba(191,90,20,.16);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(35,20,8,.07);
}

.ge-wpte-destination-footer__copy {
  min-width: 0;
  flex: 1 1 auto;
}

.ge-wpte-destination-footer__title {
  margin: 0 0 6px;
  color: #13213e;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.2;
  font-weight: 800;
}

.ge-wpte-destination-footer__text {
  margin: 0;
  max-width: 900px;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.65;
}

.ge-wpte-destination-footer__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #bf5a14;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, gap .25s ease;
}

.ge-wpte-destination-footer__button:hover,
.ge-wpte-destination-footer__button:focus-visible {
  background: #8f3f0d;
  color: #fff;
  transform: translateY(-2px);
  gap: 12px;
}

.ge-wpte-destination-footer__button-arrow {
  display: inline-block;
  line-height: 1;
  transition: transform .25s ease;
}

.ge-lang-ar .ge-wpte-destination-footer__button-arrow {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .ge-wpte-destination-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }

  .ge-wpte-destination-footer__button {
    width: 100%;
    white-space: normal;
  }
}

/* v1.0.6 structural responsive grid fix.
   The desktop mosaic uses a 60-track grid for 40/30/30 precision. On narrow
   screens 59 column gaps can exceed the viewport, so tablet/mobile switch to
   a compact 12-track grid while preserving 1/2/3/4-column controls. */
@media (max-width: 1024px) {
  .ge-wpte-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .ge-wpte-grid.ge-tablet-cols-1 > .ge-wpte-card { grid-column: span 12 !important; }
  .ge-wpte-grid.ge-tablet-cols-2 > .ge-wpte-card { grid-column: span 6 !important; }
  .ge-wpte-grid.ge-tablet-cols-3 > .ge-wpte-card { grid-column: span 4 !important; }
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card { grid-column: span 3 !important; }

  .ge-wpte-grid.ge-tablet-cols-2 > .ge-wpte-card:last-child:nth-child(odd) {
    grid-column: span 12 !important;
  }

  .ge-wpte-grid.ge-tablet-cols-3 > .ge-wpte-card:last-child:nth-child(3n+1) {
    grid-column: span 12 !important;
  }
  .ge-wpte-grid.ge-tablet-cols-3 > .ge-wpte-card:nth-last-child(2):nth-child(3n+1),
  .ge-wpte-grid.ge-tablet-cols-3 > .ge-wpte-card:last-child:nth-child(3n+2) {
    grid-column: span 6 !important;
  }

  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:last-child:nth-child(4n+1) {
    grid-column: span 12 !important;
  }
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:nth-last-child(2):nth-child(4n+1),
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:last-child:nth-child(4n+2) {
    grid-column: span 6 !important;
  }
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:nth-last-child(3):nth-child(4n+1),
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:nth-last-child(2):nth-child(4n+2),
  .ge-wpte-grid.ge-tablet-cols-4 > .ge-wpte-card:last-child:nth-child(4n+3) {
    grid-column: span 4 !important;
  }
}

@media (max-width: 767px) {
  .ge-wpte-grid.ge-mobile-cols-1 > .ge-wpte-card { grid-column: span 12 !important; }
  .ge-wpte-grid.ge-mobile-cols-2 > .ge-wpte-card { grid-column: span 6 !important; }
  .ge-wpte-grid.ge-mobile-cols-2 > .ge-wpte-card:last-child:nth-child(odd) {
    grid-column: span 12 !important;
  }
}

/* =========================
   v1.0.7 — DESTINATIONS SECTION SHELL
   Header + Cards + Footer CTA live in one responsive widget container.
   ========================= */
.ge-wpte-showcase__inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
}

.ge-wpte-destination-header {
  --ge-header-accent: #d69a43;
  --ge-header-decor-width: 42px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 28px;
  text-align: center;
  position: relative;
}

.ge-wpte-destination-header__inner {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 1500px;
  min-width: 0;
  margin-inline: auto;
  padding: 34px 48px 36px;
  border: 1px solid rgba(191, 90, 20, .10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -18%, rgba(214, 154, 67, .13), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,250,245,.28));
  box-shadow: 0 18px 50px rgba(38, 24, 13, .055);
  overflow: hidden;
}

.ge-wpte-destination-header__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(460px, 62vw);
  aspect-ratio: 1;
  inset-block-start: -72%;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,154,67,.10), rgba(214,154,67,0) 70%);
  pointer-events: none;
}

.ge-wpte-destination-header__kicker {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ge-orange);
  font-family: "Caveat", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25em;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.ge-wpte-destination-header__kicker::before,
.ge-wpte-destination-header__kicker::after {
  content: "";
  display: none;
  flex: 0 0 var(--ge-header-decor-width);
  width: var(--ge-header-decor-width);
  height: 1px;
  opacity: .78;
  background: linear-gradient(90deg, transparent, var(--ge-header-accent));
}

.ge-wpte-destination-header__kicker::after {
  transform: scaleX(-1);
}

.ge-dest-header-decor-yes .ge-wpte-destination-header__kicker::before,
.ge-dest-header-decor-yes .ge-wpte-destination-header__kicker::after {
  display: block;
}

.ge-wpte-destination-header__title {
  max-width: 1260px;
  margin: 0 auto 22px;
  color: var(--ge-orange);
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.2px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.ge-wpte-destination-header__text {
  max-width: 1260px;
  margin: 0 auto;
  color: var(--ge-text);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  font-weight: 400;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.ge-lang-ar .ge-wpte-destination-header__title,
.ge-lang-ar .ge-wpte-destination-header__kicker {
  letter-spacing: 0;
}

.ge-lang-ar .ge-wpte-destination-header__inner::before {
  transform: translateX(50%);
}

@media (max-width: 1024px) {
  .ge-wpte-destination-header {
    --ge-header-decor-width: 34px;
    margin-bottom: 22px;
  }

  .ge-wpte-destination-header__inner {
    max-width: 100%;
    padding: 28px 30px 30px;
    border-radius: 24px;
  }

  .ge-wpte-destination-header__kicker {
    font-size: 22px;
    gap: 10px;
  }

  .ge-wpte-destination-header__title {
    max-width: 900px;
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 18px;
  }

  .ge-wpte-destination-header__text {
    max-width: 900px;
    font-size: 17px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .ge-wpte-destination-header {
    --ge-header-decor-width: 24px;
    margin-bottom: 18px;
  }

  .ge-wpte-destination-header__inner {
    padding: 22px 18px 24px;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(38, 24, 13, .045);
  }

  .ge-wpte-destination-header__kicker {
    margin-bottom: 10px;
    gap: 8px;
    font-size: 20px;
  }

  .ge-wpte-destination-header__title {
    margin-bottom: 14px;
    font-size: clamp(29px, 8.5vw, 34px);
    line-height: 1.12;
    letter-spacing: -.5px;
  }

  .ge-wpte-destination-header__text {
    font-size: 15px;
    line-height: 1.58;
  }

  .ge-wpte-destination-footer__copy {
    width: 100%;
  }
}



/* v1.0.9 — Accessibility: View All Destinations button contrast + keyboard focus */
.ge-wpte-destination-footer__button{
  background:#B24B00!important;
  color:#FFFFFF!important;
  border-color:#B24B00!important;
}
.ge-wpte-destination-footer__button,
.ge-wpte-destination-footer__button span,
.ge-wpte-destination-footer__button svg{
  color:#FFFFFF!important;
}
.ge-wpte-destination-footer__button svg,
.ge-wpte-destination-footer__button svg *{
  fill:currentColor!important;
  stroke:currentColor!important;
}
.ge-wpte-destination-footer__button:hover,
.ge-wpte-destination-footer__button:focus-visible{
  background:#963F00!important;
  border-color:#963F00!important;
  color:#FFFFFF!important;
}
.ge-wpte-destination-footer__button:focus-visible{
  outline:3px solid #0B5FFF!important;
  outline-offset:3px!important;
  box-shadow:none!important;
}

/* =========================
   v1.0.4 — FLUID RESPONSIVE DESTINATION HEADER
   Experimental, reversible from Elementor with "Fluid Responsive Header".
   A more specific widget selector intentionally outranks legacy saved
   typography/layout values while fluid mode is ON.
   ========================= */
.elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes {
  --ge-dest-fluid-title-width: 80%;
  --ge-dest-fluid-text-width: 90%;
  --ge-dest-fluid-kicker-size: clamp(18px, calc(14px + .55vw), 28px);
  --ge-dest-fluid-title-min: 28px;
  --ge-dest-fluid-title-max: 64px;
  --ge-dest-fluid-text-min: 14px;
  --ge-dest-fluid-text-max: 19px;
  --ge-dest-fluid-title-size: clamp(var(--ge-dest-fluid-title-min), calc(18px + 1.6vw), var(--ge-dest-fluid-title-max));
  --ge-dest-fluid-text-size: clamp(var(--ge-dest-fluid-text-min), calc(11.5px + .35vw), var(--ge-dest-fluid-text-max));
  --ge-dest-fluid-pad-y: clamp(22px, 2vw, 42px);
  --ge-dest-fluid-pad-x: clamp(18px, 2.5vw, 52px);
  --ge-dest-fluid-kicker-gap: clamp(10px, .72vw, 16px);
  --ge-dest-fluid-text-gap: clamp(14px, 1.12vw, 24px);
  --ge-dest-fluid-bottom-gap: clamp(18px, 1.5vw, 32px);
  --ge-dest-fluid-radius: clamp(20px, 1.5vw, 30px);
  --ge-dest-fluid-line-width: clamp(24px, 2.15vw, 48px);
}

.elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes .ge-wpte-destination-header {
  --ge-header-decor-width: var(--ge-dest-fluid-line-width);
  width: 100%;
  max-width: 100%;
  margin-bottom: var(--ge-dest-fluid-bottom-gap);
}

.elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes .ge-wpte-destination-header__inner {
  width: 100%;
  max-width: none;
  padding: var(--ge-dest-fluid-pad-y) var(--ge-dest-fluid-pad-x);
  border-radius: var(--ge-dest-fluid-radius);
}

.elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes .ge-wpte-destination-header__kicker {
  margin-bottom: var(--ge-dest-fluid-kicker-gap);
  font-size: var(--ge-dest-fluid-kicker-size);
}

.elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes .ge-wpte-destination-header__title {
  width: var(--ge-dest-fluid-title-width);
  max-width: none;
  margin-inline: auto;
  margin-bottom: var(--ge-dest-fluid-text-gap);
  font-size: var(--ge-dest-fluid-title-size);
  line-height: 1.08;
}

.elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes .ge-wpte-destination-header__text {
  width: var(--ge-dest-fluid-text-width);
  max-width: none;
  margin-inline: auto;
  font-size: var(--ge-dest-fluid-text-size);
  line-height: 1.62;
}

/* Description is centered on desktop, tablet and mobile for every language. */
.elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes .ge-wpte-destination-header__text {
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes {
    --ge-dest-fluid-title-width: 100%;
    --ge-dest-fluid-text-width: 96%;
  }
}

@media (max-width: 767px) {
  .elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes {
    --ge-dest-fluid-title-width: 97%;
    --ge-dest-fluid-text-width: 96%;
    --ge-dest-fluid-pad-y: clamp(20px, 6vw, 26px);
    /* Mobile header uses the full available width with no horizontal inner padding. */
    --ge-dest-fluid-pad-x: 0px;
    --ge-dest-fluid-kicker-gap: clamp(9px, 2.8vw, 12px);
    --ge-dest-fluid-text-gap: clamp(13px, 4vw, 17px);
    --ge-dest-fluid-bottom-gap: clamp(16px, 5vw, 20px);
    --ge-dest-fluid-radius: clamp(18px, 5.5vw, 22px);
    --ge-dest-fluid-line-width: clamp(20px, 7vw, 28px);
  }

  .elementor-element.elementor-widget-gate-east-wpte-destinations.ge-dest-fluid-header-yes .ge-wpte-destination-header__title {
    width: var(--ge-dest-fluid-title-width);
    margin-inline: auto;
    text-align: center;
  }
}

/* v1.0.9 — final fluid header balance:
   heading 80% desktop / 100% tablet / 100% mobile;
   description 90% / 96% / 96%; title and description centered. */


/* v1.0.10 — mobile heading width refined to 98%; kicker default restored to Gate East orange. */

/* v1.0.11 — saved Elementor mobile defaults promoted to plugin defaults: heading width 97%, description width 96%, description side padding 10px, mobile heading typography 22px. Card title hover changed to light gray #bababa. */
