/* Shared utility classes for reusable layout behavior. */

.two-columns {
  column-count: 2;
  column-gap: 2em;
  @media only screen and (max-width: 950px) {
    column-count: 1;
    > p {
      line-height: 1.5em;
      &:not(:last-child) {
        margin-bottom: 0.3em;
      }
    }
  }
}
