/* Audio-Player-Block – eingebettet in Artikel-Seiten */

.audio-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-left: 3px solid #06b6d4;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}

.audio-player audio {
    flex: 1;
    min-width: 200px;
    max-width: 420px;
    height: 32px;
    accent-color: #06b6d4;
}

.audio-player span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #06b6d4;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

@media (max-width: 480px) {
    .audio-player {
        flex-direction: column;
        align-items: flex-start;
    }

    .audio-player audio {
        width: 100%;
        max-width: 100%;
    }
}

/* Button "Nächstes Kapitel" im Artikel-Footer */
.next-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #06b6d4;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 9999px;
    transition: background 0.25s, transform 0.2s;
}

.next-link:hover {
    background: #0891b2;
    transform: translateX(3px);
}

footer .next-link {
    margin-bottom: 1.25rem;
}

footer .footer-back {
    display: block;
}
