/**
 * Text with Button Layout Styles
 */
.text-with-button-section {
   .text-with-button-wrapper {
      width: 100%;
      
      /* The title should be full width */
      .title-underline {
         width: 100%;
         max-width: 100%;
      }
      
      /* Only the content should be 75% width */
      .section-copy, 
      .button-wrapper {
         max-width: 75%;
         margin-left: 0;
         margin-right: auto;
      }
      
      /* At 1200px and below, make content full width */
      @media (max-width: 1200px) {
         .section-copy, 
         .button-wrapper {
            max-width: 100%;
            width: 100%;
         }
      }
   }

   .section-copy {
      font-family: var(--sans);
      font-size: 1.8rem;
      font-style: normal;
      font-weight: 400;
      line-height: 2.8rem;
      margin-top: 0;
   }
}