/* CNWPanel Embed Banner Theme 3 - White */
.cnwpanel-theme-3 {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cnwpanel-theme-3:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.cnwpanel-theme-3 .cnwpanel-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
}

.cnwpanel-theme-3 .cnwpanel-go-btn {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.cnwpanel-theme-3 .cnwpanel-go-btn:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* 애니메이션 */
.cnwpanel-theme-3.cnwpanel-ani-1 {
    animation: cnwpanel-slide-up 0.8s ease-out;
}

@keyframes cnwpanel-slide-up {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
