/* Font from project assets */
@font-face {
  font-family: 'League Spartan';
  src: url('../assets/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Exercise Wrapper – reserve right space so audio recorder never overlaps content */
.exercise-wrapper {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  padding: 1rem;
  padding-right: 14rem;
  box-sizing: border-box;
}

/* Dialogue list */
.dialogue-list {
  font-family: 'League Spartan', sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 52rem;
}

.dialogue-pair {
  margin: 0;
  padding: 0;
}

.dialogue-line {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0.25rem 0;
  padding-left: 2.5rem;
  position: relative;
}

.dialogue-question {
  color: #333;
}

.dialogue-answer {
  color: #00699F;
  font-weight: 500;
}

/* Icon bullets (Icon 1–4) */
.dialogue-icon {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.dialogue-icon.icon-1 {
  background-color: #0c6aa0;
}

.dialogue-icon.icon-2 {
  background-color: #f9b000;
}

.dialogue-icon.icon-3 {
  background-color: #2e7d32;
}

.dialogue-icon.icon-4 {
  background-color: #e65100;
}

/* Hide */
.hidden {
  display: none;
}

/* Hide footer */
footer {
  display: none;
}

@media (max-width: 48rem) {
  .exercise-wrapper {
    padding-right: 8rem;
  }

  .dialogue-line {
    font-size: 1.05rem;
    padding-left: 2.25rem;
  }

  .dialogue-icon {
    width: 1rem;
    height: 1rem;
    top: 0.4rem;
  }
}
