.two-col-banner {
  background-color: #9664FF;
  width: 100%;
}

.two-col-banner p {
  margin: 0;
}

.two-col-banner__inner {
  padding: 10px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.two-col-banner__left {
  flex: 3;
  text-align: left;
}

.two-col-banner__right {
  flex: 2;
  text-align: right;

}

/* Tablet */
@media (max-width: 1200px) {
  .two-col-banner__inner {
    padding: 20px 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .two-col-banner__inner {
    flex-direction: column;
    padding: 20px 24px;
    text-align: center;
  }
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .two-col-banner {
  background-color: #9664FF;
  width: 100%;
}

.two-col-banner p {
  margin: 0;
}

/* Mobile + small tablet tweaks */
@media (max-width: 768px) {
  .two-col-banner {
    padding: 24px 0;
  }

  .two-col-banner__inner {
    padding: 0 16px;              /* less side padding */
    max-width: 480px;             /* stops it stretching too wide */
    margin: 0 auto;               /* center the content block */
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .two-col-banner__left,
  .two-col-banner__right {
    width: 100%;
  }

  .two-col-banner p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* If those integrations are in a single paragraph or list, help them not wrap badly */
  .two-col-banner__right p {
    text-align: center;
    letter-spacing: 0.02em;
    word-spacing: 0.25em;
  }
}

/* Optional: only stack on really small screens, keep 2‑col on tablets */
@media (min-width: 601px) and (max-width: 768px) {
  .two-col-banner__inner {
    flex-direction: row;
    align-items: center;
  }

  .two-col-banner__right p {
    text-align: right;
  }
}

  }
}

