.popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.popup-inner {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 800px;
    width: 60%;
    height: 80%;
    background-color: #fff;
    transition: 0.3s ease-in-out;
}

.popup__photo {
    width: 40%;
    overflow: hidden;
}

.popup__photo img {
    width: 100%;
    height: auto;
}

.popup__text {
    width: 60%;
    padding: 2rem;
}

.popup__close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
}
