/* ================================================
   레이아웃 CSS - 2단 웹진 레이아웃
   ================================================ */

/* 전체 2단 컨테이너 */
.wz_page {
    display: flex;
    gap: 50px;
    width: 100%;
    padding: 30px 0;
    box-sizing: border-box;
}

/* 왼쪽 메인 영역 (약 68%) */
.wz_main {
    flex: 1;
    min-width: 0;
}

/* 오른쪽 사이드바 (약 320px 고정) */
.wz_sidebar {
    flex-shrink: 0;
    width: 320px;
    position: sticky;
    top: 120px;
    height: max-content;
}

/* 섹션 제목 */
.wz_section_title {
    font-size: 13px;
    font-weight: 700;
    color: #5a6070;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid #ebeef3;
}

/* 사이드바 카드 */
.wz_sidebar_card {
    background: #fff;
    border: 1px solid #ebeef3;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s ease;
}
.wz_sidebar_card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* 사이드바 플레이스홀더 */
.wz_sidebar_placeholder {
    text-align: center;
    color: #b0b8c8;
    font-size: 14px;
    padding: 30px 0;
    margin: 0;
}
.wz_sidebar_placeholder i {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
    color: #d0d6e0;
}

/* ================================================
   반응형 - 1024px 이하시 1단 레이아웃
   ================================================ */
@media (max-width: 1024px) {
    .wz_page {
        flex-direction: column;
        gap: 30px;
        padding: 20px 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    .wz_sidebar {
        width: 100%;
    }
}

/* ================================================
   히어로 섹션 (프로그램 다운로드 메인)
   ================================================ */
.wz_hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 0 80px 0;
    margin-bottom: 20px;
}

/* --- 왼쪽 영역 --- */
.wz_hero_left {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}
.wz_hero_title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
    letter-spacing: -0.5px;
    margin: 0 0 20px 0;
}
.wz_hero_desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 35px 0;
    word-break: keep-all;
}
.wz_hero_actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
}
.wz_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 52px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}
.wz_btn_primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}
.wz_btn_primary:hover {
    background: #1d4ed8;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
    color: #fff;
}
.wz_btn_light {
    background: #f3f4f6;
    color: #374151;
}
.wz_btn_light:hover {
    background: #e5e7eb;
    color: #111827;
}

.wz_hero_stats_wrap {
    margin-top: 30px;
}
.wz_stats_notice {
    font-size: 15px;
    color: #111827;
    line-height: 1.5;
    margin: 0 0 20px 0;
}
.wz_stats_notice span {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-top: 6px;
}
.wz_stats_grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.wz_stat_item {
    display: flex;
    flex-direction: column;
}
.wz_stat_name {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 2px;
}
.wz_stat_sub {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}
.wz_stat_num {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
}

/* --- 오른쪽 영역 (인스피어 프리미엄 모던 카드) --- */
.wz_hero_right {
    width: 580px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inspier_banner {
    width: 480px;
    background: #0f172a;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.inspier_banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}
.wz_banner_close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #94a3b8;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    z-index: 10;
}
.wz_banner_close:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.inspier_banner_content {
    padding: 40px 40px 30px;
    position: relative;
    z-index: 1;
}
.wz_banner_badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.wz_banner_title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.wz_banner_title span {
    color: #60a5fa;
}
.wz_banner_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 30px 0;
    word-break: keep-all;
}
.inspier_banner_info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.info_row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 500;
}
.info_row i {
    color: #60a5fa;
    font-size: 16px;
}
.inspier_banner_action {
    padding: 0 40px 40px;
    position: relative;
    z-index: 1;
}
.wz_btn_inspier {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    gap: 8px;
}
.wz_btn_inspier:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

/* 새로운 플로팅 컴포넌트 */
.wz_fl_comp {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
}
.inspier_fl_1 {
    width: 100px;
    height: 100px;
    left: -30px;
    top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
}
.inspier_fl_1 strong {
    color: #60a5fa;
}
.inspier_fl_2 {
    width: 160px;
    height: 120px;
    right: -40px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(96, 165, 250, 0.2);
    overflow: hidden;
}
.glass_mockup {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 10px);
}

@media (max-width: 1024px) {
    .wz_hero {
        flex-direction: column;
        padding: 40px 15px;
        margin: 0 auto 20px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .wz_hero_left {
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .wz_hero_right {
        width: 100%;
        margin-top: 50px;
    }
    .inspier_banner {
        width: 100%;
        box-sizing: border-box;
    }
    .inspier_fl_1, .inspier_fl_2 {
        display: none;
    }
}