.einsatzbilder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 20px;
}

.einsatzbild-item {
    overflow: hidden;
    position: relative;
    width: 150px;
    height: 150px;
}

.einsatzbild-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Lightbox Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    text-align: center;
}

.overlay img {
    max-height: 90%;
    max-width: 90%;
    margin-top: 2%;
}

.overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Jahresnavigation Einsatzliste (Pretty-URLs /slug/JJJJ/) */
.wm-ev-year-nav {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.wm-ev-year-link {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
}

.wm-ev-year-link:hover {
    text-decoration: none;
    border-color: #999;
}

.wm-ev-year-link.is-active {
    font-weight: 700;
    background: #f0f0f0;
    border-color: #999;
}
