/* Two-column "text left / image right" layout for the Create Brand
   section. components/split-section.html */
.split-section {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.split-section__col {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.split-section__eyebrow {
  margin-bottom: 2rem;
}

.split-section__heading {
  margin: 0;
  font-size: 2.25rem;
  font-weight: var(--hp-fw-extrabold);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--color-text-heading);
}

.split-section__paragraph {
  margin: 2rem 0 0;
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--hp-text-body);
}

.split-section__paragraph strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text-heading);
}

.split-section__stats {
  margin-top: 2rem;
}

.split-section__cta {
  margin-top: 1.4375rem;
  display: flex;
  flex-direction: column;
  gap: 1.4375rem;
  align-items: flex-start;
}

.split-section__helper {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #7e91a2;
}

.split-section__helper img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.split-section__media {
  flex-shrink: 0;
  width: 45%;
  display: flex;
  justify-content: flex-end;
}

.split-section__media img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 1.25rem;
  object-fit: contain;
}

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
    text-align: center;
  }

  .split-section__col {
    width: 100%;
  }

  .split-section__paragraph {
    max-width: none;
    margin-inline: auto;
  }

  .split-section__stats {
    align-self: stretch;
  }

  .split-section__stats .stat-card-list {
    max-width: none;
    margin-inline: auto;
  }

  .split-section__cta {
    align-items: center;
  }

  .split-section__media {
    width: 100%;
    justify-content: center;
    order: -1;
  }
}
