/* popup.css */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.popup-overlay.is-visible {
    display: flex;
}

.popup-box {
    position: relative;
    max-width: 800px;
    width: 90%;
}

.popup-box img {
    width: 100%;
    height: auto;
    display: block;
	object-fit: cover;
}

.popup-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    width: auto;
    height: 36px;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 15px;
	font-family: Poppins;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	color: #fff;
	padding: 0;
}
.popup-close:hover {
	background: transparent;
}
.popup-close svg {
	width: 10px;
	height: 10px;
}

.popup-link {
    display: block;
}

@media (max-width: 768px) {
    .popup-box {
        width: 95%;
    }
	.popup-box img {
		height: 70dvh;
	}
}