.page-default {

  display: flex;
  gap: 1.5rem;

  .column-content {
    width: 50%;

    h1 {
      font-size: 1.6rem;
      line-height: 2rem;
      display: block;
      font-family: var(--font-alt);
      font-weight: 600;
    }

    h2 {
      display: block;
      font-size: 1.2rem;
      line-height: 1.6rem;
    }

    h1:not(:first-child),
    p + h2,
    ul + h2,
    ol + h2,
    a + h2 {
      margin-top: 1rem;
    }

    p,
    ul,
    ol {
      margin-top: 1rem;
      font-size: 1rem;
      line-height: 1.4rem;
    }

    ul,
    ol {

      margin-left: 2rem;

      li + li {
        margin-top: .5rem;
      }

    }

    ul {
      list-style-type: disc;
    }

    ol {
      list-style-type: decimal;
    }

    strong {
      font-weight: 600;
    }

    a:not(.cta) {
      color: var(--alto-red);
      text-decoration-color: transparent;
      transition: .2s ease-in-out;
    }

    a:not(.cta):hover {
      text-decoration-color: var(--alto-red);
    }

    .cta {
      font-size: 1rem;
      padding: 1rem;
      border-radius: 1.5rem;
      display: block;
      text-align: center;
      background-color: var(--alto-red);
      color: var(--alto-white);
      text-decoration-color: transparent;
      margin-top: 1.5rem;
      transition: .3s ease-in-out;
      font-family: var(--font-alt);
    }

    .cta:hover {
      background-color: var(--alto-black);
      text-decoration-color: var(--alto-white);
      box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, 0.5);
      transform: scale(1.05);
    }

  }

  .column-image {

    width: 50%;

    img {
      max-width: 100%;
      max-height: 100%;
      border-radius: 1rem;
      box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, 0.5);
    }

  }

}

@media only screen and (max-width: 700px)  {

  .page-default {

    flex-direction: column-reverse;

    .column-content,
    .column-image {
      width: 100%;
    }

  }

}
