
/* 회색 오버레이 */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.overlay.active {
    display: flex;
}

/* 팝업 콘텐츠 */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease-out;
    max-width: 300px;
    width: 50%;
    text-align: center;
}

.popup-image {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

.popup-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #000000;
}

.popup-content div {
    font-family: 'Spoqa Han Sans Neo', sans-serif; /* 부가 텍스트용 폰트 */
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}
