/*!*****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/hotels/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* Hotels — full-bleed bg, Featured Events–style tabs, carousel, floating booking strip */
/* Shared hotel detail modal styles. Used by featured-hotels, all-hotels,
   and the homepage hotels block via @use 'shared/hotel-modal'. Class
   prefix `sm-hotel-modal` keeps the markup neutral so any block that
   includes shared/hotel-modal.php picks up these styles automatically. */
.sm-hotel-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.5vw, 24px);
  font-family: "Work Sans", sans-serif;
}
.sm-hotel-modal[aria-hidden=false] {
  display: flex;
}
.sm-hotel-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 29, 68, 0.7);
  cursor: pointer;
}
.sm-hotel-modal__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  max-height: calc(100vh - 20px);
  background: #fff;
  color: rgba(36, 31, 28, 0.85);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
}
.sm-hotel-modal__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  flex: 0 0 auto;
  background: #1a1a1a;
  overflow: hidden;
}
.sm-hotel-modal__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sm-hotel-modal__close {
  position: absolute;
  top: clamp(12px, 1.6vw, 20px);
  left: clamp(12px, 1.6vw, 20px);
  z-index: 2;
  width: clamp(34px, 3vw, 44px);
  height: clamp(34px, 3vw, 44px);
  border-radius: 50%;
  border: 0;
  background: #1a2661;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sm-hotel-modal__close svg {
  width: 40%;
  height: auto;
}
.sm-hotel-modal__close:hover {
  background: #151d44;
  transform: scale(1.05);
}
.sm-hotel-modal__close:focus-visible {
  outline: 3px solid #f90;
  outline-offset: 2px;
}
.sm-hotel-modal__body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  -moz-column-gap: clamp(20px, 2.4vw, 36px);
       column-gap: clamp(20px, 2.4vw, 36px);
  row-gap: clamp(16px, 1.8vw, 24px);
  padding: clamp(20px, 2.4vw, 36px) clamp(22px, 2.6vw, 40px) clamp(56px, 4.5vw, 72px);
}
.sm-hotel-modal__main {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.1vw, 16px);
}
.sm-hotel-modal__title {
  font-family: "Tenor Sans", serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #1e1e1e;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0;
  text-wrap: balance;
}
.sm-hotel-modal__address, .sm-hotel-modal__desc {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.5;
  color: rgba(36, 31, 28, 0.65);
  margin: 0;
  max-width: 520px;
}
.sm-hotel-modal__address:empty, .sm-hotel-modal__desc:empty {
  display: none;
}
.sm-hotel-modal__booking {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1vw, 14px);
  margin-top: clamp(4px, 0.5vw, 8px);
}
.sm-hotel-modal__booking[hidden] {
  display: none;
}
.sm-hotel-modal__booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 24px);
  align-items: end;
}
.sm-hotel-modal__booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(12px, 0.85vw, 14px);
  color: #1a2661;
}
.sm-hotel-modal__booking-field span {
  font-weight: 400;
  letter-spacing: 0.01em;
}
.sm-hotel-modal__booking-field input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #1a2661;
  border-radius: 0;
  padding: 6px 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  color: #1a2661;
  line-height: 1.3;
}
.sm-hotel-modal__booking-field input::-moz-placeholder {
  color: rgba(26, 38, 97, 0.5);
}
.sm-hotel-modal__booking-field input::placeholder {
  color: rgba(26, 38, 97, 0.5);
}
.sm-hotel-modal__booking-field input:focus {
  outline: none;
  border-bottom-color: #f90;
}
.sm-hotel-modal__booking-field input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
}
.sm-hotel-modal__booking-field input:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}
.sm-hotel-modal__side {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 20px);
}
.sm-hotel-modal__amenities-title {
  font-family: "Tenor Sans", serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #1e1e1e;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0;
}
.sm-hotel-modal__amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: clamp(14px, 1.6vw, 24px);
       column-gap: clamp(14px, 1.6vw, 24px);
  row-gap: 2px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.8;
  color: rgba(36, 31, 28, 0.65);
}
.sm-hotel-modal__amenities li {
  margin: 0;
  padding: 0;
}
.sm-hotel-modal__amenities:empty {
  display: none;
}
.sm-hotel-modal__actions {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.7vw, 10px);
  align-items: flex-start;
}
.sm-hotel-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(8px, 0.9vw, 12px) clamp(16px, 1.6vw, 22px);
  background: #1a2661;
  color: #fff;
  border: 0;
  border-radius: 50px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sm-hotel-modal__btn svg {
  flex-shrink: 0;
  width: 13px;
  height: auto;
}
.sm-hotel-modal__btn:hover {
  background: #151d44;
  transform: translateY(-1px);
}
.sm-hotel-modal__btn:focus-visible {
  outline: 3px solid #f90;
  outline-offset: 2px;
}
.sm-hotel-modal__btn[hidden] {
  display: none;
}
.sm-hotel-modal__btn--check-rates {
  align-self: end;
  white-space: nowrap;
}
.sm-hotel-modal__nav {
  position: absolute;
  right: clamp(22px, 2.6vw, 40px);
  bottom: clamp(18px, 1.8vw, 28px);
  display: inline-flex;
  gap: clamp(6px, 0.7vw, 10px);
  align-items: center;
}
.sm-hotel-modal__nav-btn {
  width: clamp(30px, 2.6vw, 36px);
  height: clamp(30px, 2.6vw, 36px);
  border-radius: 50%;
  border: 1px solid #1a2661;
  background: transparent;
  color: #1a2661;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.sm-hotel-modal__nav-btn svg {
  width: 38%;
  height: auto;
}
.sm-hotel-modal__nav-btn:hover {
  background: #1a2661;
  color: #fff;
  transform: translateY(-1px);
}
.sm-hotel-modal__nav-btn:focus-visible {
  outline: 2px solid #f90;
  outline-offset: 3px;
}
.sm-hotel-modal__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.sm-hotel-modal__nav-btn:disabled:hover {
  background: transparent;
  color: #1a2661;
  transform: none;
}
@media (max-width: 840px) {
  .sm-hotel-modal__body {
    grid-template-columns: 1fr;
    padding-bottom: clamp(80px, 12vw, 100px);
  }
  .sm-hotel-modal__booking-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .sm-hotel-modal__actions {
    align-items: stretch;
  }
  .sm-hotel-modal__btn {
    justify-content: center;
  }
  .sm-hotel-modal__btn--check-rates {
    align-self: stretch;
  }
  .sm-hotel-modal__nav {
    right: 50%;
    transform: translateX(50%);
    bottom: clamp(20px, 4vw, 32px);
  }
}
/* Lock page scroll while any hotel modal is open. */
body.sm-hotel-modal-open {
  overflow: hidden;
}
/* ─── Kraken-mode booking form (Booking.com via Kraken Stays plugin) ───
 *
 * Mirrors the single-stakeholder .ks-book-your-stay-single layout so users
 * see a consistent rate-card UI whether they enter a hotel via its detail
 * page, the All Hotels Grid, Featured Hotels, or Pick Your Stay.
 */
.sm-hotel-modal__booking--ks {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1vw, 14px);
  margin-top: clamp(4px, 0.5vw, 8px);
}
.sm-hotel-modal__booking--ks[hidden] {
  display: none;
}
.ks-book-your-stay-modal__fields {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) auto;
  -moz-column-gap: clamp(14px, 1.6vw, 24px);
       column-gap: clamp(14px, 1.6vw, 24px);
  row-gap: clamp(10px, 1vw, 14px);
  align-items: end;
}
.ks-book-your-stay-modal__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(12px, 0.85vw, 14px);
  color: #1a2661;
  min-width: 0;
}
.ks-book-your-stay-modal__field span {
  font-weight: 400;
  letter-spacing: 0.01em;
}
.ks-book-your-stay-modal__field input,
.ks-book-your-stay-modal__field select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #1a2661;
  border-radius: 0;
  padding: 6px 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  color: #1a2661;
  line-height: 1.3;
}
.ks-book-your-stay-modal__field input::-moz-placeholder, .ks-book-your-stay-modal__field select::-moz-placeholder {
  color: rgba(26, 38, 97, 0.5);
}
.ks-book-your-stay-modal__field input::placeholder,
.ks-book-your-stay-modal__field select::placeholder {
  color: rgba(26, 38, 97, 0.5);
}
.ks-book-your-stay-modal__field input:focus,
.ks-book-your-stay-modal__field select:focus {
  outline: none;
  border-bottom-color: #f90;
}
.ks-book-your-stay-modal__field select {
  background-image: linear-gradient(45deg, transparent 50%, #1a2661 50%), linear-gradient(135deg, #1a2661 50%, transparent 50%);
  background-position: calc(100% - 14px) 14px, calc(100% - 9px) 14px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 22px;
}
/* Find Rates button — pill style matching .sm-hotel-modal__btn so the
   kraken form looks at home next to BookDirect's submit button. */
.ks-book-your-stay-modal .ks-find-rates-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(8px, 0.9vw, 12px) clamp(16px, 1.6vw, 22px);
  background: #1a2661;
  color: #fff;
  border: 0;
  border-radius: 50px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.4;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ks-book-your-stay-modal .ks-find-rates-btn:hover {
  background: #151d44;
  transform: translateY(-1px);
}
.ks-book-your-stay-modal .ks-find-rates-btn:focus-visible {
  outline: 3px solid #f90;
  outline-offset: 2px;
}
.ks-book-your-stay-modal .ks-find-rates-btn.ks-loading {
  opacity: 0.7;
  cursor: progress;
}
.ks-book-your-stay-modal .ks-find-rates-btn i {
  margin-left: 4px;
}
/* Inline rate cards that hotel-rates.js renders into .ks-book-your-stay-rate.
   Matches the look of the rate cards used on single-stakeholder. */
.sm-hotel-modal .ks-book-your-stay-rate {
  margin-top: clamp(8px, 1vw, 14px);
  display: none;
}
.sm-hotel-modal .ks-book-your-stay-rate:not(:empty) {
  display: block;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rates-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: #1a2661;
  padding: 10px 0;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(26, 38, 97, 0.04);
  border-radius: 6px;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-name {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1a2661;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-occupancy {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  color: rgba(36, 31, 28, 0.6);
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-price {
  font-family: "Tenor Sans", serif;
  font-size: 18px;
  color: #1a2661;
  white-space: nowrap;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-price-suffix {
  font-family: "Work Sans", sans-serif;
  font-size: 11px;
  color: rgba(36, 31, 28, 0.55);
  margin-left: 4px;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-disclaimer {
  font-family: "Work Sans", sans-serif;
  font-size: 11px;
  color: rgba(36, 31, 28, 0.55);
  margin: 4px 0 0;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-starting-at {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  color: #1a2661;
  margin: 0 0 8px;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 22px;
  background: #f90;
  color: #151d44;
  border-radius: 50px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-btn-book:hover {
  transform: translateY(-1px);
}
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-empty,
.sm-hotel-modal .ks-book-your-stay-rate .ks-rate-error {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  color: rgba(36, 31, 28, 0.65);
  margin: 0;
  padding: 8px 0;
}
@media (max-width: 840px) {
  .ks-book-your-stay-modal__fields {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .ks-book-your-stay-modal .ks-find-rates-btn {
    justify-content: center;
  }
}
/* daterangepicker overlay sits inside the modal frame — keep it above the
   modal content but below close/nav controls. */
.sm-hotel-modal .daterangepicker {
  z-index: 10000;
}
.hotels {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  color: #fff;
}
.hotels__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hotels__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotels__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(29, 38, 93, 0.75) 0%, rgba(15, 22, 66, 0.55) 45%, rgba(15, 22, 66, 0.7) 100%);
  pointer-events: none;
}
.hotels__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}
.hotels {
  /* Booking strip removed: tighten carousel column spacing */
}
.hotels.hotels--booking-hidden .hotels__carousel-booking {
  padding-bottom: 0;
}
.hotels__title {
  font-family: "Tenor Sans", sans-serif;
  font-size: clamp(36px, 6vw, 5rem);
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  max-width: 1000px;
  margin: 0 auto 24px;
  color: #fff;
}
.hotels__description {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 40px;
  color: #fff;
}
.hotels__description p {
  margin: 0 0 1em;
}
.hotels__description p:last-child {
  margin-bottom: 0;
}
.hotels__header-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 40px;
}
.hotels__header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1a2661;
  background: #1a2661;
  color: #fff;
  border-radius: 50px;
  padding: 0 28px;
  line-height: 42px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hotels__header-button:hover {
  background: #243878;
  border-color: #243878;
  color: #fff;
}
.hotels {
  /* Match Featured Events category tabs */
}
.hotels__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 16px 24px;
  margin-bottom: 48px;
}
.hotels__tab {
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px 8px;
  opacity: 0.55;
  transition: opacity 0.25s ease, font-size 0.25s ease, transform 0.25s ease;
  position: relative;
}
.hotels__tab:hover {
  opacity: 0.85;
}
.hotels__tab--active {
  font-size: 2rem;
  opacity: 1;
}
.hotels__tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: #f90;
}
.hotels__carousel-booking {
  position: relative;
  margin-top: 8px;
  padding-bottom: 48px;
}
.hotels__slider-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 56px;
}
.hotels__view-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
  padding: 0 16px;
  /* `display: flex` must not beat the HTML hidden attribute (common cascade loss vs resets). */
}
.hotels__view-wrap[hidden] {
  display: none !important;
}
.hotels__view-hotels {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  line-height: 42px;
  border-radius: 50px;
  border: 2px solid #fff;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hotels__view-hotels:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.hotels__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, background 0.25s ease;
  direction: ltr;
}
.hotels__nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.hotels__nav:hover {
  opacity: 0.9;
  background: rgba(26, 38, 97, 0.55);
}
.hotels__nav--prev {
  left: -1%;
}
.hotels__nav--prev::after {
  transform: translate(-40%, -50%) rotate(45deg);
}
.hotels__nav--next {
  right: -1%;
}
.hotels__nav--next::after {
  transform: translate(-60%, -50%) rotate(-135deg);
}
.hotels__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.hotels__swiper {
  overflow: hidden;
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.hotels__slides {
  display: flex;
}
.hotels__card {
  flex-shrink: 0;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  height: auto;
}
.hotels__card-image {
  width: 100%;
  height: 205px;
  overflow: hidden;
  flex-shrink: 0;
}
.hotels__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotels__card-image-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(26, 38, 97, 0.5);
}
.hotels__card-info {
  background: #0ff;
  padding: 20px;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hotels__card-name {
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #1a2661;
  text-transform: uppercase;
}
.hotels__card-address {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: #1a2661;
}
.hotels__card-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
}
.hotels__card-link {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1a2661;
  text-transform: uppercase;
  text-decoration: none;
}
.hotels__card-link:hover {
  text-decoration: underline;
}
.hotels {
  /* Booking strip — overlaps carousel (mockup); not a separate section block */
}
.hotels__booking {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 16px;
}
.hotels__booking-embed {
  background: #0ff;
  padding: 32px 40px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.hotels__booking-inner {
  background-color: #0ff;
  padding: 30px 40px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.hotels__booking-text {
  max-width: 430px;
  flex: 1 1 260px;
}
.hotels__booking-title {
  font-family: "Tenor Sans", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  color: #1a2661;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}
.hotels__booking-description {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #1a2661;
  margin: 12px 0 0;
  line-height: 1.4;
}
.hotels__booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1 1 340px;
  max-width: 560px;
}
.hotels__booking-field {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #1a2661;
}
.hotels__booking-field label {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #1a2661;
}
.hotels__booking-field-full {
  grid-column: span 1;
}
.hotels__booking-field-submit {
  border-bottom: none;
  justify-self: end;
  align-self: end;
  grid-column: span 1;
}
.hotels__booking-input {
  background: transparent;
  border: none;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #1a2661;
  padding: 8px 0;
  outline: none;
}
.hotels__booking-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a2661;
  color: #fff;
  border-radius: 50px;
  padding: 0 28px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 42px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: 8px;
}
.hotels__booking-cta:hover {
  opacity: 0.92;
}
.hotels {
  /* BookDirect (widget 2070): same strip layout; block heading replaces widget title */
}
.hotels__booking-widget-wrap {
  flex: 1 1 340px;
  max-width: 560px;
  min-width: 0;
  margin-bottom: 0;
  padding-right: 0;
  z-index: auto;
  /* Match hotels strip (cyan panel + navy type), not standalone listing --theme5 orange */
  --background-color: #0ff;
  --body: #1a2661;
  --heading-primary: #1a2661;
  --heading-secondary: #1a2661;
  --interactive-primary: #1a2661;
  --interactive-primary-copy: #1a2661;
  --hover-primary: #1a2661;
  --hover-primary-copy: #fff;
  --interactive-secondary: #1a2661;
  --interactive-secondary-copy: #1a2661;
  --hover-secondary: #1a2661;
  --hover-secondary-copy: #fff;
  --button-primary-background: #1a2661;
  --button-primary-background-hover: #1a2661;
  --button-primary-copy: #fff;
  --button-primary-copy-hover: #fff;
  --button-primary-border: #1a2661;
  --button-primary-border-hover: #1a2661;
}
.hotels__booking-widget-wrap.booking-cta #jrs-widget-2070 {
  background: transparent;
  background-size: unset;
  background-position-y: unset;
}
.hotels__booking-widget-wrap.booking-cta #jrs-title-2070 {
  display: none !important;
}
.hotels__booking-widget-wrap.booking-cta #jrs-form-2070 {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  padding: 0 !important;
}
.hotels__booking-widget-wrap.booking-cta #jrs-calendar-start-2070, .hotels__booking-widget-wrap.booking-cta #jrs-calendar-end-2070 {
  flex: 1 1 160px;
  min-width: 140px;
  margin: 0 !important;
}
.hotels__booking-widget-wrap.booking-cta #jrs-submit-2070 {
  flex: 0 0 auto;
  margin: 0 !important;
  margin-left: auto !important;
  text-align: right;
}
.hotels__booking-widget-wrap.booking-cta .jrs-datepicker-2070 {
  border-bottom-width: 2px;
}
.hotels__booking-widget-wrap.booking-cta #jrs-button-2070 {
  border-radius: 50px;
  padding: 0 28px;
  line-height: 42px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
}
.hotels__booking-widget-wrap.booking-cta #jrs-button-2070:hover, .hotels__booking-widget-wrap.booking-cta #jrs-button-2070:focus, .hotels__booking-widget-wrap.booking-cta #jrs-button-2070:active {
  background-color: #1a2661;
  color: #fff;
  opacity: 0.92;
}
.hotels__empty {
  text-align: center;
  opacity: 0.9;
  margin: 24px 0 0;
}
@media (max-width: 1023px) {
  .hotels__inner {
    padding: 48px 20px 100px;
  }
  .hotels__tab {
    font-size: 20px;
  }
  .hotels__tab--active {
    font-size: 28px;
  }
  .hotels__slider-wrap {
    padding: 0 48px;
  }
  .hotels__nav {
    width: 48px;
    height: 48px;
  }
  .hotels__booking-inner {
    padding: 28px 24px;
  }
  .hotels__booking-form {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .hotels__booking-field-full, .hotels__booking-field-submit {
    grid-column: 1;
  }
  .hotels__booking-widget-wrap.booking-cta #jrs-submit-2070 {
    flex-basis: 100%;
    margin-left: 0 !important;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .hotels__card-image {
    height: 200px;
  }
  .hotels__card-info {
    min-height: 150px;
  }
}
/* Alternate view: Featured Events–style slide (image right, text + CTA + arrows left) */
.hotels.hotels--alt-view .hotels__nav--prev,
.hotels.hotels--alt-view .hotels__nav--next {
  display: none;
}
.hotels.hotels--alt-view .hotels__slider-wrap {
  padding: 0;
}
.hotels.hotels--alt-view .hotels__slides {
  align-items: stretch;
}
.hotels.hotels--alt-view .hotels__card--alt {
  max-width: none;
  width: 100%;
  display: block;
  height: auto;
}
.hotels.hotels--alt-view .hotels__card-alt-inner {
  display: flex;
  align-items: stretch;
  gap: clamp(32px, 4vw, 60px);
}
.hotels.hotels--alt-view .hotels__card-alt-left {
  flex: 0 0 auto;
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.hotels.hotels--alt-view .hotels__card-alt-name {
  font-family: "Tenor Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.hotels.hotels--alt-view .hotels__card-alt-desc {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
  max-width: 406px;
  margin: 0;
}
.hotels.hotels--alt-view .hotels__card-alt-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  flex-wrap: wrap;
}
.hotels.hotels--alt-view .hotels__card-alt-cta {
  display: inline-flex;
  align-items: center;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  background: transparent;
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.hotels.hotels--alt-view .hotels__card-alt-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.hotels.hotels--alt-view .hotels__card-alt-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.hotels.hotels--alt-view .hotels__alt-nav-prev,
.hotels.hotels--alt-view .hotels__alt-nav-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.hotels.hotels--alt-view .hotels__alt-nav-prev:hover,
.hotels.hotels--alt-view .hotels__alt-nav-next:hover {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.1);
}
.hotels.hotels--alt-view .hotels__alt-nav-prev::after,
.hotels.hotels--alt-view .hotels__alt-nav-next::after {
  content: "";
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.hotels.hotels--alt-view .hotels__alt-nav-prev::after {
  transform: rotate(45deg);
  margin-left: 3px;
}
.hotels.hotels--alt-view .hotels__alt-nav-next::after {
  transform: rotate(-135deg);
  margin-right: 3px;
}
.hotels.hotels--alt-view .hotels__card-alt-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
}
.hotels.hotels--alt-view .hotels__card-alt-image {
  width: 100%;
  max-width: 1040px;
  height: 460px;
  margin-left: auto;
  flex: 1;
  overflow: hidden;
  display: block;
}
.hotels.hotels--alt-view .hotels__card-alt-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.hotels.hotels--alt-view .hotels__card-alt-image--empty {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  height: 460px;
}
@media (max-width: 1023px) {
  .hotels.hotels--alt-view .hotels__card-alt-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .hotels.hotels--alt-view .hotels__card-alt-left {
    max-width: 100%;
  }
  .hotels.hotels--alt-view .hotels__card-alt-right {
    width: 100%;
  }
  .hotels.hotels--alt-view .hotels__card-alt-image {
    max-width: 100%;
    margin-left: 0;
    height: 320px;
  }
  .hotels.hotels--alt-view .hotels__card-alt-image--empty {
    height: 320px;
  }
  .hotels.hotels--alt-view .hotels__card-alt-footer {
    padding-top: 20px;
  }
}
/* Optional accent: underlines + button fills (carousel nav, booking CTA, BookDirect).
   Color comes from per-block --accent-color custom property set on the wrapper. */
.hotels.hotels--has-accent {
  --accent-hover: color-mix(in srgb, var(--accent-color), #000 6%);
  --accent-ink: color-mix(in srgb, var(--accent-color), #000 50%);
}
.hotels.hotels--has-accent .hotels__tab--active::after {
  background: var(--accent-color);
}
.hotels.hotels--has-accent .hotels__nav {
  border-color: var(--accent-color);
  background: var(--accent-color);
}
.hotels.hotels--has-accent .hotels__nav::after {
  border-left-color: var(--accent-ink);
  border-bottom-color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__nav:hover:not(.swiper-button-disabled) {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.hotels.hotels--has-accent .hotels__nav.swiper-button-disabled {
  opacity: 0.42;
}
.hotels.hotels--has-accent .hotels__booking-cta {
  background: var(--accent-color);
  color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__booking-cta:hover {
  opacity: 1;
  background: var(--accent-hover);
  color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__booking-field {
  border-bottom-color: var(--accent-color);
}
.hotels.hotels--has-accent .hotels__booking-widget-wrap {
  --body: var(--accent-ink);
  --heading-primary: var(--accent-ink);
  --heading-secondary: var(--accent-ink);
  --interactive-primary: var(--accent-color);
  --interactive-primary-copy: var(--accent-ink);
  --hover-primary: var(--accent-hover);
  --hover-primary-copy: var(--accent-ink);
  --interactive-secondary: var(--accent-color);
  --interactive-secondary-copy: var(--accent-ink);
  --hover-secondary: var(--accent-hover);
  --hover-secondary-copy: var(--accent-ink);
  --button-primary-background: var(--accent-color);
  --button-primary-background-hover: var(--accent-hover);
  --button-primary-copy: var(--accent-ink);
  --button-primary-copy-hover: var(--accent-ink);
  --button-primary-border: var(--accent-color);
  --button-primary-border-hover: var(--accent-hover);
}
.hotels.hotels--has-accent .hotels__booking-widget-wrap.booking-cta .jrs-datepicker-2070 {
  border-bottom-color: var(--accent-color);
}
.hotels.hotels--has-accent .hotels__booking-widget-wrap.booking-cta #jrs-button-2070:hover, .hotels.hotels--has-accent .hotels__booking-widget-wrap.booking-cta #jrs-button-2070:focus, .hotels.hotels--has-accent .hotels__booking-widget-wrap.booking-cta #jrs-button-2070:active {
  background-color: var(--accent-hover);
  color: var(--accent-ink);
  opacity: 1;
}
.hotels.hotels--has-accent .hotels__view-hotels {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__view-hotels:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__card-alt-cta {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__card-alt-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__header-button {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__header-button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__alt-nav-prev,
.hotels.hotels--has-accent .hotels__alt-nav-next {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__alt-nav-prev::after,
.hotels.hotels--has-accent .hotels__alt-nav-next::after {
  border-left-color: var(--accent-ink);
  border-bottom-color: var(--accent-ink);
}
.hotels.hotels--has-accent .hotels__alt-nav-prev:hover,
.hotels.hotels--has-accent .hotels__alt-nav-next:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.hotels.is-motion-init .hotels__title,
.hotels.is-motion-init .hotels__description,
.hotels.is-motion-init .hotels__tabs {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}
.hotels.is-motion-init.is-revealed .hotels__title,
.hotels.is-motion-init.is-revealed .hotels__description,
.hotels.is-motion-init.is-revealed .hotels__tabs {
  opacity: 1;
  transform: translateY(0);
}
.hotels.is-motion-init.is-revealed .hotels__description {
  transition-delay: 0.05s;
}
.hotels.is-motion-init.is-revealed .hotels__tabs {
  transition-delay: 0.1s;
}
.hotels__slider-wrap.is-motion-init {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hotels__slider-wrap.is-motion-init.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.hotels__view-wrap.is-motion-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.hotels__view-wrap.is-motion-init.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.hotels__booking.is-motion-init {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hotels__booking.is-motion-init.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/*# sourceMappingURL=style-index.css.map*/