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

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

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

/* Person Section */
.person-section {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

/* Text Column */
.text-column {
  flex: 1;
  padding: 0.5rem;
  line-height: 1.5;
  font-size: 1.1rem;
  cursor: pointer;
}

.text-column p {
  margin: 0 0 0.5rem 0;
  position: relative;
  padding-left: 3rem;
}

.text-column p .bullet {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Hotspot */
.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;
}
