.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;
}

.audio-button {
  width: 4rem;
  height: 4rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.audio-button:hover {
  transform: scale(1.05);
}

.audio-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.audio-button .pause-icon {
  display: none;
}

.audio-button.playing .play-icon {
  display: none;
}

.audio-button.playing .pause-icon {
  display: block;
}

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

.person-section {
  display: flex;
  gap: 2rem;
  padding: 1rem;
}

.text-column {
  flex: 1;
  padding: 0.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
  cursor: pointer;
}

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

.image-column {
  flex: 0 0 35%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.food-image {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.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;
}

