@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.
 */
/**
 * Rooms list — room card (Figma 62:6954): horizontal layout, image column, icon row, footer CTA.
 */
.uh-rooms-list__grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__grid {
    gap: 40px;
  }
}
.uh-rooms-list__card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: 15px;
  box-sizing: border-box;
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__card {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }
}
.uh-rooms-list__card:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__card:nth-child(even) {
    flex-direction: column;
  }
}
.uh-rooms-list__media {
  position: relative;
  flex: 0 0 550px;
  width: 550px;
  max-width: 100%;
  min-height: 200px;
  border-radius: var(--image_inside_radius, 5px);
  overflow: hidden;
  align-self: stretch;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__media {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 550/360;
  }
}
.uh-rooms-list__media-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.uh-rooms-list__media-link:focus-visible {
  outline: 2px solid var(--highlight-color-group);
  outline-offset: 3px;
}
.site-hotel .uh-rooms-list__media-link:focus-visible {
  outline-color: var(--highlight-color-hotel);
}
.uh-rooms-list__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.uh-rooms-list__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
  padding: 40px 50px;
  gap: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__body {
    padding: 24px 20px 28px;
    align-items: stretch;
    text-align: left;
  }
}
.uh-rooms-list__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  text-transform: uppercase;
}
.uh-rooms-list__title {
  margin: 0;
  width: 100%;
  font-family: var(--highlight-font);
  font-size: var(--prev_title_size, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--title-color);
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__title {
    font-size: clamp(22px, 5vw, 28px);
  }
}
.uh-rooms-list__title-link {
  color: inherit;
  text-decoration: none;
}
.uh-rooms-list__title-link:hover, .uh-rooms-list__title-link:focus-visible {
  color: var(--hover-color);
}
.uh-rooms-list__subtitle {
  margin: 0;
  width: 100%;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1.8px;
  color: var(--subtitle-color);
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__subtitle {
    font-size: 16px;
    letter-spacing: 1.2px;
  }
}
.uh-rooms-list__excerpt {
  margin: 0;
  width: 100%;
  font-family: var(--primary-font);
  font-size: var(--prev_content_size, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--body-color);
  overflow: hidden;
}
.uh-rooms-list__excerpt p {
  margin: 0 0 0.5em;
}
.uh-rooms-list__excerpt p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__excerpt {
    font-size: 15px;
  }
}
.uh-rooms-list__icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  gap: 0;
  padding: 10px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__icons {
    flex-direction: column;
    gap: 16px;
    padding: 8px 0 4px;
  }
}
.uh-rooms-list__icons-sep {
  flex: 0 0 1px;
  width: 1px;
  margin: 0 15px;
  align-self: stretch;
  background: var(--stroke);
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__icons-sep {
    display: none;
  }
}
.uh-rooms-list__icon-item {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 15px;
  min-width: 0;
  overflow: hidden;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__icon-item {
    flex: 1 1 auto;
  }
}
.uh-rooms-list__icon-item-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--title-color);
}
.uh-rooms-list__icon-item-icon .icon {
  font-size: 30px;
}
.uh-rooms-list__icon-item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  flex: 1 1 0;
}
.uh-rooms-list__icon-item-label {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--title-color);
  width: 100%;
}
.uh-rooms-list__icon-item-value {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body-color);
  width: 100%;
}
.uh-rooms-list__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--stroke);
  gap: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__footer {
    flex-wrap: wrap;
    padding-top: 16px;
  }
}
.uh-rooms-list__cta {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  min-width: 0;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__cta {
    justify-content: center;
  }
}
.uh-rooms-list__book.btn {
  text-transform: uppercase;
  letter-spacing: 1.28px;
  flex-shrink: 0;
}
@media screen and (max-width: 1198px) {
  .uh-rooms-list__book.btn {
    flex: 1 1 auto;
  }
}
.uh-rooms-list__discover {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--body-color);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  border: none;
}
.site-group .uh-rooms-list__discover .fa-arrow-right {
  color: var(--highlight-color-group);
}
.site-hotel .uh-rooms-list__discover .fa-arrow-right {
  color: var(--highlight-color-hotel);
}
.uh-rooms-list__discover .discover_more_text {
  position: relative;
}
.site-group .uh-rooms-list__discover .discover_more_text:hover, .site-group .uh-rooms-list__discover .discover_more_text:focus {
  color: var(--highlight-color-group);
}
.site-hotel .uh-rooms-list__discover .discover_more_text:hover, .site-hotel .uh-rooms-list__discover .discover_more_text:focus {
  color: var(--highlight-color-hotel);
}
.uh-rooms-list__discover .discover_more_text:hover::after, .uh-rooms-list__discover .discover_more_text:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.uh-rooms-list__discover .discover_more_text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .uh-rooms-list__discover .discover_more_text::after {
  background: var(--highlight-color-group);
}
.site-hotel .uh-rooms-list__discover .discover_more_text::after {
  background: var(--highlight-color-hotel);
}
.uh-rooms-list__discover {
  display: inline-flex;
  align-items: center;
  height: 23px;
  flex-shrink: 0;
}
.uh-rooms-list__discover i {
  color: var(--highlight-color-group);
  font-size: 16px;
}
.site-hotel .uh-rooms-list__discover i {
  color: var(--highlight-color-hotel);
}