/**
 * WP Multi Control Hub Connector - Frontend Styles
 * Styles for blockquotes and expert quotes generated by the plugin
 */

/* Base blockquote styling */
.wp-block-quote {
    border-left: 4px solid var(--wp--preset--color--primary, #0073aa);
    padding: 1.25em 1.5em;
    margin: 1.5em 0;
    background: linear-gradient(135deg, rgba(0, 115, 170, 0.03) 0%, rgba(0, 115, 170, 0.08) 100%);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    position: relative;
}

.wp-block-quote::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4em;
    color: var(--wp--preset--color--primary, #0073aa);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.wp-block-quote p {
    margin: 0 0 0.75em 0;
    font-size: 1.1em;
    line-height: 1.7;
    color: inherit;
}

.wp-block-quote p:last-of-type {
    margin-bottom: 0;
}

.wp-block-quote cite {
    display: block;
    margin-top: 1em;
    font-size: 0.9em;
    font-style: normal;
    font-weight: 600;
    color: var(--wp--preset--color--primary, #0073aa);
}

.wp-block-quote cite::before {
    content: '— ';
}

/* Expert Quote - Enhanced E-E-A-T styling */
.wp-block-quote.expert-quote {
    border-left: 4px solid #2e7d32;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.04) 0%, rgba(76, 175, 80, 0.08) 100%);
    padding: 1.5em 2em;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
}

.wp-block-quote.expert-quote::before {
    content: '💬';
    font-size: 2em;
    opacity: 0.3;
    top: 8px;
    left: 12px;
}

.wp-block-quote.expert-quote p {
    font-size: 1.15em;
    font-weight: 500;
    font-style: normal;
}

.wp-block-quote.expert-quote cite {
    color: #2e7d32;
    font-size: 0.95em;
    padding: 0.5em 0.75em;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 4px;
    display: inline-block;
    margin-top: 1em;
}

.wp-block-quote.expert-quote cite::before {
    content: '✓ ';
    color: #2e7d32;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .wp-block-quote {
        background: linear-gradient(135deg, rgba(0, 115, 170, 0.1) 0%, rgba(0, 115, 170, 0.15) 100%);
    }
    
    .wp-block-quote.expert-quote {
        background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.15) 100%);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .wp-block-quote {
        padding: 1em 1.25em;
        margin: 1em 0;
    }
    
    .wp-block-quote::before {
        font-size: 3em;
        top: -5px;
        left: 5px;
    }
    
    .wp-block-quote p {
        font-size: 1em;
    }
    
    .wp-block-quote.expert-quote {
        padding: 1.25em 1.5em;
    }
    
    .wp-block-quote.expert-quote::before {
        font-size: 1.5em;
    }
}
