.text-two-rows-headline {
  display: flex;
  flex-direction: column;
}
.text-two-rows-headline h2 {
  text-align: left;
}
.text-two-rows-headline .text-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}
.text-two-rows-headline .text-container p {
  text-align: left;
}

@media (max-width: 900px) {
  .text-two-rows-headline .text-container {
    grid-template-columns: 1fr;
  }
}