/* Three spaced groups: title at the top, copy in the middle, controls at the bottom. */
.platform-stage .platform-copy {
  justify-content: space-between;
  gap: 28px;
}
.platform-copy > .platform-title-group,
.platform-copy > .platform-body-group,
.platform-copy > .platform-controls {
  flex: none;
  min-width: 0;
}
.platform-title-group h3 { margin-bottom: 0; }
.platform-copy > .platform-controls { margin-top: 0; }

/* Preserve the original paragraph typography after adding a layout group. */
.platform-body-group > p {
  max-width: 35ch;
  margin: 0;
  color: #435d67;
  font-size: 18px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.platform-body-group > p .copy-phrase { white-space: nowrap; }
@media (max-width: 1100px) {
  .platform-body-group > p .copy-phrase { white-space: normal; }
}
@media (max-width: 700px) {
  .platform-stage .platform-copy { gap: 24px; }
  .platform-body-group > p { font-size: 17px; }
}
