#page-header {
  background-color: #ccc;
  color: #fff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: var(--site-standard-padding-left);
  padding-right: var(--site-standard-padding-right);

  h1, p {
    font-family: Open Sans;
    line-height: 120%;
    letter-spacing: 0%;
  }

  h1, p, a {
    color: #fff;
    margin: 0;
  }

  h1 {
    font-weight: 700;
    font-size: clamp(26px, 6.5vw, 38px);
    max-width: 730px;
  }

  p {
    font-weight: var(--standard-text-font-weight);
    font-size: var(--standard-text);
    line-height: var(--standard-text-line-height);
    max-width: 500px;
  }

  .page-header-center {
    justify-content: center;
    max-width: var(--site-max-width);
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: var(--site-page-width);
    margin: 0 auto;
    display: flex;
    min-height: clamp(385px, 33vw, 700px);
    align-self: center;
  }
  
  &.center .button_wrap {
    justify-content: center;
  }
  
  &.center .page-header-center {
    text-align: center;
    gap: 30px;
    
    h1, p {
      margin: 0 auto;
    }
    
    h1 {
      font-size: clamp(36px, 6.5vw, 58px);
      width: 100%;
      max-width: 100%;
    }
    
    p {
      width: 100%;
      max-width: 100%;
      font-size: 38px;
      font-size: clamp(24px, 2.5vw, 38px);
      line-height: 140%;
    }
  
}