/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/all-hotels/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* All Hotels — filterable, paginated grid of stakeholder hotels with a
   BookDirect rate-check modal. The card styling intentionally mirrors the
   blog-feed (Live Like a Local) cards: image up top, navy panel beneath. */
/* 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;
}
.all-hotels {
  position: relative;
  color: #fff;
  background: #151d44;
}
.all-hotels__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.all-hotels__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.all-hotels__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(21, 29, 68, 0.55);
  pointer-events: none;
}
.all-hotels__inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 110px) clamp(20px, 4vw, 80px) clamp(48px, 6vw, 96px);
}
.all-hotels:has(.all-hotels__booking) .all-hotels__inner {
  padding-top: 0;
}
.all-hotels__title {
  font-family: "Tenor Sans", sans-serif;
  font-size: clamp(36px, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 1050px;
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  color: #fff;
}
.all-hotels__description {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
  text-align: left;
  max-width: 1050px;
  margin: 0 auto clamp(28px, 3.5vw, 48px);
  color: rgba(255, 255, 255, 0.92);
}
.all-hotels {
  /* ---------- Filters ---------- */
}
.all-hotels__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  margin: 0 0 clamp(36px, 4vw, 56px);
}
.all-hotels__filter {
  position: relative;
}
.all-hotels__select {
  position: relative;
}
.all-hotels__select[open] > summary {
  background: rgba(255, 255, 255, 0.12);
}
.all-hotels__select[open] .all-hotels__select-caret::before {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.all-hotels__select > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.all-hotels__select > summary::-webkit-details-marker {
  display: none;
}
.all-hotels__select > summary:hover {
  background: rgba(255, 255, 255, 0.12);
}
.all-hotels__select-label {
  display: inline-block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.all-hotels__select-caret {
  display: inline-flex;
  width: 12px;
  height: 12px;
  align-items: center;
  justify-content: center;
}
.all-hotels__select-caret::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.all-hotels__select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
  padding: 8px 0;
  background: #1a2661;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  z-index: 30;
}
.all-hotels__select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}
.all-hotels__select-option:hover {
  background: rgba(255, 255, 255, 0.08);
}
.all-hotels__select-option input {
  accent-color: #fff;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.all-hotels__apply {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.all-hotels__apply:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.all-hotels__apply:focus-visible {
  outline: 3px solid #f90;
  outline-offset: 3px;
}
.all-hotels__apply-arrow {
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
}
.all-hotels__clear {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.all-hotels__clear:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
.all-hotels__clear:focus-visible {
  outline: 3px solid #f90;
  outline-offset: 3px;
}
.all-hotels {
  /* ---------- Grid + Cards ---------- */
}
.all-hotels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin: 0 0 clamp(36px, 4vw, 56px);
}
.all-hotels__grid[hidden] {
  display: none;
}
.all-hotels__card {
  display: flex;
  flex-direction: column;
  background: #1a2661;
  color: #fff;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.4s ease;
}
.all-hotels__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}
.all-hotels__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.all-hotels__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}
.all-hotels__card:hover .all-hotels__card-image img {
  transform: scale(1.04);
}
.all-hotels__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(16px, 1.6vw, 22px) clamp(16px, 1.6vw, 22px) clamp(20px, 1.8vw, 26px);
}
.all-hotels__card-name {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 27px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.all-hotels__card-address {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
.all-hotels__card-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: 6px;
}
.all-hotels__card-link {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.95);
  cursor: pointer;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.all-hotels__card-link:hover {
  opacity: 0.85;
  border-bottom-color: #f90;
}
.all-hotels__empty {
  font-family: "Work Sans", sans-serif;
  font-size: 17px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  padding: 32px 0;
}
.all-hotels {
  /* ---------- Pagination ---------- */
}
.all-hotels__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  font-family: "Work Sans", sans-serif;
}
.all-hotels__pagination[hidden] {
  display: none;
}
.all-hotels__page-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.all-hotels__page-arrow:hover {
  transform: translateY(-1px);
}
.all-hotels__page-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.all-hotels__page-list {
  display: inline-flex;
  gap: clamp(8px, 1vw, 16px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.all-hotels__page-list button {
  background: transparent;
  border: 0;
  padding: 4px 6px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
.all-hotels__page-list button:hover {
  opacity: 0.8;
}
.all-hotels__page-list button[aria-current=page] {
  font-weight: 600;
  border-bottom: 2px solid #fff;
}
.all-hotels__page-list .all-hotels__page-ellipsis {
  color: #fff;
  padding: 4px 2px;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1;
}
.all-hotels {
  /* ---------- Responsive grid ---------- */
}
@media (max-width: 1023px) {
  .all-hotels__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .all-hotels__grid {
    grid-template-columns: 1fr;
  }
  .all-hotels__filters {
    flex-direction: column;
    align-items: stretch;
  }
  .all-hotels__filters .all-hotels__filter {
    justify-content: center;
    text-align: center;
  }
  .all-hotels__filters .all-hotels__apply,
  .all-hotels__filters .all-hotels__clear {
    align-self: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  .all-hotels__select-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}
.all-hotels {
  /* Booking section — mirrors the hotels block top strip; renders above
     the filters/grid when toggled on. */
}
.all-hotels__booking {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: clamp(-90px, -4.5vw, -45px) auto clamp(40px, 4vw, 80px);
  padding: 0 16px;
}
.all-hotels__booking-embed {
  background: #0ff;
  padding: 32px 40px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.all-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);
}
.all-hotels__booking-text {
  max-width: 430px;
  flex: 1 1 260px;
}
.all-hotels__booking-title {
  font-family: "Tenor Sans", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #1a2661;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}
.all-hotels__booking-description {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #1a2661;
  margin: 12px 0 0;
  line-height: 1.4;
}
.all-hotels__booking-widget-wrap {
  flex: 1 1 340px;
  max-width: 560px;
  min-width: 0;
  /* BookDirect (widget 2070): cyan panel + navy type, mirrors hotels block. */
  --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;
}
.all-hotels__booking-widget-wrap.booking-cta #jrs-widget-2070 {
  background: transparent;
  background-size: unset;
  background-position-y: unset;
}
.all-hotels__booking-widget-wrap.booking-cta #jrs-title-2070 {
  display: none !important;
}
.all-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;
}
.all-hotels__booking-widget-wrap.booking-cta #jrs-calendar-start-2070, .all-hotels__booking-widget-wrap.booking-cta #jrs-calendar-end-2070 {
  flex: 1 1 160px;
  min-width: 140px;
  margin: 0 !important;
}
.all-hotels__booking-widget-wrap.booking-cta #jrs-submit-2070 {
  flex: 0 0 auto;
  margin: 0 !important;
  margin-left: auto !important;
  text-align: right;
}
.all-hotels__booking-widget-wrap.booking-cta .jrs-datepicker-2070 {
  border-bottom-width: 2px;
}
.all-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;
}
.all-hotels__booking-widget-wrap.booking-cta #jrs-button-2070:hover, .all-hotels__booking-widget-wrap.booking-cta #jrs-button-2070:focus, .all-hotels__booking-widget-wrap.booking-cta #jrs-button-2070:active {
  background-color: #1a2661;
  color: #fff;
  opacity: 0.92;
}
.all-hotels__booking-widget-wrap {
  /* Kraken Stays date+guests search */
}
.all-hotels__booking-widget-wrap .ks-book-your-stay-search {
  width: 100%;
}
.all-hotels__booking-widget-wrap .ks-book-your-stay-search__fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
}
.all-hotels__booking-widget-wrap .ks-book-your-stay-search__field {
  display: flex;
  flex-direction: column;
  flex: 1 1 160px;
  min-width: 140px;
  border-bottom: 2px solid #1a2661;
  color: #1a2661;
  font-family: "Work Sans", sans-serif;
}
.all-hotels__booking-widget-wrap .ks-book-your-stay-search__field > span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.all-hotels__booking-widget-wrap .ks-book-your-stay-search__field input,
.all-hotels__booking-widget-wrap .ks-book-your-stay-search__field select {
  background: transparent;
  border: none;
  color: #1a2661;
  font-family: inherit;
  font-size: 16px;
  padding: 6px 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.all-hotels__booking-widget-wrap .ks-search-btn {
  flex: 0 0 auto;
  margin-left: auto;
  background: #1a2661;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0 28px;
  line-height: 42px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.all-hotels__booking-widget-wrap .ks-search-btn:hover {
  opacity: 0.92;
}
.all-hotels__booking-widget-wrap .ks-search-btn.ks-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.all-hotels__booking.is-motion-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.all-hotels__booking.is-motion-init.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Optional accent: filter pills + Apply Filters + card-link underline +
   pagination active page. Color from per-block --accent-color custom
   property on the wrapper. */
.all-hotels.all-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%);
}
.all-hotels.all-hotels--has-accent .all-hotels__select > summary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--accent-ink);
}
.all-hotels.all-hotels--has-accent .all-hotels__select > summary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--accent-ink);
}
.all-hotels.all-hotels--has-accent .all-hotels__select[open] > summary {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--accent-ink);
}
.all-hotels.all-hotels--has-accent .all-hotels__apply {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--accent-ink);
}
.all-hotels.all-hotels--has-accent .all-hotels__apply:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--accent-ink);
}
.all-hotels.all-hotels--has-accent .all-hotels__apply:focus-visible {
  outline-color: var(--accent-color);
}
.all-hotels.all-hotels--has-accent .all-hotels__clear {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.all-hotels.all-hotels--has-accent .all-hotels__clear:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--accent-ink);
}
.all-hotels.all-hotels--has-accent .all-hotels__clear:focus-visible {
  outline-color: var(--accent-color);
}
.all-hotels.all-hotels--has-accent .all-hotels__card-link:hover {
  border-bottom-color: var(--accent-color);
}
.all-hotels.all-hotels--has-accent .all-hotels__page-list button[aria-current=page] {
  border-bottom-color: var(--accent-color);
}

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