@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
 */
/**
 * Facilities — card grid (Figma 336:8910).
 * Flex + wrap; tokens aligned with room_amenities / mockup.
 */
.uh-facilities .container {
  max-width: 1240px;
}
.uh-facilities__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: clamp(32px, 5vw, 60px);
}
.uh-facilities__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  width: 100%;
}
@media screen and (max-width: 1198px) {
  .uh-facilities__title-row {
    gap: 0;
  }
}
.uh-facilities__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);
}
.uh-facilities__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.uh-facilities__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  flex: 1 1 100%;
  max-width: 100%;
  min-width: 0;
  padding: 10px 10px 0;
  background: var(--alternative_bg, #fff);
  border-radius: var(--card-radius, 15px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.102);
}
@media screen and (min-width: 768px) {
  .uh-facilities__card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.uh-facilities__card {
  /* 4 cards per row (20px gap → 3 gutters) */
}
@media screen and (min-width: 1200px) {
  .uh-facilities__card {
    flex: 1 1 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
  }
}
.uh-facilities__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--image_inside_radius, 5px);
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.uh-facilities__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uh-facilities__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 25px 20px 20px;
  min-width: 0;
}
.uh-facilities__text {
  margin: 0;
  font-family: var(--primary-font);
  font-size: var(--prev_content_size, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--body-color, #005272);
}
.uh-facilities__text p {
  margin: 0 0 0.75em;
}
.uh-facilities__text p:last-child {
  margin-bottom: 0;
}