/* 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 for audio recorder */
.exercise-wrapper {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  padding: 1rem;
  padding-right: 14rem;
  box-sizing: border-box;
}

/* Prompt list – 2 columns, 3 per row; text left, image right per block */
.prompt-list {
  font-family: 'League Spartan', sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  max-width: 56rem;
  width: 100%;
}

.prompt-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background-color: #f5f8fa;
  border-radius: 0.4rem;
  border: 0.1rem solid #e0e8ee;
}

.prompt-sentence {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #00699F;
  margin: 0;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.prompt-image {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  border-radius: 0.4rem;
  flex-shrink: 0;
}

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

