.wronganswer-photo-wrap {
    display: block;
    width: 100%;
}

.wronganswer-photo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(80vh, 920px);
    object-fit: contain;
    background: #0F172A;
    border-radius: 12px;
    cursor: zoom-in;
}

.wronganswer-photo:focus-visible {
    outline: 3px solid #2457D6;
    outline-offset: 2px;
}

.wronganswer-photo-thumb {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    background: #0F172A;
    border-radius: 10px;
    cursor: zoom-in;
}

.photo-viewer {
    width: min(96vw, 1200px);
    max-width: 96vw;
    height: min(96vh, 960px);
    max-height: 96vh;
    padding: 0;
    border: 0;
    background: transparent;
}

.photo-viewer::backdrop {
    background: rgba(15, 23, 42, 0.88);
}

.photo-viewer__frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.photo-viewer__img {
    display: block;
    max-width: 96vw;
    max-height: calc(96vh - 56px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background: #000;
}

.photo-viewer__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    min-height: 44px;
    min-width: 44px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #0F172A;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
}

.photo-viewer__close:focus-visible {
    outline: 3px solid #93C5FD;
    outline-offset: 2px;
}

@media (max-width: 991.98px) {
    .wronganswer-photo {
        max-height: 70vh;
    }
    .wronganswer-photo-thumb {
        width: 160px;
        max-height: 140px;
    }
}
