/* Google Font - League Spartan */
@font-face {
  font-family: 'League Spartan';
  src: url('../assets/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
}

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

/* Main Content – enaka postavitev kot E01_U02_1 */
.main-content {
  display: flex;
  width: 68rem;
  max-width: 80rem;
  margin: 0 auto;
}

.content-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 68rem;
}

/* Dialogue section: audio levo, vsebina desno */
.dialogue-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  gap: 0 1rem;
}

/* Audio Container – na istem mestu kot E01_U02_1 (brez position: absolute) */
.audio-container {
  flex: 0 0 auto;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

/* Vsebina desno od audio (foto + R/F tabela) */
.dialogue-section > .content-column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 2rem;
}

/* Audio Button*/
.audio-button {
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.audio-button:focus {
  outline: none;
}

.audio-button img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease;
} 

.audio-button .pause-icon {
  opacity: 0;
}

.audio-button.playing .play-icon {
  opacity: 0;
}

.audio-button.playing .pause-icon {
  opacity: 1;
}

/* Content column (photo + statements) */
.content-column {
  display: flex;
  gap: 2rem;
}

/* Photo Column */
.photo-column {
  flex: 0 0 auto;
  width: 20rem;
  max-height: 30rem;
  overflow: hidden;
}

.student-photo {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Statements Column */
.statements-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Statement Row */
.statement-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

/* Statement Text */
.statement-text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 0.5rem 0;
}

