/* Störer – orientiert sich an der Typografie des Themes ida-v3 */

.ida-inactive-message {
    position: fixed;
    left: auto;
    right: calc(15vw + 2rem);
    bottom: 10em;
    width: 22em;
    z-index: 900;

    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 3em;
    border-radius: 50%;

    font-family: 'ABC Diatype', sans-serif;
    font-size: var(--text-base, 0.85rem);
    line-height: 1.4;
    letter-spacing: 0.005em;

   

    background-color: #000;
    color: #fff;
}

.ida-inactive-message__text {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.ida-inactive-message__link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.ida-inactive-message__link:hover,
.ida-inactive-message__link:focus {
    color: inherit;
    border-bottom-style: dotted;
}

/* Mobil: Navigation liegt oben, Störer volle Breite unten */
@media screen and (max-width: 980px) {
    .ida-inactive-message {
        left: min(2rem, 5vw);
        right: 1rem;
        bottom: 1rem;
        max-width: none;
        padding: 1rem;
    }
}

@media print {
    .ida-inactive-message {
        display: none;
    }
}
