/**
 * Convert font-size from px to rem with px fallback
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {@include fontSize(12px);}
 * 
 */
.pageHeader {
  padding-bottom: 0;
}
.pageHeader__ttl {
  color: var(--color-txt) !important;
}
@media (min-width: 75em) {
  .pageHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(70px, 63.0769230769px + 1.9230769231vw, 100px);
    padding-bottom: 0 !important;
  }
  .pageHeader__ttlWrap {
    margin-left: 0 !important;
    margin-bottom: 0 !important;
  }
  .pageHeader__ttl {
    font-size: 30px !important;
    margin-bottom: 0 !important;
  }
}
