.gallery-image-button {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: none;
    cursor: zoom-in;
}
.article-gallery .gallery-image-button img {
    transition: transform 0.2s;
}
.gallery-image-button:hover img,
.gallery-image-button:focus-visible img {
    transform: scale(1.035);
}
.gallery-image-button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}
.news-footer {
    display: block;
    padding: 22px 0 10px;
    border-top: 2px solid #ffe45735;
    text-align: center;
}
.news-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}
.news-footer .footer-links a {
    display: inline-block;
    margin: 0 10px;
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
}
.news-footer .footer-links a:hover {
    color: white;
    text-decoration: underline;
}
.news-footer .footer-links .admin-link {
    font-size: 0.82rem;
    opacity: 0.52;
}
.news-footer .footer-links .admin-link:hover,
.news-footer .footer-links .admin-link:focus-visible {
    opacity: 1;
}
.news-footer .footer-credit {
    margin-top: 6px;
    color: white;
    font-size: 0.97rem;
}
.image-lightbox[hidden] {
    display: none;
}
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 28px 28px;
    background: rgba(8, 8, 18, 0.94);
    cursor: zoom-out;
}
.image-lightbox img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(96vw, 1600px);
    max-height: calc(100vh - 100px);
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 12px 50px #000;
    cursor: default;
}
.lightbox-close {
    position: fixed;
    top: 18px;
    right: 24px;
    z-index: 1001;
    width: 48px;
    height: 48px;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
    outline: none;
    background: var(--gold);
    color: var(--deep);
}
.lightbox-open {
    overflow: hidden;
}
@media (max-width: 620px) {
    .news-footer .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .news-footer .footer-links a {
        margin: 4px 0;
    }
    .image-lightbox {
        padding: 68px 12px 18px;
    }
    .lightbox-close {
        top: 12px;
        right: 12px;
    }
}
