/* aktuality-detail-obsah.css (extrahováno z aktuality.php) */

    /* Základní kontejner */
    .detail-obsah {
        margin: 0 auto;
    }
    
    /* Odstavce */
    .detail-obsah p {
        margin-bottom: 1.5em;
        line-height: 1.8;
        font-size: 1.1rem;
        color: #334155;
        font-weight: 400;
    }

    /*Tučný text*/
    .detail-obsah strong {
        color: #000;
    }
    
    /* Nadpisy */
    .detail-obsah h2 {
        font-size: 2rem;
        font-weight: 800;
        margin: 2em 0 1em;
        color: #1e293b;
    }
    
    .detail-obsah h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 1.5em 0 0.8em;
        color: #1e293b;
    }
    
    .detail-obsah h4 {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 1.2em 0 0.6em;
        color: #1e293b;
    }
    
    /* Seznamy */
    .detail-obsah ul,
    .detail-obsah ol {
        margin: 1.5em 0;
        padding-left: 2em;
        line-height: 1.8;
    }
    
    .detail-obsah li {
        margin-bottom: 0.5em;
    }
    
    /* Citace */
    .detail-obsah blockquote {
        margin: 2em 0;
        padding: 1.5em;
        background: #f0f9ff;
        border-left: 4px solid #00AEEF;
        font-style: italic;
    }
    
    /* Obrázky */
    .detail-obsah img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 2em auto;
    }
    
    .detail-obsah figure {
        margin: 2em 0;
    }
    
    .detail-obsah figcaption {
        margin-top: 0.5em;
        text-align: center;
        font-size: 0.9em;
        color: #64748b;
    }
    
    /* WordPress bloky */
    .detail-obsah .wp-block-image {
        margin: 2em 0;
    }
    
    .detail-obsah .wp-block-gallery {
        margin: 2em 0;
    }
    
    .detail-obsah .wp-block-quote {
        margin: 2em 0;
        padding: 1.5em;
        background: #f8fafc;
        border-left: 4px solid #00AEEF;
    }
    
    .detail-obsah .wp-block-table table {
        width: 100%;
        border-collapse: collapse;
        margin: 2em 0;
    }
    
    .detail-obsah .wp-block-table th,
    .detail-obsah .wp-block-table td {
        padding: 12px;
        border: 1px solid #e2e8f0;
    }
    
    .detail-obsah .wp-block-table th {
        background: #f8fafc;
        font-weight: 700;
    }
    
    .detail-obsah .wp-block-separator {
        margin: 3em 0;
        border: none;
        border-top: 2px solid #e2e8f0;
    }
    
    .detail-obsah .wp-block-embed {
        margin: 2em 0;
    }
    
    .detail-obsah .wp-block-code {
        margin: 2em 0;
        padding: 1.5em;
        background: #1e293b;
        color: #e2e8f0;
        border-radius: 8px;
        overflow-x: auto;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .detail-obsah {
            padding: 20px 15px;
        }
        
        .detail-obsah p {
            font-size: 1rem;
        }
        
        .detail-obsah h2 {
            font-size: 1.5rem;
        }
        
        .detail-obsah h3 {
            font-size: 1.25rem;
        }
    }
