.ilimera-pro-page .pro-hero {
  position: relative;
  display: grid;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: var(--ilimera-hero-height, 650px);
  aspect-ratio: var(--ilimera-hero-desktop-ratio, 1900 / 845);
  overflow: hidden;
  background: #fff !important;
}

.pro-hero-slide {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}

.pro-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.pro-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.pro-hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, .18);
  border-radius: 50%;
  color: #111827;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
  transform: translateY(-50%);
  cursor: pointer;
}

.pro-hero-arrow:hover,
.pro-hero-arrow:focus-visible {
  border-color: #08a9c2;
  color: #087f96;
  outline: 3px solid rgba(8, 169, 194, .18);
}

.pro-hero-arrow span {
  font-size: 34px;
  line-height: 1;
}

.pro-hero-arrow-prev {
  left: 24px;
}

.pro-hero-arrow-next {
  right: 24px;
}

.pro-hero-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pro-hero-dots button {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pro-hero-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(17, 24, 39, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  transform: translate(-50%, -50%);
  content: "";
}

.pro-hero-dots button.is-active::before {
  border-color: #08a9c2;
  background: #08a9c2;
}

.pro-hero-dots button:focus-visible {
  outline: 3px solid rgba(8, 169, 194, .25);
  outline-offset: 3px;
}

.pro-dashboard-media,
.pro-dashboard-image {
  display: block;
  width: 100%;
}

.pro-dashboard-image {
  height: auto;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .09);
}

@media (prefers-reduced-motion: reduce) {
  .pro-hero-slide {
    transition: none;
  }
}

@media (max-width: 767px) {
  .ilimera-pro-page .pro-hero {
    width: 100%;
    height: var(--ilimera-hero-mobile-height, auto);
    min-height: 0;
    aspect-ratio: var(--ilimera-hero-mobile-ratio, 1900 / 845);
    background: #fff !important;
    touch-action: pan-y;
  }

  .pro-hero-slide img {
    object-fit: contain;
    object-position: center top;
  }

  .pro-hero-arrow {
    width: 40px;
    height: 40px;
  }

  .pro-hero-arrow-prev {
    left: 12px;
  }

  .pro-hero-arrow-next {
    right: 12px;
  }

  .pro-hero-dots {
    bottom: 5px;
  }
}
