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

/* Exercise Wrapper */
.exercise-wrapper {
  width: 40rem;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

/* Exercise Container */
.exercise-container {
  width: 80rem;
  height: 36rem;
  display: flex;
  flex-direction: column;
}

/* Dialogue Section */
.dialogue-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Dialogue Title */
.dialogue-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00699F;
  margin-bottom: 0.25rem;
}

/* Responses Container */
.responses-container {
  display: flex;
  flex-direction: column;

}

/* Response Row */
.response-row {
  display: flex;
  align-items: center;
  gap: 2rem;

  border-radius: 0.5rem;
}

/* Image Container */
.image-container {
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text Container */
.text-container {
  flex: 1;
}

/* Response Text */
.response-text {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.4;
}

/* Hide footer for this exercise */
footer {
  display: none;
}