/* =====================================================
   06-QUOTES.CSS - FLIMMERKISTE QUOTE KOMPONENTEN
   Version: 1.0
   Teil der CSS-Modularisierung (Runde 2 - Modul 06)
   Nur Enhanced Quotes - Alte Styles entfernt
   Max. 180 Zeilen
   ===================================================== */

/* === QUOTE ENHANCED - HAUPTSTYLE === */
.flim-quote-enhanced {
    position: relative;
    background: linear-gradient(135deg, rgba(255,107,107,0.03) 0%, rgba(78,205,196,0.03) 100%);
    border-left: 4px solid var(--quote-accent, var(--flimmer-primary));
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 30px 40px 30px 70px;
    margin: 40px 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.flim-quote-enhanced:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(255,107,107,0.05) 0%, rgba(78,205,196,0.05) 100%);
}

/* Quote Badge */
.flim-quote-badge {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

/* Quote Content */
.flim-quote-content {
    position: relative;
    z-index: 1;
}

.flim-quote-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

/* Spezial: Bei zweisprachigen Zitaten */
.flim-quote-text strong {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Author Attribution */
.flim-quote-author {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-style: normal;
    text-align: right;
}

.flim-quote-author::before {
    content: '— ';
}

/* === ICON VARIANTEN === */
.flim-quote-badge.icon-quote::before { 
    content: '"'; 
    font-family: Georgia, serif; 
    font-size: 28px; 
}

.flim-quote-badge.icon-film::before { 
    content: '🎬'; 
}

.flim-quote-badge.icon-tv::before { 
    content: '📺'; 
}

.flim-quote-badge.icon-star::before { 
    content: '⭐'; 
}

/* Tabler Icon Support */
.flim-quote-badge .tabler-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* === QUOTE MINIMAL VARIANTE === */
.flim-quote-minimal {
    padding: 20px 30px;
    margin: 30px 0;
    border-left: 3px solid var(--flimmer-secondary);
    background: rgba(78,205,196,0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.flim-quote-minimal-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 10px;
}

.flim-quote-minimal-author {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: right;
}

/* === QUOTE FRAME STYLE === */
.flim-quote-frame {
    position: relative;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-left: 4px solid var(--flimmer-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 30px 40px 30px 60px;
    margin: 40px 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.flim-quote-frame:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

/* Film perforation effect */
.flim-quote-frame::before {
    content: '';
    position: absolute;
    left: 56px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 15px,
        var(--border-light) 15px,
        var(--border-light) 20px
    );
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .flim-quote-enhanced,
    .flim-quote-frame {
        padding: 25px 25px 25px 50px;
        margin: 30px -10px;
    }
    
    .flim-quote-badge {
        width: 40px;
        height: 40px;
        left: 10px;
    }
    
    .flim-quote-text {
        font-size: 1.1rem;
    }
}

/* Dateiname: 06-quotes.css */
/* Pfad: /wp-content/themes/Newspaper-child/assets/css/components/06-quotes.css */