.popup-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 80%);
    z-index: 101;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup {
    max-width: 800px;
	width: 100%;
    min-width: 400px;
    background-color: #fff;
    text-align: center;
    padding: 40px 20px 20px;
    position: relative;
}



.popup p {
    margin: 15px 0;
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0 8px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
}

.popup-navigate-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.popup-navigate-btn:hover {
    background-color: #0056b3;
}

.popup-container a img {
    width: 100%;
    height: auto;
	    max-height: 300px;
    object-fit: cover;
}