/* 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 */
.exercise-wrapper {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  padding-top: 1rem;
}

/* Dialog Container: image + Redemittel box */
.dialog-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
  gap: 1.5rem;
}

/* Dialog Image */
.dialog-image {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dialog Illustration */
.dialog-illustration {
  max-width: 80%;
  max-height: 15rem;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Redemittel box (speaking prompts) */
.redemittel-box {
  font-family: 'League Spartan', sans-serif;
  background-color: #f5f8fa;
  border: 0.2rem solid #00699F;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 50rem;
}

.redemittel-line {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #00699F;
  line-height: 1.6;
  margin: 0.35rem 0;
}

.redemittel-line:first-child {
  margin-top: 0;
}

.redemittel-line:last-child {
  margin-bottom: 0;
}

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

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

