/* Exhibition CTA Styles - Compatible with existing shortcode */
#bhowco-365-cta.bhowco-365-cta-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#bhowco-365-cta.bhowco-365-cta-container {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.08);
    width: 100%;
    display: block;
}

#bhowco-365-cta .bhowco-365-cta-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

#bhowco-365-cta .bhowco-365-icon {
    font-size: 3rem;
    flex-shrink: 0;
    margin-top: 5px;
}

#bhowco-365-cta .bhowco-365-content {
    flex: 1;
}

#bhowco-365-cta .bhowco-365-title {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

#bhowco-365-cta .bhowco-365-desc {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 1rem;
}

#bhowco-365-cta .bhowco-365-features {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

#bhowco-365-cta .bhowco-365-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #334155;
    font-size: .9rem;
}

#bhowco-365-cta .bhowco-365-feat:last-child {
    margin-bottom: 0;
}

#bhowco-365-cta .bhowco-365-check {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

#bhowco-365-cta .bhowco-365-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #0f172a, #334155);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, .2);
}

#bhowco-365-cta .bhowco-365-button:hover {
    background: linear-gradient(to right, #334155, #475569);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, .3);
}

#bhowco-365-cta .bhowco-365-btn-icon {
    font-size: 1.2rem;
}

#bhowco-365-cta .bhowco-365-arrow {
    margin-left: 5px;
    transition: transform .3s ease;
}

#bhowco-365-cta .bhowco-365-button:hover .bhowco-365-arrow {
    transform: translateX(3px);
}

#bhowco-365-cta .bhowco-365-note {
    color: #64748b;
    font-size: .85rem;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    #bhowco-365-cta.bhowco-365-cta-container {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    #bhowco-365-cta .bhowco-365-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    #bhowco-365-cta .bhowco-365-icon {
        margin: 0 auto;
    }
    
    #bhowco-365-cta .bhowco-365-title {
        font-size: 1.3rem;
    }
    
    #bhowco-365-cta .bhowco-365-feat {
        justify-content: flex-start;
        text-align: left;
    }
    
    #bhowco-365-cta .bhowco-365-button {
        padding: 12px 24px;
        font-size: .95rem;
        justify-content: center;
        width: 100%;
        max-width: 350px;
    }
}