html {
  --mlzoFontFamilyDefault: "Work Sans", sans-serif;
  --mlzoFontFamilyHeading: "Unica One", sans-serif;
  --mlzoFontWeightHeading: 600;
  --mlzoFontWeightDefault: 400;
  --mlzoLineHeight: 1.5;
  --mlzoLineHeightHeading: 1.1;
  --mlzoLineHeightLabel: 1.1;
  --mlzoSiteMaxWidth: 104rem;
  --mlzoLayoutMaxWidth: 80rem;
  --mlzoLayoutPaddingHorizontal: 1rem;
  --mlzoLayoutPaddingVertical: 0;
  --mlzoGridMaxWidth: 60rem;
  --mlzoBottomMargin: 2.5rem;
  --mlzoBorderRadius: 0.25rem;
  --mlzoTransitionDuration: 300ms;
  --mlzoTransitionEasing: ease;
  --mlzoHeaderHeight: 96px;
  --mlzoColorBlack: #000;
  --mlzoColorWhite: #fff;
  --mlzoColorLightGrey: #D2D2D2;
  --mlzoColorMediumGrey: #666;
  --mlzoColorDarkGrey: #222;
  --mlzoColorAccent: #ff0099;
  --mlzoColorAccent2: #ffcf0d;
  --mlzoColorLink: var(--mlzoColorLightGrey);
  --mlzoColorLinkHover: var(--mlzoColorWhite);
  --mlzoFontHeadingColor: var(--mlzoColorWhite);
  --mlzoFontTextColor: var(--mlzoColorLightGrey);
  --mlzoQuizBackgroundColor: #f09;
  --mlzoColorSuccess: #008000;
  --mlzoColorError: #ad5a08;
  --mlzoColorInfo: #4949d2;
  --mlzoColorDanger: #ff0000;
}

/*
** See _respond-to.scss for breakpoint handling.
*/
/*
** See _breakpoints.scss for the actual breakpoint values.
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  background-color: var(--mlzoColorBlack);
  color: var(--mlzoFontTextColor);
  font-family: var(--mlzoFontFamilyDefault);
}

main {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 37.5em) {
  main {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 62.5em) {
  main {
    margin-top: 7.5rem;
  }
}

.invisible-accessible, .sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.skip-link {
  background: var(--mlzoColorWhite);
  color: var(--mlzoColorBlack);
  padding: 0.625rem 1rem;
  position: absolute;
  transform: translateX(-50%) translateY(-100%);
  transition: transform 0.3s;
  margin: 0 auto;
  left: 50%;
  top: 0;
  font-size: 1rem;
  border-top: 0;
  opacity: 0;
}
.skip-link:link, .skip-link:visited {
  color: black;
}
.skip-link:hover, .skip-link:focus, .skip-link:active {
  text-decoration: underline;
  opacity: 1;
  z-index: 1000;
}
.skip-link:focus {
  transform: translateX(-50%) translateY(0%);
}
.skip-link:focus-visible {
  clip-path: none;
  outline: 2px solid #d88cba;
  outline-offset: 2px;
  transition: all 0.2s ease;
  animation: focus-animation 100ms linear;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin-bottom: 3rem;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon {
  width: 0.75em;
  height: 0.75em;
  vertical-align: -0.125em;
  fill: currentColor;
}

/*
 * NOTE: When loading fonts through @font-face, add:
 * font-display: swap; //avoids FOIT in most modern browsers
 */
h1,
h2,
h3,
h4,
h5,
.alpha,
.beta,
.gamma,
.delta,
.epsilon {
  font-family: var(--mlzoFontFamilyHeading);
  margin-top: 0;
  font-weight: normal;
  margin-bottom: 0.5em;
  color: var(--mlzoFontHeadingColor);
  line-height: var(--mlzoLineHeightHeading);
  text-wrap: balance;
  hyphens: auto;
  hyphenate-limit-chars: 12 6 6;
}

h1,
.alpha {
  font-size: 3rem;
}
@media only screen and (min-width: 62.5em) {
  h1,
  .alpha {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 87.5em) {
  h1,
  .alpha {
    font-size: 4rem;
  }
}

h2,
.beta {
  font-size: 1.5rem;
}
@media only screen and (min-width: 62.5em) {
  h2,
  .beta {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 87.5em) {
  h2,
  .beta {
    font-size: 2rem;
  }
}

h3,
.gamma {
  font-size: 1.25rem;
}
@media only screen and (min-width: 62.5em) {
  h3,
  .gamma {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 87.5em) {
  h3,
  .gamma {
    font-size: 1.75rem;
  }
}

h4,
.delta {
  font-size: 1.125rem;
}
@media only screen and (min-width: 62.5em) {
  h4,
  .delta {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 87.5em) {
  h4,
  .delta {
    font-size: 1.25rem;
  }
}

/* Default text
============================================================= */
p {
  margin: unset;
  font-size: 1rem;
}
@media only screen and (min-width: 62.5em) {
  p {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 87.5em) {
  p {
    font-size: 1.125rem;
  }
}
.rich-text p {
  margin-bottom: var(--mlzoBottomMargin);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.fs-xs {
  font-size: 0.75rem;
}
@media only screen and (min-width: 62.5em) {
  .fs-xs {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .fs-xs {
    font-size: 0.875rem;
  }
}

.fs-s {
  font-size: 0.875rem;
}
@media only screen and (min-width: 62.5em) {
  .fs-s {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .fs-s {
    font-size: 1rem;
  }
}

.fs-m {
  font-size: 1.125rem;
}
@media only screen and (min-width: 62.5em) {
  .fs-m {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .fs-m {
    font-size: 1.25rem;
  }
}

.fs-ml {
  font-size: 1.25rem;
}
@media only screen and (min-width: 62.5em) {
  .fs-ml {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .fs-ml {
    font-size: 1.75rem;
  }
}

.fs-l {
  font-size: 1.5rem;
}
@media only screen and (min-width: 62.5em) {
  .fs-l {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .fs-l {
    font-size: 2rem;
  }
}

.fs-xl {
  font-size: 3rem;
}
@media only screen and (min-width: 62.5em) {
  .fs-xl {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .fs-xl {
    font-size: 4rem;
  }
}

.fs-xxl {
  font-size: 3.5rem;
}
@media only screen and (min-width: 62.5em) {
  .fs-xxl {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .fs-xxl {
    font-size: 5rem;
  }
}

.intro {
  text-wrap: pretty;
  font-size: 1.125rem;
}
@media only screen and (min-width: 62.5em) {
  .intro {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .intro {
    font-size: 1.25rem;
  }
}

/* Default anchors
============================================================= */
main a, footer a {
  transition: color var(--mlzoTransitionDuration) var(--mlzoTransitionEasing);
  color: var(--mlzoColorLink);
}
main a:link, main a:visited, footer a:link, footer a:visited {
  color: var(--mlzoColorLink);
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}
main a:hover, main a:focus-visible, main a:active, footer a:hover, footer a:focus-visible, footer a:active {
  color: var(--mlzoColorLinkHover);
  text-decoration: none;
}
main a:focus-visible, footer a:focus-visible {
  clip-path: none;
  outline: 2px solid #d88cba;
  outline-offset: 2px;
  transition: all 0.2s ease;
  animation: focus-animation 100ms linear;
  border-radius: 0.25rem;
}

/* Paragraph listings
============================================================= */
ul,
ol {
  padding: unset;
  margin: unset;
  list-style-type: "";
}
ul li,
ol li {
  margin: unset;
  padding: unset;
}

.rich-text ol,
.rich-text ul {
  margin: 0 0 1.5lh 0;
  padding: 0 0 0 1.125em;
  list-style: initial;
}
.rich-text ol li,
.rich-text ul li {
  padding-left: 0.5rem;
  margin-bottom: 0.5em;
  position: relative;
}
.rich-text ol li:last-child,
.rich-text ul li:last-child {
  margin-bottom: 0;
}
.rich-text ol li::marker,
.rich-text ul li::marker {
  color: var(--mlzoColorBlack);
  font-weight: 700;
}
.rich-text ol ol, .rich-text ol ul,
.rich-text ul ol,
.rich-text ul ul {
  margin-top: 0.5lh;
}

.rich-text ul {
  list-style: disc;
}
.rich-text ol {
  counter-reset: section;
  list-style: decimal;
}
figcaption, .caption {
  margin-top: 0.5rem;
  font-size: 1rem;
}
@media only screen and (min-width: 62.5em) {
  figcaption, .caption {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 87.5em) {
  figcaption, .caption {
    font-size: 1.125rem;
  }
}

cite {
  font-style: italic;
}

b, strong {
  font-weight: 600;
}

i, em {
  font-style: italic;
}

code {
  font-family: monospace;
}

::selection {
  background: var(--colorTextSelected, #FFE4D6);
}

.label {
  background-color: rgba(255, 255, 255, 0.2);
  height: 1.5rem;
  border-radius: 1.5rem;
  padding: 0.1rem 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}
@media only screen and (min-width: 62.5em) {
  .label {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .label {
    font-size: 1rem;
  }
}
.label .icon {
  width: 1em;
  height: 1em;
}

input {
  padding: 0.5rem 0.75rem;
  border: 1px solid #999;
  border-radius: 4px;
  color: var(--mlzoColorBlack);
  font-size: 1.125rem;
  background-color: var(--mlzoColorWhite);
}
input:focus, input:focus-visible {
  clip-path: none;
  outline: 2px solid #d88cba;
  outline-offset: 2px;
  transition: all 0.2s ease;
  animation: focus-animation 100ms linear;
  border-color: var(--mlzoColorBlack);
}

label {
  color: var(--mlzoColorWhite);
  font-size: 0.925rem;
}

.form__row {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
  grid-template-areas: "label" "input" "help";
}
@media (min-width: 600px) {
  .form__row {
    grid-template-columns: 200px 1fr;
    grid-template-areas: "label input" "empty help";
  }
}
.form__row > label {
  grid-area: label;
}
.form__row > input {
  grid-area: input;
}
.form__row .form__help {
  grid-area: help;
}
.form__row .form__input-group {
  grid-area: input;
  display: flex;
  gap: 0.5rem;
}
.form__row .form__input-group .form__input-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.form__row .form__input-group .form__input-field label {
  font-size: 0.75rem;
  opacity: 0.8;
}
.form__row .form__input-group input {
  width: 100%;
}
.form__row + .form__row {
  margin-top: 1.5rem;
}

.checkbox {
  color: var(--mlzoColorWhite);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin: 1rem 0;
}
.checkbox input[type=checkbox] {
  width: auto;
  min-height: auto;
}

.fieldset--inputrow {
  border-radius: 0.5rem;
  padding: 0.375rem 1rem;
  margin-top: 0.5rem;
  background-color: var(--mlzoColorWhite);
  display: grid;
  gap: 0.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}
.fieldset--inputrow:focus-within {
  clip-path: none;
  outline: 2px solid #d88cba;
  outline-offset: 2px;
  transition: all 0.2s ease;
  animation: focus-animation 100ms linear;
}
.fieldset--inputrow--submit {
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border: none;
  background: none;
  padding: 0;
}
.fieldset--inputrow label {
  color: var(--mlzoColorBlack);
  font-size: 0.925rem;
}
.fieldset--inputrow input {
  padding-inline: 0;
  min-height: 40px;
}
.fieldset--inputrow input:focus, .fieldset--inputrow input:focus-visible {
  outline: none;
}
.fieldset--inputrow textarea {
  border: none;
  padding: 0.25rem 0;
  width: 100%;
  font-size: 1.125rem;
  font-family: inherit;
}
.fieldset--inputrow textarea:focus, .fieldset--inputrow textarea:focus-visible {
  outline: none;
}
.fieldset--inputrow select {
  border: none;
  padding: 0.25rem 0;
  width: 100%;
  font-size: 1.125rem;
  background: transparent;
}
.fieldset--inputrow select:focus, .fieldset--inputrow select:focus-visible {
  outline: none;
}
.fieldset--inputrow .error {
  color: var(--mlzoColorRed);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.fieldset--inputrow .form__help {
  color: var(--mlzoColorBlack);
  opacity: 0.7;
  font-size: 0.8rem;
}

html {
  --_colorButtonBorder: #E5E5E5;
  --_colorButtonBorderHover: #880f54;
  --_colorButtonBackground: #E5E5E5;
  --_colorButtonBackgroundHover: #880f54;
  --_colorButtonText: #000;
  --_colorButtonTextHover: #fff;
}

.button {
  display: inline-flex;
  min-width: fit-content;
  border: 1px solid var(--_colorButtonBorder);
  background-color: var(--_colorButtonBackground);
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  color: var(--_colorButtonText);
  line-height: 1.2;
  transition: all var(--mlzoTransitionDuration) var(--mlzoTransitionEasing);
  appearance: none; /* remove OS button styles */
  -webkit-appearance: none; /* Safari */
}
.button:link, .button:visited {
  color: var(--_colorButtonText);
  text-decoration: none;
}
.button:hover {
  background-color: var(--_colorButtonBackgroundHover);
  color: var(--_colorButtonTextHover);
  border-color: var(--_colorButtonBorderHover);
}
.button:focus, .button:focus-visible {
  clip-path: none;
  outline: 2px solid #d88cba;
  outline-offset: 2px;
  transition: all 0.2s ease;
  animation: focus-animation 100ms linear;
}
.button--primary {
  --_colorButtonBorder: #880f54;
  --_colorButtonBackground: #880f54;
  --_colorButtonText: #fff;
  --_colorButtonBorderHover: #6a0c41;
  --_colorButtonBackgroundHover: #6a0c41;
  --_colorButtonTextHover: #fff;
}
.button--secondary {
  --_colorButtonBackground: transparent;
  --_colorButtonText: currentColor;
}
.button--danger {
  --_colorButtonBorder: #cc0000;
  --_colorButtonBackground: transparent;
  --_colorButtonText: #cc0000;
  --_colorButtonBorderHover: #990000;
  --_colorButtonBackgroundHover: #990000;
  --_colorButtonTextHover: #fff;
}
.button--small {
  padding: 0.1em 0.5rem;
  font-size: 0.875rem;
}
@media only screen and (min-width: 62.5em) {
  .button--small {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .button--small {
    font-size: 1rem;
  }
}
.button--stripped {
  --_colorButtonBorder: transparent;
  --_colorButtonBorderHover: transparent;
  --_colorButtonBackground: transparent;
  --_colorButtonBackgroundHover: transparent;
  padding: 0;
  appearance: none;
  color: var(--mlzoFontTextColor);
}
.button--stripped:hover {
  text-decoration: underline;
  cursor: pointer;
}
.button--as-link {
  background-color: transparent;
  border-color: transparent;
  appearance: none;
  color: var(--mlzoColorLink);
}
.button--outline {
  background-color: transparent;
  border-color: var(--_colorButtonBorder);
  /* Improvement: ensure outline buttons have readable text color on dark backgrounds */
  --_colorButtonText: var(--_colorButtonBorder);
}

button.button {
  line-height: 1; /* normalize spacing */
  appearance: none; /* remove OS button styles */
  -webkit-appearance: none;
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.layout__inner-wrap {
  overflow: hidden;
  margin: 0 auto;
  padding: var(--mlzoLayoutPaddingVertical) var(--mlzoLayoutPaddingHorizontal);
  max-width: var(--mlzoLayoutMaxWidth);
  position: relative;
}
@media only screen and (min-width: 37.5em) {
  .layout__inner-wrap {
    --projectnameLayoutPaddingHorizontal: 2rem;
  }
}
@media only screen and (min-width: 62.5em) {
  .layout__inner-wrap {
    --projectnameLayoutPaddingHorizontal: 3rem;
  }
}
.layout__inner-wrap--has-overflow {
  overflow: visible;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  justify-content: center;
  margin: 0 auto;
  max-width: var(--grid-max-width, none);
  column-gap: 1rem;
}
@media only screen and (min-width: 87.5em) {
  .grid {
    column-gap: 1.5rem;
  }
}
.grid--index {
  gap: 1.5rem;
}
@media only screen and (min-width: 87.5em) {
  .grid--index {
    gap: 1.5rem;
    row-gap: 2.5rem;
  }
}

.grid__column {
  grid-column: 1/-1;
  grid-row: auto;
}
.grid__column--full {
  grid-column: 1/-1;
}
.grid__column--wide {
  grid-column: 1/-1;
}
@media only screen and (min-width: 46.875em) {
  .grid__column--wide {
    grid-column: 2/-2;
  }
}
.grid__column--medium {
  grid-column: 1/-1;
}
@media only screen and (min-width: 46.875em) {
  .grid__column--medium {
    grid-column: 2/-2;
  }
}
@media only screen and (min-width: 62.5em) {
  .grid__column--medium {
    grid-column: 3/-3;
  }
}
.grid__column--half {
  grid-column: 1/-1;
}
@media only screen and (min-width: 37.5em) {
  .grid__column--half {
    grid-column: span 6;
  }
}
.grid__column--third {
  grid-column: 1/-1;
}
@media only screen and (min-width: 37.5em) {
  .grid__column--third {
    grid-column: span 4;
  }
}
.grid__column--index {
  grid-column: 1/-1;
  container-type: inline-size;
}
@media only screen and (min-width: 46.875em) {
  .grid__column--index {
    grid-column: span 6;
  }
}
@media only screen and (min-width: 75em) {
  .grid__column--index {
    grid-column: span 4;
  }
}
.grid__column--index-wide {
  container-type: inline-size;
  grid-column: 1/-1;
}
@media only screen and (min-width: 46.875em) {
  .grid__column--index-wide {
    grid-column: 2/-2;
  }
}

.header a:focus-visible {
  clip-path: none;
  outline: 2px solid #d88cba;
  outline-offset: 2px;
  transition: all 0.2s ease;
  animation: focus-animation 100ms linear;
}
.header__inner {
  padding-block: 0.5rem 0.25rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 768px) {
  .header__inner {
    padding-block: 1rem 0.25rem;
    align-items: flex-start;
  }
}
.header__logo {
  width: 5rem;
  margin-right: auto;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .header__logo {
    width: auto;
  }
}
.header__logo img {
  width: 90px;
  height: auto;
}
@media only screen and (min-width: 87.5em) {
  .header__logo img {
    width: 100px;
    height: auto;
  }
}

.navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .navigation ul {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
}
.navigation ul + ul {
  border-top: 1px solid var(--mlzoColorMediumGrey);
  padding-top: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .navigation ul + ul {
    padding-top: 0;
    border-top: none;
    margin-top: 0;
  }
}
.navigation li.menu-item {
  list-style: none;
  padding: 0 0.5rem;
}
.navigation li.divider {
  border-top: 1px solid var(--mlzoColorMediumGrey);
}
@media (min-width: 768px) {
  .navigation li.divider {
    border-left: 1px solid var(--mlzoColorMediumGrey);
    height: 1rem;
  }
}
.navigation a, .navigation .menu-link-btn {
  font-family: var(--mlzoFontFamilyHeading);
  color: var(--mlzoColorWhite);
  text-decoration: none;
  font-size: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .navigation a, .navigation .menu-link-btn {
    font-size: 24px;
  }
}
.navigation a:hover, .navigation a:focus-visible, .navigation a:active, .navigation .menu-link-btn:hover, .navigation .menu-link-btn:focus-visible, .navigation .menu-link-btn:active {
  text-decoration: underline;
}
.navigation a:focus-visible, .navigation .menu-link-btn:focus-visible {
  clip-path: none;
  outline: 2px solid #d88cba;
  outline-offset: 2px;
  transition: all 0.2s ease;
  animation: focus-animation 100ms linear;
}
.navigation__main__public {
  order: 1;
}
@media (min-width: 768px) {
  .navigation__main__public {
    order: 2;
    margin-top: 0.5rem;
  }
}
.navigation__main__authenticated, .navigation__main__service {
  order: 2;
}
@media (min-width: 768px) {
  .navigation__main__authenticated, .navigation__main__service {
    order: 1;
  }
}
.navigation__main__authenticated li.menu-item a, .navigation__main__authenticated li.menu-item .menu-link-btn, .navigation__main__service li.menu-item a, .navigation__main__service li.menu-item .menu-link-btn {
  color: var(--mlzoFontTextColor);
  font-size: 1.125rem;
}
@media only screen and (min-width: 62.5em) {
  .navigation__main__authenticated li.menu-item a, .navigation__main__authenticated li.menu-item .menu-link-btn, .navigation__main__service li.menu-item a, .navigation__main__service li.menu-item .menu-link-btn {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .navigation__main__authenticated li.menu-item a, .navigation__main__authenticated li.menu-item .menu-link-btn, .navigation__main__service li.menu-item a, .navigation__main__service li.menu-item .menu-link-btn {
    font-size: 1.25rem;
  }
}
.navigation__main {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .navigation__main {
    position: fixed;
    top: var(--mlzoHeaderHeight);
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    flex-direction: column;
    padding: 3rem 1rem;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
  }
  .navigation__main.active {
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

footer.footer {
  margin: 5rem 0 2rem;
}

/* Menu Button 1 */
.menu-toggle {
  height: 48px;
  width: 40px;
  cursor: pointer;
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle__text {
  color: var(--mlzoColorWhite);
  font-family: var(--mlzoFontFamilyHeading);
  position: absolute;
  bottom: 0;
  left: 0;
}

.menu-toggle span.menu-toggle__lines,
.menu-toggle span.menu-toggle__lines::before,
.menu-toggle span.menu-toggle__lines::after {
  background: var(--mlzoColorWhite);
  border-radius: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 2px;
  margin-top: 13px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.menu-toggle span.menu-toggle__lines {
  left: 6px;
}

.menu-toggle span.menu-toggle__lines::before {
  margin-top: -9px;
}

.menu-toggle span.menu-toggle__lines::after {
  margin-top: 9px;
}

.menu-toggle.active span.menu-toggle__lines {
  background: transparent;
}

.menu-toggle.active span.menu-toggle__lines::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-toggle.active span.menu-toggle__lines::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.quizheader {
  display: flex;
  flex-direction: column;
}
.quizheader__meta {
  order: 1;
  font-size: 0.75rem;
}
@media only screen and (min-width: 62.5em) {
  .quizheader__meta {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .quizheader__meta {
    font-size: 0.875rem;
  }
}
.quizheader__title {
  order: 2;
}

.quizbody {
  position: relative;
}
.quizbody:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(60% - 0rem);
  background-color: var(--mlzoQuizBackgroundColor);
}
.quizbody__meta {
  margin-bottom: 1rem;
}
.quizbody__videocontainer {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 46.875em) {
  .quizbody__videocontainer {
    margin-top: 4rem;
  }
}
.quizbody__videolink {
  padding: 0.5rem 0 1rem;
  color: var(--mlzoColorBlack);
  display: flex;
  justify-content: flex-end;
}
.quizbody__videolink a:link, .quizbody__videolink a:visited {
  color: var(--mlzoColorBlack);
  font-size: 0.75rem;
}
@media only screen and (min-width: 62.5em) {
  .quizbody__videolink a:link, .quizbody__videolink a:visited {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .quizbody__videolink a:link, .quizbody__videolink a:visited {
    font-size: 0.875rem;
  }
}
.quizbody__videolink a:focus-visible {
  clip-path: none;
  outline: 2px solid var(--mlzoColorBlack);
  outline-offset: 2px;
  transition: all 0.2s ease;
  animation: focus-animation 100ms linear;
}
.quizbody__share {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.quiz-share {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mlzoColorBlack);
}

.quizpanels {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 46.875em) {
  .quizpanels {
    margin-top: 4rem;
  }
}
.quizpanels__actions {
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1rem;
}
.quizpanels__tabcontent iframe {
  width: 100%;
  height: 1000px;
}

.quiz-player {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (min-width: 62.5em) {
  .quiz-player {
    flex-direction: row;
    align-items: flex-start;
  }
}
.quiz-player__video {
  width: 100%;
}
@media only screen and (min-width: 62.5em) {
  .quiz-player__video {
    position: sticky;
    top: 2rem;
    width: 45%;
    flex-shrink: 0;
  }
}
.quiz-player__video iframe, .quiz-player__video .oembed-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.quiz-player__content {
  flex-grow: 1;
  width: 100%;
}
.quiz-player__nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(var(--mlzoColorBlackRGB, 0, 0, 0), 0.05);
  border-radius: 4px;
}
.quiz-player__nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.quiz-player__nav-btn:hover {
  background: #f0f0f0;
  border-color: var(--mlzoColorPrimary, #d88cba);
}
.quiz-player__nav-btn--active {
  background: var(--mlzoColorPrimary, #d88cba);
  color: #fff;
  border-color: var(--mlzoColorPrimary, #d88cba);
}
.quiz-player__nav-btn--answered {
  border-color: var(--mlzoColorPrimary, #d88cba);
  color: var(--mlzoColorPrimary, #d88cba);
  font-weight: bold;
}
.quiz-player__fragments {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.quiz-player__fragment {
  background: #fff;
  color: #333;
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #eee;
  transition: all 0.2s ease;
}
.quiz-player__fragment--active {
  border-left-color: var(--mlzoColorPrimary, #d88cba);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.quiz-player__fragment--correct {
  border-left-color: #4CAF50;
}
.quiz-player__fragment--incorrect {
  border-left-color: #F44336;
}
.quiz-player__fragment h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.quiz-player__status-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(var(--mlzoColorBlackRGB, 0, 0, 0), 0.9);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.quiz-player__progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.quiz-player__progress-inner {
  height: 100%;
  background: var(--mlzoColorPrimary, #d88cba);
  transition: width 0.3s ease;
}
.quiz-player__autosave-indicator {
  font-size: 0.75rem;
  opacity: 0.7;
}
.quiz-player__autosave-indicator--saving {
  opacity: 1;
  color: var(--mlzoColorPrimary, #d88cba);
}

.fragment-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media only screen and (min-width: 37.5em) {
  .fragment-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.fragment-row--single {
  grid-template-columns: 1fr;
}
.fragment-row__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.fragment-row__field label {
  font-weight: bold;
  font-size: 0.8rem;
  color: #333;
}
.fragment-row__field input, .fragment-row__field select {
  padding: 0.6rem;
  border: 1px solid #777;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  background: #fff;
  color: #000;
}
.fragment-row__field input:focus, .fragment-row__field select:focus {
  border-color: var(--mlzoColorPrimary, #d88cba);
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--mlzoColorPrimaryRGB, 216, 140, 186), 0.2);
}
.fragment-row__field input:disabled, .fragment-row__field select:disabled {
  background: #f5f5f5;
  color: #555;
  cursor: not-allowed;
}
.fragment-row__solution {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #eee;
  font-size: 0.9rem;
}
.fragment-row__solution-label {
  font-weight: bold;
  color: #666;
  margin-right: 0.5rem;
}
.fragment-row__solution-value {
  color: #333;
}

.quiz-submit-form {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(var(--mlzoColorBlackRGB, 0, 0, 0), 0.05);
  border-radius: 4px;
}
.quiz-submit-form h2 {
  margin-top: 0;
}

.indexheader {
  display: flex;
  flex-direction: column;
}
.indexheader__title {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 46.875em) {
  .indexheader__title {
    margin-bottom: 3.5rem;
  }
}
@media only screen and (min-width: 75em) {
  .indexheader__title {
    margin-bottom: 5rem;
  }
}

.card {
  border-radius: var(--mlzoBorderRadius);
  background-color: var(--mlzoColorLightGrey);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:focus-within {
  clip-path: none;
  outline: 2px solid #d88cba;
  outline-offset: 2px;
  transition: all 0.2s ease;
  animation: focus-animation 100ms linear;
}
.grid__column > .card {
  height: 100%;
}
.card__content {
  order: 2;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  color: var(--mlzoColorBlack);
}
.card__visual {
  order: 1;
  background-color: var(--mlzoColorLightGrey);
  overflow: hidden;
  border-radius: var(--mlzoBorderRadius) var(--mlzoBorderRadius) 0 0;
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
  background-color: var(--mlzoColorDarkGrey);
}
.card__visual div, .card__visual picture {
  width: 100%;
  height: 100%;
}
.card__visual img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.card__title {
  order: 2;
  color: var(--mlzoColorBlack);
}
.card__title a:link, .card__title a:visited {
  color: var(--mlzoColorBlack);
  text-decoration: none;
}
.card__title a:hover, .card__title a:focus-visible, .card__title a:active {
  text-decoration: underline;
}
.card__title a:focus-visible {
  outline: none;
}
.card__title a:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}
.card__meta {
  order: 1;
}
.card__labels {
  margin-top: auto;
  order: 3;
}
.card__description {
  order: 4;
}
.card__actions {
  order: 5;
  margin-top: 1rem;
}
.card .dates {
  font-size: 0.875rem;
}
@media only screen and (min-width: 62.5em) {
  .card .dates {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .card .dates {
    font-size: 1rem;
  }
}
.card--wide {
  background-color: var(--mlzoColorDarkGrey);
  flex-direction: row;
  color: var(--mlzoFontTextColor);
}
@container (max-width: 500px) {
  .card--wide {
    flex-direction: column;
  }
}
.card--wide .card__content {
  flex: 1 1 auto;
}
.card--wide .card__visual {
  flex: 0 0 30%;
}
.card--wide .card__title {
  order: 1;
}
.card--wide .card__meta {
  order: 2;
  color: var(--mlzoFontTextColor);
}
.card--wide .card__description {
  margin-top: 1rem;
  color: var(--mlzoFontTextColor);
}
.card--wide .card__actions {
  margin-top: 2rem;
}
.card:has(.card__actions) .card__title a:hover, .card:has(.card__actions) .card__title a:focus-visible, .card:has(.card__actions) .card__title a:active {
  text-decoration: underline;
}
.card:has(.card__actions) .card__title a:after {
  display: none;
}

.admin {
  background: #421a42;
}
.admin__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.admin__header h1 {
  margin-bottom: 0;
}
.admin__actions {
  margin-block: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.admin__menu {
  margin-block: 1rem;
}

.admin-table {
  --_colorButtonBorder: var(--mlzoColorLightGrey);
  --_colorButtonBorderHover: var(--mlzoColorLightGrey);
  --_colorButtonBackground: transparent;
  --_colorButtonBackgroundHover: var(--mlzoColorLightGrey);
  --_colorButtonText: var(--mlzoColorLightGrey);
  --_colorButtonTextHover: var(--mlzoColorDarkGrey);
  width: 100%;
  border-collapse: collapse;
}
.admin-table tr {
  border-bottom: 1px solid #fff;
}
.admin-table tr[style*=background-color] td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-block: 0.75rem;
  padding-inline: 0.5rem;
}
.admin-table th {
  text-align: left;
}

.admin-content {
  flex-direction: row;
  gap: 1rem;
}
.admin-content aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

form .form-group {
  width: 100%;
  display: flex;
  flex-direction: row;
}
form .form-group input, form .form-group textarea, form .form-group button, form .form-group select {
  flex: 1;
}

/* Improvement: ensure EasyMDE toolbar and editor have clear contrast in dark admin theme */
.editor-toolbar {
  background-color: #f5f5f5; /* Light gray background for the toolbar */
  border-color: #ddd;
  opacity: 1;
}
.editor-toolbar a {
  color: #333 !important; /* Dark icons on light toolbar */
}
.editor-toolbar a:hover {
  background-color: #e0e0e0 !important;
  border-color: #ccc !important;
}
.editor-toolbar i {
  color: #333 !important;
}

.CodeMirror {
  background-color: #fff; /* White background for the editor text area to contrast with dark theme */
  color: #000;
  border-color: #ddd;
}

.editor-statusbar {
  color: #ddd; /* Light status text for dark admin theme */
}

/* Improvement: ensure EasyMDE preview area is readable in admin theme */
.editor-preview, .editor-preview-side {
  background-color: #fff;
  color: #000;
}

article.user {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--mlzoColorDarkGrey);
  padding-bottom: 1.5rem;
}

.user__id {
  font-size: 0.875rem;
}
@media only screen and (min-width: 62.5em) {
  .user__id {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .user__id {
    font-size: 1rem;
  }
}
.user__title {
  display: flex;
  gap: 1rem;
  align-items: first baseline;
  margin-bottom: 0;
}
.user__status {
  padding: 0.1rem 0.5rem;
  font-size: 0.75rem;
}
@media only screen and (min-width: 62.5em) {
  .user__status {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .user__status {
    font-size: 0.875rem;
  }
}
.user__status {
  font-family: var(--mlzoFontFamilyDefault);
}
.user__status.is-admin {
  background-color: var(--mlzoColorAccent2);
  color: var(--mlzoColorBlack);
}
.user__additional-info {
  display: flex;
  gap: 1rem;
}
.user__actions {
  margin-top: 1rem;
  font-size: 0.875rem;
}
@media only screen and (min-width: 62.5em) {
  .user__actions {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .user__actions {
    font-size: 1rem;
  }
}

.profile__actions {
  margin: 1rem 0;
}
.profile__row {
  padding: 0.2rem 0;
  display: flex;
  gap: 1rem;
}
.profile__edit-card {
  margin-top: 2.5rem;
}
.profile__edit-card form {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}
.profile__edit-card label {
  margin-right: 1rem;
}
.profile__action-group {
  margin: 1.5rem 0;
}

.pagination {
  margin-block: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.pagination__nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination__info {
  /* Improvement: ensure pagination info has clear contrast */
  font-size: 0.875rem;
  color: var(--mlzoColorWhite);
  opacity: 1;
}
.pagination__ellipsis {
  padding: 0.1em 0.5rem;
  font-size: 0.875rem;
}

.share__title {
  font-family: var(--mlzoFontHeadline);
  font-size: 0.875rem;
}
@media only screen and (min-width: 62.5em) {
  .share__title {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .share__title {
    font-size: 1rem;
  }
}
.share__links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.share__link {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.share__link svg {
  width: 1.5rem;
  height: 1.5rem;
}
.share__link--facebook:hover {
  background-color: #1877F2;
}
.share__link--mastodon:hover {
  background-color: #6364ff;
}
.share__link--bluesky:hover {
  background-color: #0085ff;
}
.share__link--instagram:hover {
  background-color: #E1306C;
}

.alert {
  margin-block: 1.5rem;
  border: 1px solid var(--mlzoFontTextColor);
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media only screen and (min-width: 46.875em) {
  .alert {
    margin-block: 2.5rem;
  }
}
.alert--success {
  border-color: var(--mlzoColorSuccess);
}
.alert--danger {
  border-color: var(--mlzoColorDanger);
}
.alert--error {
  border-color: var(--mlzoColorError);
}
.alert__close {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  line-height: 1;
  font-size: 1.25rem;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.6;
}
.alert__close:hover {
  opacity: 1;
}

.confirm-dialog {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 0;
  background: var(--mlzoColorDarkGrey);
  color: var(--mlzoFontTextColor);
  max-width: 28rem;
  width: calc(100% - 2rem);
}
.confirm-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}
.confirm-dialog__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.confirm-dialog__message {
  margin: 0;
  font-size: 1rem;
}
.confirm-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}
