.hero-landing-page {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #faf8fb 100%);
  overflow: hidden;
}

.hero__inner {
  align-items: center;
}

.hero__content {
  box-sizing: border-box;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2a1d4a;
  text-align: left;
}

.hero__subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6b6f7b;
  max-width: 58ch;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
  color: #1f2430;
  align-items: center;
}

.hero__bullets .icon {
  width: 2rem;
  height: 2rem;
  min-width: 1rem;
  margin-top: 0.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #7e1325 0%, #a01935 100%);
  position: relative;
}

.hero__bullets .icon::before {
    content: "";
    position: absolute;
    left: .8rem;
    top: 0.3rem;
    width: 0.28rem;
    height: 1rem;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);

}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.4rem;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.hero__actions .btn--primary {
  background: #780f05;
  color: #fff;
}

.hero__actions .btn--primary:hover,
.hero__actions .btn--primary:focus {
  color: #fff;
  opacity: 0.92;
  text-decoration: none;
}

.hero__actions .btn--secondary {
  border: 1px solid #c9ced8;
  background: #fff;
  color: #2a1d4a;
}

.hero__actions .btn--secondary:hover,
.hero__actions .btn--secondary:focus {
  border-color: #780f05;
  color: #780f05;
  text-decoration: none;
}

.hero__media {
  box-sizing: border-box;
}

.hero__media-box {
  position: relative;
  min-height: 32rem;
}

.hero__image {
  position: absolute;
  inset: 2.5rem 0 0 3rem;
  background:
    linear-gradient(rgba(32, 35, 54, 0.16), rgba(32, 35, 54, 0.16)),
    url("/themes/custom/brainstorm/images/hero.jpg") center center / cover no-repeat;
  box-shadow: 0 1.5rem 3rem rgba(24, 28, 42, 0.12);
  z-index: 2;
}

.hero__shape {
  position: absolute;
}

.hero__shape--red {
  right: 0;
  top: 0;
  width: 14rem;
  height: 14rem;
  background: linear-gradient(135deg, #780f05 0%, #c32846 100%);
  clip-path: polygon(36% 0, 100% 0, 64% 100%, 0 100%);
  z-index: 3;
}

.hero__shape--dark {
  left: 0;
  bottom: 0;
  width: 11rem;
  height: 11rem;
  background: linear-gradient(135deg, #23283a 0%, #373f57 100%);
  clip-path: polygon(36% 0, 100% 0, 64% 100%, 0 100%);
  z-index: 1;
}
.paragraph-width--full .hero__inner{
    width:100%;
    padding-left:1rem;
    padding-right:1rem;
}
.hero__image img{
        max-width: 100%;
}
@media (max-width: 62rem) {
  .hero-landing-page {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__media-box {
    min-height: 22rem;
    margin-top: 2rem;
  }

  .hero__image {
    inset: 0;
    position: static;
  }
}