/* 50/50 image left */
.fifty-fifty {
  margin: var(--tb-spacing) var(--margin-none);
  display: flex;
  flex-wrap: nowrap;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  row-gap: 2rem;
}

/* .fifty-fifty > * {
  flex: 0 1 50%;
} */

.fifty-fifty .hero-image {
  flex: 1 0 50%;
  max-height: calc(500px + 9vw);
  overflow: hidden;
}

.fifty-fifty .hero-image img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
}
.fifty-fifty .text-area {
  margin: 0 5vw 5vw;
  max-width: 27.77rem;
}

.fifty-fifty .title {
  font-size: var(--ts-h1);
  line-height: var(--lh-h1);
  color: var(--purple-brite);
  margin-bottom: 2rem;
}
.fifty-fifty p {
  line-height: 1.5;
  margin-bottom: 3.66rem;
}

@media only screen and (min-width: 786px) {
  .fifty-fifty.image-right {
    flex-direction: row-reverse;
  }

  .fifty-fifty {
    flex-flow: row;
  }
}
