/* CL Custom Theme Widgets Styles */

/* Sample Widget Styles */
.cl-sample-widget {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 10px 0;
}

.cl-sample-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.cl-sample-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.cl-sample-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007cba;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cl-sample-button:hover {
    background-color: #005a87;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
}

/* Global Styles for All CL Widgets */
.cl-widget-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Brand Colors */
:root {
    --brand-blue: #1e40af;
    --brand-navy: #1e3a8a;
    --brand-gray: #374151;
    --accent-orange: #e4c580;
    --accent-green: #10b981;
}

/* Typography */
.cl-widget-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
}

.cl-widget-text {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cl-sample-widget {
        padding: 15px;
    }

    .cl-sample-title {
        font-size: 20px;
    }

    .cl-sample-description {
        font-size: 14px;
    }

    .cl-sample-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Mobile responsive adjustments for all widgets */
    .cl-hero-content {
        padding: 0 1rem;
    }

    .cl-leaders-container,
    .cl-insights-container,
    .cl-podcast-container,
    .cl-trade-intel-container,
    .cl-events-container,
    .cl-newsletter-container,
    .cl-footer-container {
        padding: 0 1rem;
    }
}

/* Video Banner Widget Styles */
.cl-video-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Height set by controls */
}
.cl-video-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.cl-video-banner-video {
    width: 100%;
    height: 100%;
    display: block;
    /* Object-fit set by controls */
}

