/* =============== –  V1.00 – 01.12.2025  ======================================= */
/* ==== Modal (Galerie/Detail) V.026 - 30.10.2026============================================== */
.img-modal {
    position: fixed;
    inset: 0;
    display: none;

    /* Standard: unsichtbar */
    place-items: center;
    background: rgba(0,0,0,.45);
    z-index: 10000;
}

.img-modal.open {
    display: grid;
}

.img-modal__dialog {
    width: min(900px, 92vw);
    max-height: 90vh;
    background: #fff;
    color: #111;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    overflow: auto;
    padding: 1rem;
}

.img-modal__dialog img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: .75rem;
}

.img-modal__dialog h3 {
    margin: 0 0 .5rem;
    font-size: 1.25rem;
}

.img-modal__dialog #modal-desc {
    line-height: 1.5;
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    border: 0;
    background: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
