@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
 */
/**
 * Map — hotel info + Google Maps embed.
 * Desktop: Figma 35:3700 (panel left, map right).
 * Mobile: Figma 437:15808 (map top 300px, panel below).
 */
.uh-map {
  width: 100%;
}
.uh-map__layout {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: clamp(400px, 60vh, 600px);
  overflow: hidden;
  border-radius: var(--card-radius, 15px);
}
@media screen and (max-width: 1198px) {
  .uh-map__layout {
    flex-direction: column;
    min-height: 0;
    border-radius: var(--card-radius, 10px);
  }
}
.uh-map__panel {
  flex: 0 0 420px;
  max-width: 420px;
  background: var(--alternative_bg, #fff);
  border-radius: var(--card-radius, 15px) 0 0 var(--card-radius, 15px);
}
@media screen and (max-width: 1198px) {
  .uh-map__panel {
    flex: 0 0 auto;
    order: 2;
    max-width: none;
    width: 100%;
    border-radius: 0 0 var(--card-radius, 10px) var(--card-radius, 10px);
  }
}
.uh-map__panel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  padding: clamp(32px, 5vw, 60px);
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .uh-map__panel-inner {
    padding: 40px 30px;
  }
}
.uh-map__logo {
  flex-shrink: 0;
}
.uh-map__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 1198px) {
  .uh-map__logo-wrap {
    width: 80px;
    height: 80px;
  }
}
.uh-map__logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.uh-map__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .uh-map__details {
    padding: 0;
  }
}
.uh-map__name {
  width: 100%;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--title-color);
}
.uh-map__contact {
  width: 100%;
  gap: 20px;
}
.uh-map__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--stroke, #ddd);
}
.uh-map__cta {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1198px) {
  .uh-map__cta {
    font-size: 16px;
    letter-spacing: 1.28px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.uh-map__embed {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: clamp(280px, 50vh, 600px);
  background: var(--bg-d-5, #e8e8e8);
  border-radius: 0 var(--card-radius, 15px) var(--card-radius, 15px) 0;
  overflow: hidden;
}
@media screen and (max-width: 1198px) {
  .uh-map__embed {
    order: 1;
    flex: 0 0 300px;
    width: 100%;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    border-radius: var(--card-radius, 10px) var(--card-radius, 10px) 0 0;
  }
}
.uh-map__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}
@media screen and (max-width: 1198px) {
  .uh-map__iframe {
    min-height: 300px;
  }
}
.uh-map__layout--info-only .uh-map__panel {
  flex: 1 1 auto;
  max-width: none;
  border-radius: var(--card-radius, 15px);
}
@media screen and (max-width: 1198px) {
  .uh-map__layout--info-only .uh-map__panel {
    border-radius: var(--card-radius, 10px);
  }
}