.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.text-section-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

strong {
    font-size: var(--fs-md);
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .content-wrapper {
      gap: var(--space-xs-m);
  }

  .text-section-wrapper {
      gap: var(--space-sm-m);
  }

  strong {
      font-size: var(--fs-sm-m);
  }
}
