/* AI Bible Commentary - Commentary audio reader controls.
   Visual design intentionally matches the NET/KJV Bible audio reader button group. */
.aibc-commentary-audio-host {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .65rem;
  margin-bottom: .65rem;
}

.aibc-commentary-audio-group {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #d8b47c;
  border-radius: 999px;
  overflow: hidden;
  background: #fffaf2;
  box-shadow: 0 1px 2px rgba(42, 26, 16, .045);
  vertical-align: middle;
}

.aibc-commentary-audio-button {
  appearance: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  background: #fffaf2;
  color: #7b3f12;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  padding: 8px 12px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.aibc-commentary-audio-button + .aibc-commentary-audio-button {
  border-left: 1px solid #d8b47c;
}

.aibc-commentary-audio-button:hover,
.aibc-commentary-audio-button:focus-visible {
  background: #ffe2a3;
  color: #5d2e09;
  outline: none;
}

.aibc-commentary-audio-button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(123, 63, 18, .28);
}

.aibc-commentary-audio-button[disabled] {
  cursor: not-allowed;
  opacity: .55;
  background: #fff7e8;
  color: #8b735a;
}

.commentary-actions + .aibc-commentary-audio-host,
.commentary-tools-row + .aibc-commentary-audio-host,
.commentary-toolbar + .aibc-commentary-audio-host,
.page-actions + .aibc-commentary-audio-host,
.unit-nav + .aibc-commentary-audio-host,
.chapter-nav + .aibc-commentary-audio-host,
.book-nav + .aibc-commentary-audio-host,
.breadcrumbs + .aibc-commentary-audio-host,
.breadcrumb-list + .aibc-commentary-audio-host {
  margin-top: .65rem;
}

@media (max-width: 700px) {
  .aibc-commentary-audio-host {
    width: 100%;
  }
  .aibc-commentary-audio-group {
    max-width: 100%;
    flex-wrap: wrap;
    border-radius: 14px;
  }
  .aibc-commentary-audio-button {
    flex: 1 1 auto;
    min-width: 8.5rem;
  }
}
