.articleAudioPlayer {
  margin: 15px 0;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}

.audioPlayerControls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
}

.audioPlayerPlayPauseButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: #1b2e55;
  cursor: pointer;
  padding: 0;
}
.audioPlayerPlayPauseButton svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.audioPlayerPlayPauseButton:hover {
  background: #2b4a88;
}

.audioPlayerSkipButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.audioPlayerSkipButton svg {
  width: 28px;
  height: 28px;
  fill: #aaa;
}
.audioPlayerSkipButton:hover svg {
  fill: #888;
}

.audioPlayerCurrentTime,
.audioPlayerDuration,
.audioPlayerSpeedButton,
.audioSignupError {
  font-size: 14px;
}

.audioPlayerCurrentTime,
.audioPlayerDuration {
  color: #666;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 32px;
}

.audioPlayerCurrentTime {
  text-align: right;
}

.audioPlayerDuration {
  text-align: left;
}

.audioPlayerProgressBar {
  flex: 1;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  margin: 0 2px;
}

.audioPlayerProgressFilled {
  height: 100%;
  background: #1b2e55;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.audioPlayerSpeedButton {
  background: #e8e8e8;
  border: none;
  border-radius: 4px;
  color: #555;
  cursor: pointer;
  padding: 3px 6px;
  min-width: 38px;
  flex-shrink: 0;
}
.audioPlayerSpeedButton:hover {
  background: #ddd;
  color: #333;
}

.audioSignupPrompt {
  display: none;
  padding: 10px 14px;
  border-top: 1px solid #ddd;
}

.audioSignupLabel {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1b2e55;
  margin-bottom: 8px;
}

.audioSignupInputRow {
  display: flex;
  gap: 6px;
  align-items: center;
}

.audioSignupTurnstileWrapper {
  margin-top: 6px;
}

.audioSignupEmailInput,
.audioSignupOtpInput {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}
.audioSignupEmailInput:focus,
.audioSignupOtpInput:focus {
  border-color: #1b2e55;
}

.audioSignupSubmitButton,
.audioSignupVerifyButton {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1b2e55;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.audioSignupSubmitButton:hover,
.audioSignupVerifyButton:hover {
  background: #2b4a88;
}
.audioSignupSubmitButton:disabled,
.audioSignupVerifyButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.audioSignupSubmitButton.audioSignupButtonFlash,
.audioSignupVerifyButton.audioSignupButtonFlash {
  animation: signupButtonFlash 1.2s ease;
}

@keyframes signupButtonFlash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.factInstructionClick.audioPlaying,
.betaFactInstructionClick.audioPlaying {
  visibility: hidden !important;
  opacity: 0 !important;
}

.audioSignupOtpStep {
  display: none;
}

.audioSignupError {
  display: none;
  color: #a94442;
  margin-top: 8px;
}

/*# sourceMappingURL=article_audio.css.map */
