/*.container {
  max-width: 760px;
  margin: 40px auto;
  padding: 0 20px;
}*/

.post {
  background: #fff;
  padding: 24px;
  margin-bottom: 40px;
  border-radius: 8px;
}

.tts-player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.post:hover .tts-player {
  opacity: 1;
}

.tts-player span {
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
}

.tts-player span.active {
    color: #2e7d32;
}

.progress {
  flex: 1;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  overflow: hidden;
}

.progress .bar {
  height: 100%;
  width: 0%;
  background: #2e7d32;
  transition: width 0.2s linear;
}

.tts-player input[type=range] {
  width: 70px;
}
