/**
 * Oplossingen product hero: same style as oplossingen page (orbs, line, subtitle, text)
 * but left-aligned content with image on the right.
 */
.hero--product {
  background-color: #e1ebfa;
}

.hero--product .hero__inner--product {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: left;
}

.hero__product-content {
  flex: 1 1 50%;
  min-width: 0;
}

.hero--product .hero__title--page {
  margin: 0 0 var(--space-md);
  color: #020817;
}

.hero__page-line--left {
  margin-left: 0;
  margin-right: auto;
}

.hero__product-media {
  flex: 0 1 45%;
  min-width: 0;
  max-width: 28rem;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

.hero__product-media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #fff 100%);
}

.hero__product-icon {
  font-size: 8rem;
  color: #fff;
}

.hero__product-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@media (max-width: 64rem) {
  .hero--product .hero__inner--product {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xl);
  }

  .hero__product-media {
    flex: none;
    max-width: 22rem;
    margin: 0 auto;
  }
}

@media (max-width: 48rem) {
  .hero--product .hero__inner--product {
    text-align: center;
  }

  .hero--product .hero__page-line--left {
    margin-left: auto;
    margin-right: auto;
  }

  .hero--product .hero__title--page {
    font-size: 2.5rem;
  }

  .hero__product-media {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__product-media--icon {
    min-height: 12rem;
  }

  .hero__product-icon {
    font-size: 5rem;
  }
}
