/* =========================================================================
   Hörbuch – Coming soon: nur Wellenform und ein Satz.
   ========================================================================= */
.ab-soon {
    display: grid;
    align-items: center;
    min-height: calc(100svh - 64px - 22rem);
    padding-block: clamp(5rem, 12vh, 9rem);
}
.ab-soon__inner {
    display: grid;
    justify-items: center;
    gap: 1.1rem;
    text-align: center;
}
.ab-soon__inner h1 { max-width: 18ch; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.12; }
.ab-soon__inner p { color: var(--text-muted); font-size: 1.05rem; }

/* Wellenform – identisch zur Startseite, volles Markengold */
.ab-soon__wave {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 64px;
    margin-bottom: .6rem;
}
.ab-soon__wave i {
    width: 4px;
    height: var(--h, 50%);
    border-radius: 2px;
    background: var(--gold);
    transform-origin: bottom;
    animation: ab-wave 1.8s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}
@keyframes ab-wave {
    0%, 100% { transform: scaleY(.55); }
    50%      { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    .ab-soon__wave i { animation: none; }
}
