.uauhb,
.uauhb * {
  box-sizing: border-box;
}

.uauhb {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 26px 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
}

.uauhb__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.uauhb__main,
.uauhb__side {
  min-width: 0;
}

.uauhb__main {
  position: relative;
  height: clamp(430px, 32vw, 560px);
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  line-height: 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.uauhb__main.is-dragging {
  cursor: grabbing;
}

.uauhb__main.is-dragging .uauhb__banner {
  pointer-events: none;
}

.uauhb__side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 0;
}

.uauhb__banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 182px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  isolation: isolate;
  outline: 0;
}

.uauhb__banner:visited,
.uauhb__banner:hover,
.uauhb__banner:focus {
  color: #fff;
  text-decoration: none;
}

.uauhb__banner--main {
  position: absolute;
  inset: 0;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  background: #000;
  border-radius: inherit;
  line-height: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.uauhb__banner--main.is-active {
  opacity: 1;
  pointer-events: auto;
}

.uauhb__banner--side {
  height: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: 0;
}

.uauhb__banner--side .uauhb__image {
  border-radius: inherit;
}

.uauhb__picture,
.uauhb__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.uauhb__picture {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background: #000;
}

.uauhb__image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: var(--uauhb-pos, center center);
  transition: transform .35s ease;
}

.uauhb__picture .uauhb__image {
  z-index: 0;
}

@media (max-width: 767px) {
  .uauhb__banner--main .uauhb__image {
    object-position: var(--uauhb-mobile-pos, var(--uauhb-pos, center center));
  }
}

.uauhb__banner--main:hover .uauhb__image,
.uauhb__banner--main:focus .uauhb__image {
  transform: scale(1.025);
}

.uauhb__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 32%, rgba(0, 0, 0, .58) 100%);
  pointer-events: none;
}

.uauhb__banner--main .uauhb__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .44) 34%, rgba(0, 0, 0, .16) 68%, rgba(0, 0, 0, 0) 100%);
}

.uauhb__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: min(82%, 520px);
  padding: 24px;
}

.uauhb__banner--main .uauhb__content {
  width: min(62%, 560px);
  max-width: 560px;
  padding: clamp(34px, 4.6vw, 72px);
}

.uauhb__banner--side .uauhb__content {
  width: min(88%, 360px);
  padding: 18px;
}

.uauhb__title,
.uauhb__text,
.uauhb__button {
  display: block;
}

.uauhb__title {
  color: #fff;
  font-size: clamp(38px, 3.3vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.uauhb__banner--side .uauhb__title {
  font-size: 22px;
}

.uauhb__text {
  max-width: 480px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 1.35;
}

.uauhb__banner--side .uauhb__text {
  font-size: 14px;
  font-weight: 700;
}

.uauhb__button {
  margin-top: 10px;
  padding: 14px 22px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
  transition: transform .16s ease, box-shadow .16s ease;
}

.uauhb__banner:visited .uauhb__title,
.uauhb__banner:hover .uauhb__title,
.uauhb__banner:focus .uauhb__title {
  color: #fff;
}

.uauhb__banner:visited .uauhb__text,
.uauhb__banner:hover .uauhb__text,
.uauhb__banner:focus .uauhb__text {
  color: rgba(255, 255, 255, .9);
}

.uauhb__banner:visited .uauhb__button,
.uauhb__banner:hover .uauhb__button,
.uauhb__banner:focus .uauhb__button {
  color: #111;
}

.uauhb__banner:hover .uauhb__button,
.uauhb__banner:focus .uauhb__button {
  transform: translateY(-1px);
  box-shadow: 0 13px 26px rgba(0, 0, 0, .2);
}

.uauhb__banner--side .uauhb__button {
  margin-top: 4px;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 6px;
  box-shadow: none;
}

.uauhb__dots {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  gap: 8px;
  line-height: 1;
  background: transparent;
}

.uauhb__dots::before,
.uauhb__dots::after {
  content: none;
  display: none;
}

.uauhb__dot {
  appearance: none;
  display: block;
  width: 9px;
  height: 9px;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.uauhb__dot.is-active {
  width: 24px;
  background: #fff;
}

.uauhb__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 0;
  font-weight: 400;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  opacity: .9;
  transform: translateY(-50%);
  transition: opacity .16s ease, transform .16s ease;
}

.uauhb__arrow:hover,
.uauhb__arrow:focus {
  color: #fff;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

.uauhb__arrow:focus {
  outline: 1px solid rgba(255, 255, 255, .72);
  outline-offset: 5px;
}

.uauhb__arrow span {
  display: none;
}

.uauhb__arrow::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.uauhb__arrow--prev {
  left: 18px;
}

.uauhb__arrow--prev::before {
  transform: rotate(-135deg);
}

.uauhb__arrow--next {
  right: 18px;
}

.uauhb__arrow--next::before {
  transform: rotate(45deg);
}

@media (max-width: 991px) {
  .uauhb__grid {
    grid-template-columns: 1fr;
  }

  .uauhb__main {
    height: 390px;
    min-height: 0;
  }

  .uauhb__side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 767px) {
  .uauhb {
    padding: 18px 0;
  }

  .uauhb__grid {
    gap: 12px;
    padding: 0;
  }

  .uauhb__main {
    height: clamp(430px, 118vw, 560px);
    min-height: 0;
    border-radius: 8px;
  }

  .uauhb__banner--main {
    align-items: flex-end;
  }

  .uauhb__banner--main .uauhb__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .12) 42%, rgba(0, 0, 0, .68) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .18) 64%, rgba(0, 0, 0, 0) 100%);
  }

  .uauhb__side {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .uauhb__banner--side {
    min-height: 164px;
  }

  .uauhb__banner--main .uauhb__content {
    width: 100%;
    max-width: none;
    padding: 28px 22px 34px;
  }

  .uauhb__banner--side .uauhb__content {
    width: 92%;
    padding: 18px;
  }

  .uauhb__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .uauhb__banner--side .uauhb__title {
    font-size: 22px;
  }

  .uauhb__text {
    max-width: 92%;
    font-size: 16px;
    line-height: 1.35;
  }

  .uauhb__button {
    padding: 13px 20px;
  }

  .uauhb__arrow {
    width: 38px;
    height: 38px;
  }

  .uauhb__arrow::before {
    width: 15px;
    height: 15px;
  }

  .uauhb__arrow--prev {
    left: 12px;
  }

  .uauhb__arrow--next {
    right: 12px;
  }
}
