/* 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;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

/* Illustration block – weather map (left) */
.illustration-block {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.weather-illustration {
  display: block;
  max-width: 28rem;
  max-height: 26rem;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  background: transparent;
}

/* Speech bubble (Redemittel) – image with scattered bubbles, right of weather map */
.speech-bubble {
  flex: 0 1 auto;
  display: block;
  max-width: 28.6rem;
  min-width: 18.2rem;
}

.speech-bubble-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 28.6rem;
  object-fit: contain;
  border-radius: 0.5rem;
}

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

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