/* CNWPanel Embed Banner Theme 4 - Light */
.cnwpanel-theme-4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cnwpanel-theme-4 .cnwpanel-title {
    font-size: 18px;
    font-weight: 600;
    color: #333 !important;
    white-space: nowrap;
}

.cnwpanel-theme-4 .cnwpanel-go-btn {
    background: #1d3c6a !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
}

.cnwpanel-theme-4 .cnwpanel-go-btn:hover {
    background: #2a4b7a !important;
}

/* 애니메이션 */
.cnwpanel-theme-4.cnwpanel-ani-1 {
    animation: cnwpanel-slide-in-right 0.8s ease-out;
}

@keyframes cnwpanel-slide-in-right {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
