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

.uauhc {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 24px 0 32px;
  background: transparent;
  color: #111;
  font-family: inherit;
}

.uauhc__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 0 0 18px;
}

.uauhc__intro {
  min-width: 0;
}

.uauhc__title {
  margin: 0 0 3px;
  color: #111;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.uauhc__subtitle {
  margin: 0;
  color: #74777c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.uauhc__all {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.uauhc__all:hover,
.uauhc__all:focus {
  color: #111;
  text-decoration: none;
}

.uauhc__viewport {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.uauhc__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.uauhc__item {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex: 0 1 calc((100% - 72px) / 5);
  min-width: 0;
  max-width: calc((100% - 72px) / 5);
  min-height: 0;
  height: 242px;
  aspect-ratio: auto;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 8px;
  text-align: left;
  text-decoration: none;
  isolation: isolate;
}

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

.uauhc__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .30) 58%, rgba(0, 0, 0, .20)),
    rgba(0, 0, 0, .10);
  pointer-events: none;
}

.uauhc__media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.uauhc__media {
  z-index: 0;
  overflow: hidden;
  background: transparent;
}

.uauhc__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(22, 168, 199, .34), transparent 32%),
    linear-gradient(135deg, #202020, #050505);
}

.uauhc__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .24s ease;
}

.uauhc__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.uauhc__placeholder {
  color: rgba(255, 255, 255, .14);
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
}

.uauhc__label {
  display: block;
  align-items: center;
  color: #fff;
  font-size: clamp(22px, 1.55vw, 31px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .52);
  overflow-wrap: anywhere;
}

.uauhc__item:hover .uauhc__img,
.uauhc__item:focus .uauhc__img {
  transform: scale(1.055);
}

@media (max-width: 1199px) {
  .uauhc {
    padding: 24px 0 30px;
  }

  .uauhc__row {
    gap: 16px;
  }

  .uauhc__item {
    flex-basis: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    min-height: 0;
    height: 256px;
    padding: 22px;
  }
}

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

  .uauhc__viewport {
    display: flex;
    flex-direction: row;
    gap: 12px;
    max-width: none;
    margin: 0;
    padding: 0 0 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .uauhc__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }

  .uauhc__all {
    font-size: 13px;
  }

  .uauhc__row {
    display: contents;
  }

  .uauhc__viewport::-webkit-scrollbar {
    height: 0;
  }

  .uauhc__item {
    flex: 0 0 78vw;
    min-height: 0;
    height: 254px;
    max-width: 330px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .uauhc__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .uauhc__label {
    font-size: 24px;
  }
}
