/* OUTER */
.bloom-ai-cta-wrapper {
  padding: 40px 20px;
}

/* MAIN CTA */
.bloom-ai-cta {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background-color: #F4F9FF;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  min-height: 300px;
}

/* LEFT BACKGROUND PATTERN */
.bloom-ai-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 520px;
  height: 100%;
  background: url("https://devimages.bloomcs.com/devimagesassets/2026/01/Group-9.png") no-repeat left center;
  background-size: cover;
  pointer-events: none;
  opacity: 0.3;
}

/* CONTENT */
.bloom-ai-cta-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* RIGHT IMAGE CONTAINER */
.ai-cta-img {
  flex: 1;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

/* RIGHT IMAGE */
.ai-cta-img img {
  height: 100%;
  width: auto;
  object-fit: cover;
  /*transform: translateY(20px);*/
}

/* TYPOGRAPHY */
.bloom-ai-cta-content h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 36px;
  margin-bottom: 12px;
  font-family:  ProximaNova-Bold;
}

.bloom-ai-cta-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}

/* MOBILE */
@media (max-width: 768px) {
     .bloom-ai-cta .bloom-ai-cta-content .is-layout-flex {
        justify-content: center;
    }
  .bloom-ai-cta {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .bloom-ai-cta::before {
    display: none;
  }

  .bloom-ai-cta-content {
    padding: 30px 20px;
    width: 100%;
  }

  .ai-cta-img {
    justify-content: center;
    height: auto;
  }

  .ai-cta-img img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

}