@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.
 */
/**
 * Gallery — Figma 344:11663, Swiper + Fancybox.
 */
.uh-gallery {
  overflow: visible;
}
.uh-gallery__intro {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 60px;
  justify-content: center;
  align-items: center;
}
.uh-gallery__intro .block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.uh-gallery__intro .block-content__intro {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.uh-gallery__intro .block-content__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.uh-gallery__intro .block-content__title::before, .uh-gallery__intro .block-content__title::after {
  content: "";
  flex: 1 1 auto;
  min-width: 50px;
  height: 1px;
  background-color: var(--title-color);
  align-self: baseline;
}
@media screen and (max-width: 767px) {
  .uh-gallery__intro .block-content__title::before, .uh-gallery__intro .block-content__title::after {
    display: none;
  }
}
.uh-gallery__intro .block-content .block-content__intro {
  text-align: center;
  align-items: center;
}
.uh-gallery__intro .block-content .btns_wrap {
  justify-content: center;
}

.uh-gallery__inner,
.uh-gallery__stage,
.uh-gallery__swiper-wrap {
  overflow: visible;
  position: relative;
}

.uh-gallery__swiper-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  padding-inline: 20px;
}
@media screen and (max-width: 1399px) {
  .uh-gallery__swiper-wrap {
    padding-inline: 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    margin-inline: calc(50% - 50vw);
  }
}

.uh-gallery__swiper {
  overflow: hidden;
  width: 100%;
}

.uh-swiper-nav--gallery {
  border-color: var(--body-color);
  background: var(--body-color);
  color: var(--body-color-as);
}
.uh-swiper-nav--gallery:hover:not(:disabled) {
  border-color: var(--hover-color);
  color: var(--hover-color-as);
  background-color: var(--hover-color);
}

.uh-gallery__slide {
  height: auto;
}

.uh-gallery__trigger {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.uh-gallery__trigger:focus-visible {
  outline: 2px solid var(--primary-color, #00729e);
  outline-offset: 4px;
}

.uh-gallery__media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 10px solid var(--bg-alt);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.block-gallery--image-card-layout-off .uh-gallery__media {
  border: 8px solid var(--bg-alt);
  border: none;
  box-shadow: none;
}

.uh-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uh-gallery__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.25);
}
.uh-gallery__play i {
  font-size: 48px;
  color: #fff;
}

.uh-gallery__badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.uh-gallery__inline-sources {
  display: none !important;
}

.uh-gallery__panorama-sources {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.fancybox__container .fancybox__content:has(.uh-gallery__panorama-viewer),
.fancybox__container .fancybox__content:has([id^=panorama_]) {
  padding: 0;
  background: #000;
  width: min(94vw, 1200px);
  height: min(82vh, 900px);
}

.fancybox__container .uh-gallery__panorama-viewer,
.fancybox__container [id^=panorama_] {
  width: 100% !important;
  height: 100% !important;
  min-height: 320px;
}

.fancybox__container .uh-gallery__youku-embed {
  width: 80vw;
  max-width: 960px;
  height: 56.25vw;
  max-height: 540px;
  border: 0;
}