.archive-notice-popover {
    position: fixed;
    left: 50%;
    bottom: clamp(2rem, 8vh, 5rem);
    transform: translateX(-50%);
    background: rgb(255 255 255 / 94%);
    color: #071f3d;
    padding: 1em;
    border-radius: 1em;
    border: 1px solid rgb(7 31 61 / 12%);
    z-index: 100000;
    box-shadow: 0 8px 30px rgb(7 31 61 / 18%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1em;
    min-width: 320px;
    max-width: 90vw;
    font: 500 1rem/1.25 "Neue Montreal", Arial, sans-serif;
}

.archive-notice-text {
    display: block;
    text-align: center;
}

.archive-notice-link {
    margin-left: 1em;
    padding: 0.5em 1em;
    border: none;
    border-radius: 0.5em;
    background: #071f3d;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    text-decoration-line: none;
    white-space: nowrap;
    border-bottom: 0;
    box-shadow: none;
    background-image: none;
}

.archive-notice-link:visited,
.archive-notice-link:hover {
    background: color-mix(in srgb, #071f3d 88%, #000);
    color: #fff;
    text-decoration: none;
    text-decoration-line: none;
    border-bottom: 0;
    box-shadow: none;
    background-image: none;
}

.archive-notice-link:focus,
.archive-notice-link:active {
    color: #fff;
    text-decoration: none;
    text-decoration-line: none;
    border-bottom: 0;
    box-shadow: none;
    background-image: none;
}

.archive-notice-close {
    background: none;
    border: none;
    color: #071f3d;
    font-size: 1.4em;
    cursor: pointer;
    margin-right: 0.5em;
    line-height: 1;
}

@media (max-width: 767px) {
    .archive-notice-popover {
        width: calc(100vw - 2rem);
        min-width: 0;
        bottom: 1rem;
        align-items: flex-start;
        gap: 0.75em;
    }

    .archive-notice-link {
        margin-left: 0;
        font-size: 0.9em;
    }
}
