.hero-banner-title-section {
  background: #fff;
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  margin: 7px 0 0;
  min-height: 34px;
  overflow: visible;
  padding: 5px 12px;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
}

.hero-banner-title-section {
  align-items: center;
  color: #1d1d1f;
}

.hero-banner-title {
  align-items: center;
  color: #1d1d1f;
}

.hero-banner-title {
  flex: 0 1 auto;
  margin: 0;
  max-width: calc(100% - 86px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-banner-title {
  display: inline-flex;
  font-family: inherit;
  font-size: 13px;
  font-weight: 520;
  letter-spacing: -0.24px;
  line-height: normal;
  min-width: 0;
  white-space: nowrap;
}

.hero-banner-highlights-count {
  display: inline-flex;
  font-family: inherit;
  font-size: 13px;
  font-weight: 520;
  letter-spacing: -0.24px;
  line-height: normal;
  min-width: 0;
  white-space: nowrap;
}

.hero-banner-highlights-count {
  align-items: center;
  box-sizing: border-box;
  color: #8a8a8e;
  flex: 0 0 auto;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  padding: 1px 0;
}

.hero-banner-carousel {
  background: #f8f8f8;
  border-radius: 0;
  height: 220px;
  margin: 3px 0 0;
  overflow: hidden;
  position: relative;
  touch-action: auto;
  user-select: none;
  width: 100%;
}

.hero-banner-carousel:before {
  animation: none;
  background: linear-gradient(100deg, #f1f1f3 22%, #fafafa 42%, #f1f1f3 62%);
  background-size: 220% 100%;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.22s ease;
  z-index: 0;
}

.hero-banner-carousel--loading:before {
  animation: hero-banner-shimmer 0.65s ease-in-out infinite;
  opacity: 1;
}

.hero-banner-carousel--loading .hero-banner-image {
  opacity: 0;
}

@keyframes hero-banner-shimmer {
  0% {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

.hero-banner-image {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #f8f8f8;
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: none;
  transition: opacity 0.64s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  width: 100%;
  will-change: opacity;
  -webkit-user-drag: none;
}

.hero-banner-image-active {
  opacity: 1;
  transform: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner-carousel:before {
    animation: none;
  }

  .hero-banner-image {
    transition: none;
  }
}

@media (max-width: 380px) {
  .hero-banner-carousel {
    height: 210px;
  }
}
