/* 
 * Styling pro AI generované reportáže
 * Zajišťuje správné zobrazení HTML obsahu
 */

/* Reportáž wrapper */
.w4s-field-content {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

/* Titulky z AI */
.w4s-field-content h3 {
    color: #2c3e50;
    font-size: 1.4em;
    margin: 0 0 15px 0;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

/* Odstavce */
.w4s-field-content p {
    margin: 0 0 15px 0;
    text-align: justify;
}

/* Zvýrazněný text */
.w4s-field-content strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Kurzíva */
.w4s-field-content em {
    font-style: italic;
    color: #7f8c8d;
}

/* Pokud je obsah v raw HTML, force rendering */
.post-report-content {
    white-space: normal;
}

.post-report-content h3 {
    color: #2c3e50;
    font-size: 1.4em;
    margin: 0 0 15px 0;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.post-report-content p {
    margin: 0 0 15px 0;
    text-align: justify;
    line-height: 1.6;
}

.post-report-content strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .w4s-field-content h3,
    .post-report-content h3 {
        font-size: 1.2em;
    }
    
    .w4s-field-content,
    .post-report-content {
        font-size: 14px;
    }
}