.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;

}

.popup-content {
    background: #fff;
    border-radius: 5px;
    text-align: center;
    position: relative;
    width: clamp(300px, 70vw, 650px);
    aspect-ratio: 1/1;
    height: auto;
    /* max-width: 90%;
    max-height: 90%; */
    /* overflow: auto; */
}

.popup-content img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.popup-close {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: #f00;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    &:hover, &:focus, &:active {
        color: #fff;
        background-color: #f00;
    }
}
