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

.content-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 68rem;
  margin: 0 auto;
  padding-top: 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.5;
  font-size: 1.1rem;
  cursor: pointer;
}

.text-block {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.text-number {
  flex: 0 0 1.2rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #00699F;
  line-height: 1.35;
}

.text-block-content {
  flex: 1;
  min-width: 0;
}

.text-divider {
  height: 0;
  margin: 0.75rem 0 0.75rem 1.95rem;
  border: none;
  border-top: 0.1rem solid #00699F;
}

.text-column p {
  margin: 0;
  line-height: 1.35;
}

.text-block-content p + p {
  margin-top: 0.35rem;
}

.text-column p:has(.bullet) {
  position: relative;

  padding-left: 2.2rem;
}

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

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

.hotspot.clicked {
  font-weight: bold;
  text-decoration: line-through;
}

.hotspot.correct {
  color: #258174;
  font-weight: bold;
  text-decoration: line-through;
}

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