/* audio.css — brutalist audio player for chapter pages.
   1px black border, white background, monospace label.
   The browser's built-in <audio controls> UI is allowed to render itself;
   we only constrain its width and place it inside our framing box. */

.audio-player {
    margin: 14px 0 22px;
    padding: 10px 12px;
    border: 1px solid #000;
    background: #fff;
}

.audio-player .audio-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #000;
}

.audio-player .audio-label strong {
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.audio-player audio {
    display: block;
    width: 100%;
    /* keep the native control surface — looks consistent on iOS Safari + desktop.
       Constrain only the height so it doesn't bloom on Android Chrome. */
    height: 36px;
}
