/**
 * "Listen to this article" player. Brand: ink #14110F, gold #C9A24B, Lato.
 */
.pl-audio {
  margin: 1.5rem 0 2rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(20, 17, 15, 0.12);
  border-left: 3px solid #c9a24b;
  border-radius: 8px;
  background: #faf8f4;
}

.pl-audio__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.pl-audio__icon {
  display: inline-flex;
  color: #c9a24b;
}

.pl-audio__label {
  font-family: Lato, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #14110f;
}

.pl-audio__player {
  display: block;
  width: 100%;
  height: 40px;
}

/* Read-along highlight on the block currently being spoken. */
.pl-audio-reading {
  background: linear-gradient(90deg, rgba(201, 162, 75, 0.18), rgba(201, 162, 75, 0.05));
  box-shadow: -0.4rem 0 0 0 #c9a24b;
  border-radius: 2px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .pl-audio-reading {
    transition: none;
  }
}

