/* 후원회 전용 공간 (The Lounge) 스타일 */
.elounge_lounge {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    color: #333;
    overflow: hidden;
}

/* 섹션 공통 */
.lounge_section {
    margin-bottom: 180px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.lounge_section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 타이틀 그룹 */
.lounge_title_wrap {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.lounge_name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.lounge_location {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 5px;
}

.lounge_grade {
    font-size: 1rem;
    color: #8c734b; /* 골드 계열 포인트 컬러 */
    font-weight: 500;
}

/* 이미지 레이아웃 */
.lounge_image_wrap {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lounge_image_wrap img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lounge_image_wrap img:hover {
    transform: scale(1.015);
}

/* 큰 이미지 (1, 2번) */
.full_images img {
    width: 100%;
}

/* 작은 이미지 (3, 4번) */
.half_images img {
    width: 50%;
}

/* 설명문 */
.lounge_desc {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
    text-align: center;
    word-break: keep-all;
    padding: 0 20px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .elounge_lounge {
        padding: 40px 0;
    }
    
    .lounge_section {
        margin-bottom: 80px;
    }

    .lounge_name {
        font-size: 1.8rem;
    }

    .lounge_location {
        font-size: 1.1rem;
    }

    .lounge_desc {
        font-size: 1rem;
        padding: 0 10px !important; /* 모바일 텍스트 양옆 10px 여백 강제 */
    }

    /* 모바일에서 작은 이미지 (3, 4번)는 70% */
    .half_images img {
        width: 70%;
    }
    
    .lounge_image_wrap {
        gap: 15px;
    }
}
