/* Abwesenheitsnotiz – Varianten für index-Abwesenheit-1.html und -2.html */

.ordination-notice {
    color: #44443f;
    font-family: inherit;
    box-sizing: border-box;
}

.ordination-notice__inner {
    text-align: center;
}

.ordination-notice__title {
    margin: 0 0 14px;
    padding: 0;
    color: #44443f;
    font-family: inherit;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
}

.ordination-notice__text {
    margin: 0 auto 8px;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

.ordination-notice__text:last-child {
    margin-bottom: 0;
}

.ordination-notice__text a {
    color: inherit;
    white-space: nowrap;
}

/* Variante 1: schwebende Box, oben mittig */
.ordination-notice--popup {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 9999;
    width: calc(100% - 40px);
    max-width: 620px;
    transform: translateX(-50%);
    border: 1px solid rgba(70, 70, 60, .15);
    border-radius: 3px;
    background: rgba(248, 246, 240, .82);
    box-shadow: 0 8px 30px rgba(40, 40, 35, .07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ordination-notice--popup .ordination-notice__inner {
    padding: 24px 34px 26px;
}

@media (max-width: 600px) {
    .ordination-notice--popup {
        top: 12px;
        width: calc(100% - 24px);
        background: rgba(248, 246, 240, .74);
    }

    .ordination-notice--popup .ordination-notice__inner {
        padding: 19px 20px 21px;
    }

    .ordination-notice__title {
        font-size: 18px;
    }

    .ordination-notice__text {
        font-size: 15px;
    }
}
