.skip-link {
    position: fixed;
    top: 0;
    left: 1rem;
    z-index: 10000;
    padding: .75rem 1rem;
    background: #fff;
    color: #17273e;
    transform: translateY(-120%);
}

.skip-link:focus {
    transform: translateY(0);
}

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, .72);
}

.popup-overlay.active {
    display: flex;
}

.popup {
    position: relative;
    max-width: min(92vw, 900px);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
}

.popup img {
    display: block;
    max-width: 100%;
    height: auto;
}

.popup-close {
    position: absolute;
    top: .5rem;
    right: .5rem;
    z-index: 1;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 50%;
    background: #17273e;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
}

.popup-body {
    padding: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
