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

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

/* Audio Button */
.audio-button {
  width: 3.5rem;
  height: 3.5rem;
  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 */
.content-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 68rem;
  margin: 0 auto;
  padding-top: 0.5rem;
  padding-left: 5rem;
}

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

/* Text Column */
.text-column {
  flex: 1;
  padding: 0.35rem;
  line-height: 1.42;
  font-size: 1.2rem;
  cursor: pointer;
}

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

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

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

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

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

/* Triple overlapping bullets (Icon 2+3+4) – vodoravno prekrivanje, prvi bolj v levo */
.bullets-group {
  position: absolute;
  left: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 1.5rem;
}
.bullets-group .bullet {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  transform: none;
}
.bullets-group .bullet.yellow { left: 0; z-index: 1; }
.bullets-group .bullet.green { left: 0.35rem; z-index: 2; }
.bullets-group .bullet.cyan { left: 0.7rem; z-index: 3; }
