/* Wisdom in Proverbs — standard page-level audio row + per-section Play Section */
.audio-inner.audio-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.audio-row .audio-btn {
  flex-shrink: 0;
  padding: 7px 10px;
  font-size: 12px;
  gap: 4px;
  white-space: nowrap;
}
.audio-row .btn-play-main { background: #1F3864; color: #ffffff; }
.audio-row .btn-play-main:hover { background: #2c54a0; }
.audio-row .btn-play-main.playing { background: #2c54a0; }
.audio-row .btn-stop {
  background: #f2f2f2;
  color: #1c1c1e;
  border: 1px solid #cccccc;
}
.audio-row .btn-stop:hover:not(:disabled) { background: #e0e0e0; }
.audio-row .btn-stop:disabled { opacity: 0.4; cursor: default; }
@media (max-width: 380px) {
  .audio-panel { padding: 8px 10px; }
  .audio-inner.audio-row { gap: 4px; }
  .audio-row .audio-btn { padding: 7px 8px; font-size: 11px; }
  .audio-speed-drop-btn { padding: 7px 8px !important; font-size: 11px !important; }
}
.audio-speed-dropdown { position: relative; flex-shrink: 0; }
.audio-speed-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border: 1px solid #cccccc;
  background: #f2f2f2;
  color: #555;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 36px;
  line-height: 1;
}
.audio-speed-drop-btn:hover { background: #e0e0e0; }
.audio-speed-drop-btn:focus { outline: 2px solid #d97706; outline-offset: 2px; }
.audio-speed-caret { font-size: 9px; opacity: 0.75; }
.audio-speed-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  margin: 2px 0 0;
  padding: 4px 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  min-width: 100%;
}
.audio-speed-menu[hidden] { display: none; }
.audio-speed-menu li {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  color: #1c1c1e;
}
.audio-speed-menu li:hover,
.audio-speed-menu li[aria-selected="true"] {
  background: #1F3864;
  color: #ffffff;
}
.section-play-btn {
  display: none;
  align-items: center;
  gap: 5px;
  background: #1F3864;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  min-height: 34px;
}
.section-play-btn:hover { background: #2c54a0; }
.section-play-btn:focus { outline: 2px solid #d97706; outline-offset: 2px; }
.section-play-btn.playing { background: #d97706; }
.acc-body.open > .section-play-btn { display: inline-flex; }
@media print {
  .section-play-btn { display: none !important; }
}
