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

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

.image-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.image-container img {
  max-width: 18rem;
  max-height: 12rem;
  object-fit: contain;
  border-radius: 0.5rem;
}

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

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

.text-column p {
  margin: 0 0 0.4rem 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;
}
