.wgt-home-promo-dashboards .home-promo-dashboards-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 24px 32px;
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wgt-home-promo-dashboards .home-promo-dashboards-stats:not(:has(li)) {
  display: none;
}

.wgt-home-promo-dashboards .home-promo-dashboards-stats li {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  min-width: 140px;
  padding: 0;
  border: none;
  text-align: center;
}

.wgt-home-promo-dashboards .home-promo-dashboards-stats .stat-number {
  color: var(--text-title);
  font-size: clamp(1.75rem, 1.5983rem + 0.6472vw, 2.375rem);
  font-weight: var(--font-weight-regular);
  line-height: 1.25;
}

.wgt-home-promo-dashboards .home-promo-dashboards-stats .stat-label {
  color: var(--text-body);
  font-size: var(--font-size-body-lg);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .wgt-home-promo-dashboards .home-promo-dashboards-stats {
    gap: 16px 24px;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-stats li {
    min-width: 0;
  }
}

.wgt-home-promo-dashboards .home-promo-dashboards-visual {
  width: 100%;
  max-width: 1064px;
}

.wgt-home-promo-dashboards .home-promo-dashboards-viewer {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-default-grey);
  border-radius: var(--radius-card);
  background: var(--background-white);
  box-shadow: var(--shadow-elevated);
}

.wgt-home-promo-dashboards .home-promo-dashboards-viewer img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  filter: blur(7px);
  transition: opacity 0.7s ease, filter 0.7s ease;
}

.wgt-home-promo-dashboards .home-promo-dashboards-viewer img.active {
  z-index: 1;
  opacity: 1;
}

.wgt-home-promo-dashboards .home-promo-dashboards-viewer img.unblur {
  filter: blur(0);
}

.wgt-home-promo-dashboards .home-promo-dashboards-panel {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: 22px;
  width: 100%;
  max-width: 355px;
  padding: 11px;
  border: 1px solid var(--border-default-grey);
  border-radius: var(--radius-card);
  background: var(--background-white);
  box-shadow: var(--shadow-header);
}

.wgt-home-promo-dashboards .home-promo-dashboards-panel-head {
  margin-bottom: var(--gap-md-12);
  text-align: center;
}

.wgt-home-promo-dashboards .home-promo-dashboards-panel-head h2 {
  margin: 0 0 var(--gap-sm-8);
  color: var(--text-title);
  font-size: var(--font-size-heading-h4);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
}

.wgt-home-promo-dashboards .home-promo-dashboards-panel-head :is(p, div) {
  margin: 0;
  color: var(--text-body);
  font-size: var(--font-size-body-sm);
  line-height: var(--line-height-body);
}

.wgt-home-promo-dashboards .home-promo-dashboards-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md-12);
}

.wgt-home-promo-dashboards .home-promo-dashboards-buttons input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wgt-home-promo-dashboards .home-promo-dashboards-buttons label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm-8);
  align-items: center;
  padding: 19px 12px;
  border: 1px solid var(--border-default-grey);
  border-radius: 6px;
  color: var(--text-body);
  font-size: var(--font-size-body-sm);
  line-height: var(--line-height-caption);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.wgt-home-promo-dashboards .home-promo-dashboards-buttons label:hover,
.wgt-home-promo-dashboards .home-promo-dashboards-buttons input[type="radio"]:checked + label {
  border-color: var(--primary-color-05);
}

.wgt-home-promo-dashboards .home-promo-dashboards-icon {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain;
}

.wgt-home-promo-dashboards .home-promo-dashboards-buttons input[type="radio"]:checked + label .home-promo-dashboards-icon {
  filter: invert(46%) sepia(38%) saturate(2400%) hue-rotate(218deg) brightness(101%) contrast(101%);
}

.wgt-home-promo-dashboards .home-promo-dashboards-check {
  box-sizing: border-box;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 11px;
  height: 11px;
  overflow: hidden;
  border: 2px solid var(--neutral-color-08);
  border-radius: 2px;
}

.wgt-home-promo-dashboards .home-promo-dashboards-check img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wgt-home-promo-dashboards .home-promo-dashboards-buttons input[type="radio"]:checked + label .home-promo-dashboards-check {
  border-width: 0;
}

.wgt-home-promo-dashboards .home-promo-dashboards-buttons input[type="radio"]:checked + label .home-promo-dashboards-check img {
  opacity: 1;
}

.wgt-home-promo-dashboards .home-promo-dashboards-mobile {
  display: none;
}

@media (max-width: 1300px) {
  .wgt-home-promo-dashboards .home-promo-dashboards-panel {
    right: 0;
  }
}

@media (max-width: 992px) {
  .wgt-home-promo-dashboards .home-promo-dashboards-visual {
    display: none;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile {
    display: block;
    position: relative;
    width: 100%;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .swiper {
    overflow: hidden;
    width: 100%;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .home-promo-dashboards-viewer {
    overflow: hidden;
    aspect-ratio: 16 / 10;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .home-promo-dashboards-viewer .swiper-slide {
    position: relative;
    height: 100%;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .home-promo-dashboards-viewer img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 1;
    filter: none;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mob-panel {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: -120px;
    padding-left: 34px;
    overflow: hidden;
    pointer-events: none;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .buttons-swiper-container {
    overflow: hidden;
    background: transparent;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .buttons-swiper-container .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 0.08, 0.2, 1);
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .home-promo-dashboards-buttons {
    display: block;
    width: 155px;
    max-width: 155px;
    padding: 8px;
    border: 1px solid var(--border-default-grey);
    border-radius: var(--radius-card);
    background: var(--background-white);
    box-shadow: var(--shadow-header);
    pointer-events: auto;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .home-promo-dashboards-buttons label {
    padding: 10px 8px;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .home-promo-dashboards-buttons input[type="radio"]:checked + label .home-promo-dashboards-check {
    border-width: 2px;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .home-promo-dashboards-buttons input[type="radio"] + label .home-promo-dashboards-check img {
    opacity: 0;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile .home-promo-dashboards-buttons input[type="radio"]:checked + label .home-promo-dashboards-icon {
    filter: none;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile :is(.swiper-slide-active, .swiper-slide-duplicate-active) .home-promo-dashboards-buttons .home-promo-dashboards-check {
    border-width: 0;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile :is(.swiper-slide-active, .swiper-slide-duplicate-active) .home-promo-dashboards-buttons input[type="radio"] + label .home-promo-dashboards-check img {
    opacity: 1;
  }

  .wgt-home-promo-dashboards .home-promo-dashboards-mobile :is(.swiper-slide-active, .swiper-slide-duplicate-active) .home-promo-dashboards-icon {
    filter: invert(46%) sepia(38%) saturate(2400%) hue-rotate(218deg) brightness(101%) contrast(101%);
  }
}

@media (max-width: 575px) {
  .wgt-home-promo-dashboards .home-promo-dashboards-mob-panel {
    margin-top: -105px;
    padding-left: 10px;
  }
}
