@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-family: helvetica, sans-serif;
    color: #000000;
  }
}

/* Paragraphs */
@media screen and (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 1.375;
  }
}

/* Headings */
@media screen and (max-width: 767px) {
  h1 {
    font-family: helvetica, sans-serif;
    font-size: 40px;
    color: #000000;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-family: helvetica, sans-serif;
    font-size: 32px;
    color: #000000;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-family: helvetica, sans-serif;
    font-size: 24px;
    color: #000000;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  h4 {
    font-family: helvetica, sans-serif;
    font-size: 18px;
    color: #000000;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  h5 {
    font-family: helvetica, sans-serif;
    font-size: 14px;
    color: #000000;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  h6 {
    font-family: helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }

  body {
    font-family: helvetica, sans-serif;
    color: #000000;
    padding: 0 20px; /* global left/right padding on mobile */
  }

  /* Paragraphs */
  p {
    font-size: 16px;
    line-height: 1.375;
  }

  /* Headings: shared rule (values pulled from per-level custom props) */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--h-font), sans-serif;
    font-size: var(--h-size);
    color: var(--h-color);
    font-style: var(--h-style);
    font-weight: var(--h-weight);
    text-decoration: var(--h-decoration);
  }

  /* Per-heading tokens */
  h1 {
    --h-font: helvetica;
    --h-size: 40px;
    --h-color: #000000;
    --h-style: normal;