.exercise-container {
  width: 68rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  position: relative;
}

.audio-container {
  position: absolute;
  top: 1rem;
  left: 0;
  z-index: 10;
}

.content-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 68rem;
  margin: 0 auto;
  padding-top: 1rem;
  padding-left: 5rem;
}

/* Postkarte: ozadje besedila */
.postcard-wrapper {
  width: 100%;
  max-width: 50rem;
  min-height: 32rem;
  background-image: url("background.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  padding: 3rem 4rem 3rem 3rem;
  box-sizing: border-box;
}

.text-column {
  max-width: 28rem;
  padding: 0.5rem 0;
  line-height: 1.6;
  font-size: 1.1rem;
  cursor: pointer;
}

.text-column p {
  margin: 0 0 1rem 0;
}

.hotspot {
  position: relative;
  display: inline;
  padding: 0;
  border-radius: 0.3rem;
  transition: color 0.2s ease;
  cursor: pointer;
}

.hotspot.clicked {
  font-weight: bold;
}

.hotspot.correct {
  color: #258174;
  font-weight: bold;
}

.hotspot.incorrect {
  color: #FF0000;
  font-weight: bold;
}
