html {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 1152px) {
  html {
    font-size: calc(16 * (100vw - var(--gin-toolbar-x-offset, 0px)) / 1152);
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 20px;
  }
}

p {
  margin-block: 0.8em;
}

h1 {
  margin-top: 0.5em;
  font-family: "Bitter", serif;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
}

h2 {
  margin-top: 0.5em;
  font-family: "Bitter", serif;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  margin-top: 0.5em;
  font-family: "Bitter", serif;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  margin-top: 0.5em;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 1.4rem;
  }
}

h5 {
  margin-top: 0.5em;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 1.2rem;
  }
}

h6 {
  margin-top: 0.5em;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: 1.1rem;
  }
}

a {
  text-underline-offset: 0.12rem;
  text-decoration-thickness: 0.12rem;
  text-decoration-skip-ink: auto;
  transition: text-underline-offset 0.12s ease-in-out;
}
a:hover {
  text-underline-offset: 0.25rem;
}

blockquote {
  margin-inline: 0;
  border-left: 1px solid;
  padding-inline-start: 2em;
  font-weight: 300;
}

address {
  font-style: normal;
}

.icon {
  width: 100%;
  height: 100%;
  fill: currentcolor;
}
.icon__wrapper {
  display: inline-block;
  width: 1em;
  height: 1em;
}

.media--view-mode-embed {
  width: 100%;
}

.media--view-mode-embed-aside {
  margin-bottom: 0.5rem;
  max-width: 50%;
  max-height: 20rem;
}
.media--view-mode-embed-aside.align-right {
  margin-left: 0.5rem;
}
.media--view-mode-embed-aside.align-left {
  margin-right: 0.5rem;
}
.media--view-mode-embed-aside div, .media--view-mode-embed-aside img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 20rem;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
  /* For rounded corners to work, we also need to round the corresponding
   * corners of the table cells. We'll assume a tbale either has thead, tbody and
   * tfoot, or none of these.
   */
}
table caption {
  font-style: italic;
  text-align: left;
}
table td, table th {
  padding: 0.5rem;
  text-align: left;
}
table th {
  font-weight: 500;
  background-color: #ddd;
}
table tfoot th {
  font-weight: 400;
  font-style: italic;
}
table thead:first-of-type th:first-child {
  border-top-left-radius: 0.5rem;
}
table thead:first-of-type th:last-child {
  border-top-right-radius: 0.5rem;
}
table tr:nth-child(odd) {
  background-color: #eee;
}

fieldset {
  position: relative;
  margin-top: 2.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.5em 1em;
}
fieldset legend {
  position: absolute;
  top: -1.5em;
  left: 0;
  padding: 0;
  font-size: 1.1rem;
}
fieldset.radios--wrapper {
  margin-top: 2rem;
}
fieldset.radios--wrapper legend {
  font-size: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5em;
  font-size: 1rem;
  font-weight: 500;
}

input, select, textarea, button {
  appearance: none;
  display: block;
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
  padding: 0.5rem;
  max-width: 100%;
}
input::placeholder, select::placeholder, textarea::placeholder, button::placeholder {
  color: #959595;
}
input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
  border-color: #0056d7;
  background-color: #bed2f3;
  color: #000;
}
input:focus::placeholder, select:focus::placeholder, textarea:focus::placeholder, button:focus::placeholder {
  color: #0056d7;
}
input:disabled, select:disabled, textarea:disabled, button:disabled {
  background-color: #ddd;
}
input:disabled::placeholder, select:disabled::placeholder, textarea:disabled::placeholder, button:disabled::placeholder {
  color: #7d7d7d;
}

.form-item, .form-actions {
  margin-bottom: 1em;
}

.form-item.form-type-radio {
  margin-bottom: 0.25em;
}

.form-item__description,
.form-item .description {
  display: inline-block;
  margin-top: 0.5em;
  color: #7d7d7d;
  font-size: 0.8rem;
}

ul:has(input[type=checkbox]), ul:has(input[type=radio]) {
  padding: 0;
  list-style: none;
}

label:has(input[type=checkbox]), label:has(input[type=radio]), input:where([type=checkbox]) + label, input:where([type=radio]) + label {
  display: inline;
  font-size: 1rem;
  font-weight: 400;
}

input:where([type=checkbox]), input:where([type=radio]) {
  display: inline-block;
  position: relative;
  margin-right: 0.3em;
  border-radius: 0.25rem;
  border-color: #0056d7;
  padding: 0;
  width: 1em;
  height: 1em;
  vertical-align: -2px;
  color: #fff;
}

input[type=radio] {
  border-radius: 0.5rem;
}

input:where([type=checkbox]):checked {
  background-color: #0056d7;
}

input[type=radio]:checked {
  border-width: 0.3rem;
}

input:where([type=checkbox])::before {
  position: absolute;
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23fff' d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
}

input:where([type=checkbox]):checked::before {
  /* Use `visibility` instead of `display` to avoid recalculating layout */
  visibility: visible;
}

input:where([type=checkbox]):disabled {
  border-color: #000;
  background: #ddd;
  color: #7d7d7d;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23000' d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z'/%3E%3C/svg%3E");
  background-position: calc(100% - 0.5em) 0.5em;
  background-repeat: no-repeat;
  background-size: 1em 1em;
  padding-right: 1.75em;
}

select[multiple] {
  background-image: none;
}

input[type=color] {
  background-color: transparent;
  padding: 0;
  width: 2em;
  height: 2em;
}

input[type=range] {
  appearance: auto;
}

input:where([type=submit]), input:where([type=button]), input:where([type=reset]), button:where([type=submit]), button:where([type=button]), button:where([type=reset]) {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #0056d7;
  border-radius: 0.5rem;
  background: #0056d7;
  cursor: pointer;
  padding: 0.6rem;
  max-width: 100%;
  text-decoration: none;
  line-height: 1;
  color: #fff;
  font-weight: 500;
}
input:where([type=submit]):disabled, input:where([type=button]):disabled, input:where([type=reset]):disabled, button:where([type=submit]):disabled, button:where([type=button]):disabled, button:where([type=reset]):disabled {
  border-color: #959595;
  background-color: #959595;
  cursor: not-allowed;
}
input[type=reset], button[type=reset] {
  background-color: #fff;
  color: #0056d7;
}
input[type=reset]:disabled, button[type=reset]:disabled {
  color: #959595;
}

/*# sourceMappingURL=global.css.map */
