/* ==========================================================================
   Section 15 — Hometown / city list (Elementor id 820d7b4)
   Static section: no scroll trigger, no entrance animation. Link hover only.
   All selectors scoped under .s-hometown.
   ========================================================================== */

.s-hometown {
  padding-top: 50px;
  font-family: var(--f-body);
  font-size: var(--t-body-15);
  font-weight: 300;
  line-height: 1.5em;
  color: var(--c-text);
}

/* The card overhangs the following section by 70px, exactly as on the target. */
.s-hometown__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 100px 30px;
  margin-bottom: -70px;
  min-height: 300px;
  border-radius: 30px;
  background-image: linear-gradient(rgb(255, 255, 255) 0%, var(--c-blue-pale) 100%);
  box-shadow: rgba(0, 0, 0, 0.03) 0 4px 11px 13px;
  position: relative;
  z-index: 100;
}

/* Headings ---------------------------------------------------------------- */

.s-hometown__title {
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15em;
  text-align: center;
  text-transform: capitalize;
  color: var(--c-black);
}

.s-hometown__subwrap {
  margin-top: -10px;
}

.s-hometown__sub {
  font-family: var(--f-body);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  color: var(--c-text);
}

.s-hometown__heart {
  color: #dd2e44;
  font-weight: 400;
}

/* City grid --------------------------------------------------------------- */

.s-hometown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  justify-content: start;
  padding: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 100;
}

.s-hometown__col {
  min-width: 0;
}

/* Elementor renders a second, dropdown copy of each menu that stays hidden
   at every breakpoint on this widget (dropdown-none). */
.s-hometown__nav--dropdown {
  display: none;
}

.s-hometown__list {
  display: block;
  text-align: center;
}

.s-hometown__item {
  display: block;
}

.s-hometown__link {
  display: block;
  padding: 8px 0;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  color: var(--c-green);
  transition: all var(--dur);
}

.s-hometown__link:hover,
.s-hometown__link:focus-visible {
  color: var(--c-green-dark);
}

/* Tablet 768–1024 --------------------------------------------------------- */

@media (max-width: 1024px) {
  .s-hometown {
    padding-top: 47px;
  }

  .s-hometown__card {
    padding: 40px 30px 24px;
    gap: 16px;
  }

  .s-hometown__title {
    font-size: 33px;
  }

  .s-hometown__grid {
    margin-top: 16px;
  }

  .s-hometown__link {
    font-size: 13px;
    line-height: 22px;
    padding: 7px 0;
  }
}

/* Mobile <=767 ------------------------------------------------------------ */

@media (max-width: 767px) {
  .s-hometown {
    padding-top: 47px;
  }

  .s-hometown__container {
    padding-inline: 12px;
  }

  .s-hometown__card {
    padding: 32px 20px 24px;
    gap: 12px;
    border-radius: 30px;
  }

  .s-hometown__title {
    font-size: 22px;
    line-height: 1.3em;
  }

  .s-hometown__sub {
    font-size: 12px;
    line-height: 1.35em;
    letter-spacing: 1px;
  }

  .s-hometown__subwrap {
    margin-top: -4px;
  }

  .s-hometown__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 14px;
  }

  .s-hometown__link {
    font-size: 12px;
    line-height: 16px;
    padding: 2px 0;
    letter-spacing: 0.4px;
  }
}
