/**
 * Pinterest Callout Banner Block - Editor Styles
 */

.pinnerpress-callout-banner-editor {
    margin: 20px 0;
}

.pinnerpress-callout-banner-editor .pinnerpress-call-out-banner {
    width: 100%;
    box-sizing: border-box;
}

.pinnerpress-callout-banner-editor .pinnerpress-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 15px;
    width: auto;
    min-width: 38px;
    flex-shrink: 0;
}

.pinnerpress-callout-banner-editor .pinnerpress-content {
    text-align: left;
}

.pinnerpress-callout-banner-editor .pinnerpress-button {
    cursor: default;
    transition: opacity 0.2s;
}

/* Editor preview responsive adjustments */
@media (max-width: 768px) {
    .pinnerpress-callout-banner-editor .pinnerpress-call-out-banner {
        flex-wrap: wrap;
        text-align: center;
    }
    
    .pinnerpress-callout-banner-editor .pinnerpress-logo {
        margin-bottom: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .pinnerpress-callout-banner-editor .pinnerpress-content {
        width: 100%;
        margin: 10px 0 !important;
        text-align: center;
    }
    
    .pinnerpress-callout-banner-editor .pinnerpress-button-wrapper {
        width: 100%;
    }
}