/* Image hero overlay */
.image-hero-overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(13, 21, 50, 0.85) 0%,
      rgba(13, 21, 50, 0) 35%
    ),
    linear-gradient(
      to top,
      rgba(13, 21, 50, 0.75) 0%,
      rgba(13, 21, 50, 0) 35%
    ),
    rgba(13, 21, 50, 0.4);
}

/* Hero CTA white curved shape with inverted border radius */
.image-hero-cta-shape {
  position: relative;
  background: white;
  border-top-right-radius: 1.5rem;
  padding: 1rem 1.5rem 1rem 1rem;
  align-self: flex-start;
}

.image-hero-cta-shape::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: radial-gradient(circle at 1.5rem 0, transparent 1.5rem, white 1.5rem);
}

.image-hero-cta-shape::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 1.5rem;
  height: 1.5rem;
  background: radial-gradient(circle at 1.5rem 0, transparent 1.5rem, white 1.5rem);
}

@media (min-width: 768px) {
  .image-hero-cta-shape::before,
  .image-hero-cta-shape::after {
    width: 2rem;
    height: 2rem;
    background: radial-gradient(circle at 2rem 0, transparent 2rem, white 2rem);
  }
}

.image-hero-cta-shape--bg-gray {
  background: #f1f2f3;
}

.image-hero-cta-shape--bg-gray::before {
  background: radial-gradient(circle at 1.5rem 0, transparent 1.5rem, #f1f2f3 1.5rem);
}

.image-hero-cta-shape--bg-gray::after {
  background: radial-gradient(circle at 1.5rem 0, transparent 1.5rem, #f1f2f3 1.5rem);
}

@media (min-width: 768px) {
  .image-hero-cta-shape--bg-gray::before,
  .image-hero-cta-shape--bg-gray::after {
    background: radial-gradient(circle at 2rem 0, transparent 2rem, #f1f2f3 2rem);
  }
}

.image-hero-cta-shape-inner {
  max-width: 1400px;
}

.image-hero__heading {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: white;
}

@media (min-width: 768px) {
  .image-hero__heading {
    font-size: 2.625rem;
  }
}

.image-hero__subheading {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
}

@media (min-width: 768px) {
  .image-hero__subheading {
    font-size: 1.3125rem;
  }
}
