.disclosure-title {
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Megrim", system-ui;
    font-weight: bold;
}

.disclosure-subtitle {
  text-align: center;
}

.grading-scale th,
.grading-scale td {
  text-align: center;
}

.grading-scale td {
  white-space: nowrap;
  font-size: 0.75rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.materials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  list-style: none;
  padding-left: 0;
}

.materials-list li {
  margin: 0;
}

.fieldwork-fee,
.fieldwork-motivation {
  font-size: 0.75rem;
}

.page-break {
  /* only does anything at print time */
}

.print-only {
  display: none;
}

@media print {
  html, body {
    background: white;
    color: #000 !important;
  }

  * {
    color: #000 !important;
  }

  .disclosure {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
  }

  h1, h2, h3, h4, p {
    margin-top: 0;
  }

  .page-break {
    page-break-before: always;
  }

  .print-only {
    display: block;
  }
}