/* Audio content player (ozvuchka statei). Adaptiv desktop/rezina. */

.acp {
  box-sizing: border-box;
  min-height: 64px;
  margin: 14px 0;
  padding: 12px 14px;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  background: #fafafa;
  color: #1f2328;
  font-family: inherit;
  line-height: 1.2;
}
.acp * { box-sizing: border-box; }

/* --- loader (do initsializacii JS): pustoe mesto -> spinner -> pleer --- */
.acp__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}
.acp__spinner {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border: 2px solid #d6d6da;
  border-top-color: #b32d36;
  border-radius: 50%;
  animation: acp-spin .8s linear infinite;
}
@keyframes acp-spin { to { transform: rotate(360deg); } }

/* Plavnoe poyavlenie tela pleera. */
.acp--ready .acp__body { animation: acp-fade .25s ease both; }
@keyframes acp-fade {
  from { opacity: 0; transform: translateY(2px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .acp__spinner { animation-duration: 1.4s; }
  .acp--ready .acp__body { animation: none; }
}

/* --- verhnyaya stroka: play + vremya + polosa --- */
.acp__bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.acp__play {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b32d36;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background .15s ease;
}
.acp__play:hover { background: #9a2730; }
.acp__play:active { transform: translateY(1px); }
.acp__play .acp__i { fill: currentColor; }
.acp__i-pause { display: none; }
.acp--playing .acp__i-play { display: none; }
.acp--playing .acp__i-pause { display: inline; }

.acp__time {
  flex: 0 0 auto;
  font-size: 12px;
  color: #6b7280;
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: center;
}

/* --- polosa peremotki --- */
.acp__seek { flex: 1 1 auto; min-width: 60px; }

.acp__seek,
.acp__vol-range {
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

/* track */
.acp__seek::-webkit-slider-runnable-track,
.acp__vol-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: #d6d6da;
}
.acp__seek::-moz-range-track,
.acp__vol-range::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: #d6d6da;
}
/* zapolnennaya chast (Firefox) */
.acp__seek::-moz-range-progress,
.acp__vol-range::-moz-range-progress {
  height: 4px;
  border-radius: 2px;
  background: #b32d36;
}
/* thumb */
.acp__seek::-webkit-slider-thumb,
.acp__vol-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  border: 0;
  border-radius: 50%;
  background: #b32d36;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}
.acp__seek::-moz-range-thumb,
.acp__vol-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: #b32d36;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}
.acp__seek:focus,
.acp__vol-range:focus { outline: none; }

/* --- kontroly v toy zhe stroke: golos (select) + skorost --- */
.acp__voice-select {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid #d6d6da;
  border-radius: 8px;
  background: #fff;
  color: #3a3f47;
  font-size: 13px;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
}

.acp__rate {
  flex: 0 0 auto;
  min-width: 54px;
  padding: 6px 10px;
  border: 1px solid #d6d6da;
  border-radius: 8px;
  background: #fff;
  color: #3a3f47;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* --- temnaya tema (esli na sayte est) --- */
@media (prefers-color-scheme: dark) {
  .acp {
    background: #1c1f24;
    border-color: #2c313a;
    color: #e6e8eb;
  }
  .acp__voice-select,
  .acp__rate { background: #24282f; color: #d6d9de; border-color: #363c46; }
  .acp__seek::-webkit-slider-runnable-track,
  .acp__vol-range::-webkit-slider-runnable-track,
  .acp__seek::-moz-range-track,
  .acp__vol-range::-moz-range-track { background: #3a404a; }
  .acp__spinner { border-color: #3a404a; border-top-color: #b32d36; }
}

/* --- uzkie ekrany: szhimaem gap i vremya, chtob vlezlo v odnu stroku --- */
@media (max-width: 480px) {
  .acp__bar { gap: 7px; }
  .acp__time { min-width: 30px; font-size: 11px; }
  .acp__voice-select,
  .acp__rate { padding: 6px; font-size: 12px; }
}
