@charset "UTF-8";
/**
 * Discover arrow: data URI so the icon works from any compiled CSS.
 * A file path like `url('./img/arrow.svg')` resolves relative to the generated
 * .css: OK for `scss/main.css` → `scss/img/`, broken for `blocks/.../css/*.css`.
 */
/**
 * Breakpoints
 */
/**
 * Functions
 */
/**
 * Mixin core
 */
/**
 * Full-bleed a swiper stage out of its centered container so slides (and the
 * side nav arrows anchored to it) reach the viewport edges on mobile.
 * The intro/content sibling keeps its container padding.
 *
 * $flex-centered: pass true when the target is a flex ITEM inside a
 * flex column with `align-items: center` (e.g. highlights cards-stage): the
 * flex centering already lands the 100vw box at the viewport edges, so the
 * negative inline margin must be omitted to avoid a double shift. For normal
 * block-flow parents (gallery, awards, post_preview) leave it false.
 */
/**
 * Room amenities
 * — Desktop: Figma 66:6641 (title + rules, 3-column stats).
 * — Mobile / tablet: Figma 456:21269 (title only, stats “Label : value”, horizontal rules).
 */
.uh-room-amenities {
  --uh-ra-stat-gap: 20px;
  --uh-ra-cat-gap: 30px;
  --uh-ra-icon-size: 40px;
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities {
    --uh-ra-stat-gap: 15px;
    --uh-ra-icon-size: 35px;
  }
}
.uh-room-amenities__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 60px;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(40px, 8vw, 150px);
  background: var(--bg-alt, #fff);
  border-radius: var(--card-radius, 15px);
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__card {
    gap: 40px;
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 100%;
  }
}
.uh-room-amenities__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.uh-room-amenities__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  width: 100%;
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__title-row {
    gap: 0;
  }
}
.uh-room-amenities__title-line {
  flex: 1 1 auto;
  min-width: 50px;
  height: 1px;
  background: var(--title-color);
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__title-line {
    display: none;
  }
}
.uh-room-amenities__title {
  margin: 0;
  max-width: 830px;
  font-family: var(--highlight-font);
  font-size: var(--title_size);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--title-color);
  white-space: nowrap;
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__title {
    max-width: none;
    width: 100%;
    white-space: normal;
  }
}
.uh-room-amenities__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__stats {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
  }
}
.uh-room-amenities__stat {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: var(--uh-ra-stat-gap);
  min-width: 0;
  padding: 0 20px;
  box-sizing: border-box;
}
.uh-room-amenities__stat:not(:first-child) {
  border-left: 1px solid var(--stroke);
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__stat:not(:first-child) {
    border-left: none;
  }
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__stat {
    flex: none;
    width: 100%;
    padding: 0;
    border-left: none;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--stroke);
  }
  .uh-room-amenities__stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.uh-room-amenities__stat-icon {
  flex-shrink: 0;
  width: var(--uh-ra-icon-size);
  height: var(--uh-ra-icon-size);
  font-size: var(--uh-ra-icon-size);
  line-height: 1;
  color: var(--title-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.uh-room-amenities__stat-icon .icon {
  line-height: 1;
}
.uh-room-amenities__stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
  font-size: 20px;
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__stat-text {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    font-size: 18px;
  }
}
.uh-room-amenities__stat-sep {
  display: none;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--title-color);
  padding-right: 5px;
  flex-shrink: 0;
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__stat-sep {
    display: inline;
  }
}
.uh-room-amenities__stat-label {
  margin: 0;
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 1.3;
  color: var(--title-color);
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__stat-label {
    font-size: 18px;
    white-space: nowrap;
  }
}
.uh-room-amenities__stat-value {
  margin: 0;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 1.5;
  color: var(--body-color);
}
.uh-room-amenities__stat-value p {
  margin: 0;
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__stat-value {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 18px;
  }
  .uh-room-amenities__stat-value p {
    display: inline;
  }
}
.uh-room-amenities__categories {
  display: flex;
  flex-direction: column;
  gap: var(--uh-ra-cat-gap);
  width: 100%;
}
@media screen and (max-width: 1198px) {
  .uh-room-amenities__categories {
    gap: 20px;
  }
}
.uh-room-amenities__category {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.uh-room-amenities__category-title {
  margin: 0;
  width: 100%;
  font-family: var(--highlight-font);
  font-size: var(--prev_title_size);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--title-color);
}
.uh-room-amenities__category-body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--primary-font);
  font-size: var(--body_size);
  font-weight: 400;
  line-height: 1.8;
  color: var(--body-color);
}
.uh-room-amenities__category-body p {
  margin: 0;
}
.uh-room-amenities__sep {
  width: 100%;
  height: 1px;
  background: var(--stroke);
  border: 0;
  margin: 0;
}