/* Puzzles & Games — crossword, word find, quiz modals */

.qop-puzzle-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--panel-margin);
  box-sizing: border-box;
}

.qop-puzzle-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.qop-puzzle-modal__panel {
  position: relative;
  z-index: 1;
  width: min(var(--panel-width), 96vw);
  max-height: min(92vh, 100%);
  overflow: auto;
  box-sizing: border-box;
  padding: calc(var(--panel-margin) + 2vmin) calc(var(--panel-margin) + 2.5vmin)
    calc(var(--panel-margin) + 3vmin);
}

.qop-puzzle-modal__title {
  margin: 0 0 var(--gap-md);
  text-align: center;
  font-size: calc(var(--control-font-size) + 0.25vmin);
}

.qop-puzzle-key-row {
  margin: calc(-1 * var(--gap-sm)) 0 var(--gap-md);
  text-align: center;
}

.qop-puzzle-key-link {
  font-family: var(--body-font);
  font-size: calc(var(--control-font-size) * 0.95);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.qop-puzzle-key-link:hover,
.qop-puzzle-key-link:focus-visible {
  color: var(--color-cream);
  outline: none;
}

.qop-puzzle-modal__lead {
  margin: 0 0 var(--gap-md);
  text-align: center;
  font-size: var(--control-font-size);
  color: rgba(255, 248, 240, 0.9);
  line-height: 1.35;
}

.qop-puzzle-modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
}

.qop-puzzle-toolbar {
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-sm);
}

.qop-puzzle-toolbar--split {
  justify-content: space-between;
  align-items: center;
}

.qop-puzzle-toolbar__timer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}

.qop-puzzle-timer__clock {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  min-width: 4.75rem;
  letter-spacing: 0.03em;
  color: rgba(255, 248, 240, 0.95);
}

.qop-puzzle-toolbar .qop-puzzle-timer__btn,
.qop-puzzle-toolbar .qop-puzzle-reset-btn {
  font-size: calc(var(--control-font-size) * 0.92);
}

@media (max-width: 520px) {
  .qop-puzzle-toolbar--split {
    flex-direction: column;
    align-items: stretch;
  }
  .qop-puzzle-toolbar__timer {
    justify-content: space-between;
  }
}

.qop-puzzle-guest-row {
  width: 100%;
  max-width: 36rem;
  padding: var(--gap-sm) var(--gap-md);
  border-radius: var(--radius-inner);
  background: rgba(255, 248, 240, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.2);
  box-sizing: border-box;
}

.qop-puzzle-guest-row__text {
  margin: 0 0 var(--gap-sm);
  font-size: calc(var(--control-font-size) - 1px);
  line-height: 1.35;
  color: rgba(255, 248, 240, 0.92);
  text-align: center;
}

.qop-puzzle-guest-row .btn {
  width: 100%;
}

.qop-puzzle-modal__x {
  position: absolute;
  top: 1vmin;
  right: 1.5vmin;
  background: transparent;
  border: none;
  color: var(--color-cream);
  font-size: calc(var(--control-font-size) * 1.35);
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.qop-puzzle-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  justify-content: flex-end;
  margin-top: var(--gap-md);
}

.qop-puzzle-message {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  text-align: center;
}

.qop-puzzle-message__text {
  margin: 0;
  color: rgba(255, 248, 240, 0.92);
  line-height: 1.4;
}

.qop-puzzle-message__badge {
  margin: 0.75rem auto 0.95rem;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 248, 240, 0.35);
  box-shadow: 0 0.45rem 1.3rem rgba(0, 0, 0, 0.35);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.qop-puzzle-message__badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qop-puzzle-message__awards {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 248, 240, 0.9);
}

.qop-puzzle-picker {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.qop-puzzle-hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

/* --- Crossword grid --- */
.qop-crossword-grid {
  display: grid;
  grid-template-columns: repeat(var(--qop-cw-cols), minmax(0, var(--qop-cw-cell, 4.2vmin)));
  grid-template-rows: repeat(var(--qop-cw-rows), minmax(0, var(--qop-cw-cell, 4.2vmin)));
  gap: 0;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  --qop-cw-cell: min(4.8vmin, calc(90vw / var(--qop-cw-cols)));
}

.qop-cw-cell {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--title-font);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qop-cw-cell--block {
  background: var(--color-overlay);
  cursor: default;
  pointer-events: none;
}

.qop-cw-cell--play {
  background: var(--color-cream);
  border: 1px solid var(--color-overlay);
  color: var(--color-bg-main);
}

.qop-cw-cell--play.qop-cw-cell--sky {
  background: var(--color-sky);
  color: var(--color-cream);
}

.qop-cw-num-list {
  position: absolute;
  top: 0.1vmin;
  left: 0.1vmin;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.05;
  pointer-events: none;
}

.qop-cw-num {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: max(8px, 0.78vmin);
  line-height: 1;
  color: var(--color-bg-main);
  pointer-events: none;
}

.qop-cw-cell--sky .qop-cw-num-list .qop-cw-num {
  color: var(--color-cream);
}

.qop-cw-letter {
  padding: 0.125vmin;
  min-width: 0.5ch;
  text-align: center;
  font-size: min(3.2vmin, calc(var(--qop-cw-cell, 4.2vmin) * 0.58));
  text-transform: uppercase;
  pointer-events: none;
}

/* Hints: reuse password checklist look */
.qop-puzzle-hints {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
}

.qop-puzzle-hints__heading {
  margin: var(--gap-md) 0 var(--gap-sm);
  font-family: var(--title-font);
  font-size: calc(var(--control-font-size) + 1px);
  color: var(--color-accent);
  text-align: left;
}

.puzzle-hint-rules.pw-rules {
  display: block;
}

/* --- Word find --- */
.qop-wf-wrap {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  touch-action: none;
}

.qop-wf-stack {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
}

.qop-wf-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--qop-wf-cols), minmax(0, var(--qop-wf-cell, 4.2vmin)));
  grid-template-rows: repeat(var(--qop-wf-rows), minmax(0, var(--qop-wf-cell, 4.2vmin)));
  gap: 0;
  user-select: none;
  --qop-wf-cell: min(4.8vmin, calc(88vw / var(--qop-wf-cols)));
}

.qop-wf-found-rings {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.qop-wf-found-ring {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid var(--color-ok);
  border-radius: 0.85vmin;
  background: transparent;
  pointer-events: none;
}

.qop-wf-cell {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: min(3vmin, calc(var(--qop-wf-cell, 4.2vmin) * 0.55));
  padding: 0.125vmin;
  color: var(--color-cream);
  background: transparent;
}

.qop-wf-cell--found {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
}

.qop-wf-sel {
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
  display: none;
  z-index: 3;
  transition:
    left 0.11s cubic-bezier(0.33, 1.15, 0.55, 1),
    top 0.11s cubic-bezier(0.33, 1.15, 0.55, 1),
    width 0.11s cubic-bezier(0.33, 1.15, 0.55, 1),
    height 0.11s cubic-bezier(0.33, 1.15, 0.55, 1);
}

.qop-wf-sel--sky {
  border: 3px solid var(--color-sky);
  border-radius: 0.85vmin;
  background: transparent;
  box-shadow: none;
}

.qop-wf-sel--ok-flash {
  border: 3px solid var(--color-ok);
  border-radius: 0.85vmin;
  background: transparent;
}

/* --- Multiple-choice quiz --- */
.qop-puzzle-modal__panel--quiz {
  position: relative;
  overflow: hidden;
}

.qop-puzzle-modal__body--quiz {
  align-items: stretch;
}

.qop-quiz {
  position: relative;
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
  min-height: 10rem;
}

.qop-quiz-lobby__lead {
  margin: 0 0 var(--gap-md);
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--control-font-size);
  line-height: 1.4;
  color: rgba(255, 248, 240, 0.92);
}

.qop-quiz-lobby__meta {
  margin: var(--gap-sm) 0 var(--gap-md);
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: calc(var(--control-font-size) * 0.92);
  line-height: 1.35;
  color: rgba(255, 248, 240, 0.82);
}

.qop-quiz-difficulty {
  border: none;
  margin: 0 auto var(--gap-md);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-md);
  max-width: 28rem;
}

.qop-quiz-difficulty__legend {
  width: 100%;
  text-align: center;
  font-family: var(--title-font);
  font-size: calc(var(--control-font-size) + 1px);
  color: var(--color-accent);
  padding: 0;
  margin: 0 0 var(--gap-sm);
}

.qop-quiz-difficulty__opt {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-weight: 600;
  color: rgba(255, 248, 240, 0.95);
}

.qop-quiz-difficulty__opt input {
  accent-color: var(--color-accent);
  width: 1.1rem;
  height: 1.1rem;
}

.qop-quiz-begin {
  display: block;
  margin: 0 auto;
}

.qop-quiz-begin:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.qop-quiz-play {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  width: 100%;
}

.qop-quiz-progress {
  text-align: center;
  font-weight: 600;
  color: var(--color-accent);
  font-size: calc(var(--control-font-size) * 0.95);
}

.qop-quiz-timer-wrap {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.qop-quiz-timer-bar {
  flex: 1;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.12);
  overflow: hidden;
}

.qop-quiz-timer-bar__fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(1);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent), var(--color-sky, #6ec8ff));
}

.qop-quiz-timer-num {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  min-width: 2rem;
  text-align: right;
  color: rgba(255, 248, 240, 0.95);
}

.qop-quiz-question {
  margin: 0;
  font-size: calc(var(--control-font-size) + 2px);
  line-height: 1.45;
  color: rgba(255, 248, 240, 0.96);
  text-align: center;
}

.qop-quiz-choices {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  width: 100%;
}

.qop-quiz-choices-wrap {
  position: relative;
}

.qop-quiz-choices--blur {
  filter: blur(6px);
}

.qop-quiz-preoverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: var(--radius-inner);
  background: rgba(10, 8, 18, 0.24);
  backdrop-filter: blur(2px);
}

.qop-quiz-preoverlay.hidden {
  display: none;
}

.qop-quiz-preoverlay__ring {
  --qop-pre-deg: 360deg;
  width: clamp(4.2rem, 12vw, 6.2rem);
  height: clamp(4.2rem, 12vw, 6.2rem);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(16, 12, 26, 0.88) 56%, transparent 57%),
    conic-gradient(var(--color-sky, #6ec8ff) var(--qop-pre-deg), rgba(255, 248, 240, 0.24) 0deg);
  box-shadow:
    0 0 0 2px rgba(255, 248, 240, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.35);
}

.qop-quiz-preoverlay__num {
  font-family: var(--title-font);
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-weight: 800;
  color: rgba(255, 248, 240, 0.98);
  line-height: 1;
}

.qop-quiz-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: var(--gap-sm) var(--gap-md);
  border-radius: var(--radius-inner);
  border: 1px solid rgba(255, 248, 240, 0.18);
  background: rgba(255, 248, 240, 0.06);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.qop-quiz-choice:hover,
.qop-quiz-choice:focus-within {
  border-color: rgba(255, 248, 240, 0.35);
  background: rgba(255, 248, 240, 0.1);
}

.qop-quiz-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.qop-quiz-choice__ui {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 248, 240, 0.45);
  box-shadow: inset 0 0 0 2px rgba(21, 13, 39, 0.35);
  background: rgba(21, 13, 39, 0.25);
  position: relative;
}

.qop-quiz-choice input:focus-visible + .qop-quiz-choice__ui {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.qop-quiz-choice input:checked + .qop-quiz-choice__ui {
  border-color: var(--color-accent);
  background: radial-gradient(circle at 35% 30%, #fff6, transparent 55%), var(--color-accent);
  box-shadow:
    inset 0 0 0 3px rgba(21, 13, 39, 0.45),
    0 0 0 2px rgba(255, 248, 240, 0.2);
}

.qop-quiz-choice input:checked + .qop-quiz-choice__ui::after {
  content: '';
  position: absolute;
  inset: 0.28rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.qop-quiz-choice__letter {
  flex-shrink: 0;
  font-weight: 800;
  font-family: var(--title-font);
  color: var(--color-accent);
  min-width: 1.25rem;
}

.qop-quiz-choice__text {
  flex: 1;
  font-size: var(--control-font-size);
  line-height: 1.35;
  color: rgba(255, 248, 240, 0.94);
}

.qop-quiz-submit {
  align-self: center;
  margin-top: var(--gap-sm);
}

.qop-quiz-feedback {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  padding: var(--gap-md);
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.qop-quiz-feedback.hidden {
  display: none;
}

.qop-quiz-feedback__card {
  width: 100%;
  max-width: 26rem;
  padding: calc(var(--gap-md) + 0.5vmin) var(--gap-lg);
  text-align: center;
  box-sizing: border-box;
}

.qop-quiz-feedback__title {
  margin: 0 0 var(--gap-sm);
  font-size: calc(var(--control-font-size) + 4px);
  color: var(--color-accent);
}

.qop-quiz-feedback__line {
  margin: 0 0 var(--gap-sm);
  font-size: calc(var(--control-font-size) + 2px);
  line-height: 1.45;
  color: rgba(255, 248, 240, 0.96);
}

.qop-quiz-feedback__letter {
  display: inline-block;
  font-weight: 800;
  font-family: var(--title-font);
  color: var(--color-accent);
  margin-right: 0.15em;
}

.qop-quiz-feedback__detail {
  margin: 0 0 var(--gap-md);
  font-size: var(--control-font-size);
  color: rgba(255, 248, 240, 0.88);
}

.qop-quiz-feedback__card .btn {
  min-width: 12rem;
}

.qop-howto {
  width: min(34rem, 96vw);
  margin: 0 auto;
}

.qop-howto__lead {
  margin: 0 0 var(--gap-sm);
  text-align: center;
  color: rgba(255, 248, 240, 0.92);
}

.qop-howto__demo {
  margin: 0 auto;
  width: fit-content;
}

.qop-howto__stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.qop-howto__nav {
  border: 0;
  background: transparent;
  color: rgba(255, 248, 240, 0.88);
  font-size: 1.65rem;
  line-height: 1;
  padding: 0.15rem;
  cursor: pointer;
}

.qop-howto__nav:hover,
.qop-howto__nav:focus-visible {
  color: var(--color-sky, #6ec8ff);
}

.qop-howto__steps {
  margin: 0.45rem 0 0;
  display: flex;
  justify-content: center;
  gap: 0.42rem;
}

.qop-howto__stepdot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 240, 0.8);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.qop-howto__stepdot.is-active {
  background: var(--color-sky, #6ec8ff);
  border-color: var(--color-sky, #6ec8ff);
}

.qop-howto-grid {
  position: relative;
  display: grid;
  gap: 2px;
  background: rgba(255, 248, 240, 0.08);
  padding: 0.35rem;
  border-radius: 0.65rem;
}

.qop-howto-grid--crossword {
  grid-template-columns: repeat(9, minmax(0, 1.65rem));
}

.qop-howto-grid--wordfind {
  grid-template-columns: repeat(8, minmax(0, 1.75rem));
  gap: 0;
}

.qop-howto-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-cream);
  color: #261142;
  border: 1px solid rgba(22, 9, 32, 0.22);
  border-radius: 0.18rem;
  display: grid;
  place-items: center;
  font-family: var(--title-font);
  font-weight: 700;
  overflow: hidden;
}

/* Match real word find: letters sit on transparent cells (pill shows selection). */
.qop-howto-grid--wordfind .qop-howto-cell {
  background: transparent;
  border: none;
  color: var(--color-cream);
  font-weight: 600;
}

.qop-howto-cell--block {
  background: #241338;
  border-color: rgba(255, 248, 240, 0.15);
}

.qop-howto-cell--block .qop-howto-cell__letter,
.qop-howto-cell--block .qop-howto-cell__num {
  display: none;
}

.qop-howto-cell__num {
  position: absolute;
  top: 0.08rem;
  left: 0.15rem;
  font-family: var(--body-font);
  font-size: 0.56rem;
  font-weight: 700;
  color: rgba(38, 17, 66, 0.82);
}

.qop-howto-cell__letter {
  font-size: 0.96rem;
  line-height: 1;
}

.qop-howto-grid--crossword .qop-howto-cell--hl {
  background: var(--color-sky, #6ec8ff);
  color: #fff;
}

.qop-howto-grid--crossword .qop-howto-cell--found {
  background: #7ecf7a;
  color: #fff;
}

.qop-howto-grid--wordfind .qop-howto-cell--hl {
  background: transparent;
  color: var(--color-cream);
}

.qop-howto-grid--wordfind .qop-howto-cell--found {
  background: transparent;
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
}

.qop-howto-cell--focus::after {
  content: '';
  position: absolute;
  inset: -0.4rem;
  border: 3px solid #ff4141;
  border-radius: 999px;
  pointer-events: none;
}

.qop-howto-cell--dir-a {
  box-shadow: inset 0 0 0 3px rgba(80, 187, 255, 0.9);
}

.qop-howto-cell--dir-d {
  box-shadow: inset 0 0 0 3px rgba(255, 191, 74, 0.95);
}

.qop-howto-ring {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid var(--color-sky, #6ec8ff);
  background: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.qop-howto-ring--ok {
  border-color: var(--color-ok, #7ecf7a);
}

/* Wordfind demo: same stadium geometry + motion as live .qop-wf-sel (JS sets left/top/size/radius/transform). */
.qop-howto-grid--wordfind .qop-howto-ring--live {
  transition:
    left 0.11s cubic-bezier(0.33, 1.15, 0.55, 1),
    top 0.11s cubic-bezier(0.33, 1.15, 0.55, 1),
    width 0.11s cubic-bezier(0.33, 1.15, 0.55, 1),
    height 0.11s cubic-bezier(0.33, 1.15, 0.55, 1),
    transform 0.11s cubic-bezier(0.33, 1.15, 0.55, 1),
    border-color 0.08s linear,
    opacity 0.15s ease;
}

.qop-howto-ring--on {
  opacity: 1;
}

.qop-howto__caption {
  min-height: 2.8em;
  margin: var(--gap-sm) 0 0;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 248, 240, 0.95);
  line-height: 1.35;
}

.qop-howto__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: var(--gap-sm);
  color: rgba(255, 248, 240, 0.92);
  font-size: 0.95rem;
}

.qop-howto__toggle input[type='checkbox'] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-sky, #6ec8ff);
}

.qop-howto__actions {
  justify-content: center;
}
