/* =====================================================
   07-SECTIONS.CSS - FLIMMERKISTE SECTION KOMPONENTEN
   Version: 1.0
   Teil der CSS-Modularisierung (Runde 2 - Modul 07)
   Section-Header, Highlight-Boxes, Content-Strukturen
   Max. 250 Zeilen
   ===================================================== */

/* === HAUPTSECTION CONTAINER === */
.flim-section {
    margin: 60px 0;
    padding: 0;
    position: relative;
}

.flim-section:first-child {
    margin-top: 40px;
}

.flim-section:last-child {
    margin-bottom: 40px;
}

/* === SECTION HEADER === */
.flim-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}

/* Gradient Underline Animation */
.flim-section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--gradient-main);
    transition: width var(--transition-normal);
}

.flim-section:hover .flim-section-header::after {
    width: 200px;
}

/* Section Icon */
.flim-section-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* Section Title */
.flim-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

/* === HIGHLIGHT BOXES === */
.flim-highlight-box {
    background: linear-gradient(135deg, rgba(255,107,107,0.03) 0%, rgba(78,205,196,0.03) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

/* Accent Border */
.flim-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-main);
}

.flim-highlight-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flim-highlight-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 10px 0;
}

.flim-highlight-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 10px 0;
}

.flim-highlight-box ul {
    margin: 15px 0;
    padding-left: 20px;
}

.flim-highlight-box li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 8px 0;
}

/* === PRO/CONTRA SECTION === */
.flim-proscons-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.flim-proscons-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.flim-proscons-header span:first-child {
    font-size: 28px;
}

.flim-proscons-header span:last-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.flim-proscons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flim-proscons-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-ultra-light);
    color: var(--text-secondary);
    line-height: 1.7;
}

.flim-proscons-list li:last-child {
    border-bottom: none;
}

.flim-proscons-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* === CONTENT WRAPPER === */
.flim-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* === SUBSECTION STYLES === */
.flim-subsection {
    margin: 40px 0;
}

.flim-subsection-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

/* === DIVIDER STYLES === */
.flim-divider {
    height: 2px;
    background: var(--gradient-soft);
    border: none;
    margin: 40px 0;
    border-radius: 2px;
}

.flim-divider-dots {
    text-align: center;
    margin: 40px 0;
    font-size: 24px;
    color: var(--text-tertiary);
    letter-spacing: 8px;
}

.flim-divider-dots::before {
    content: '• • •';
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .flim-section {
        margin: 40px 0;
    }
    
    .flim-section-title {
        font-size: 1.5rem;
    }
    
    .flim-section-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .flim-highlight-box {
        padding: 20px;
        margin: 20px -10px;
    }
    
    .flim-proscons-section {
        padding: 20px;
        margin: 20px -10px;
    }
}

/* Dateiname: 07-sections.css */
/* Pfad: /wp-content/themes/Newspaper-child/assets/css/components/07-sections.css */