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

    /* Sidebar meta kontejner */
    .detail-meta-sidebar {
        background: #ffffff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 20px;
    }
    
    /* Meta položka */
    .meta-item {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .meta-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    /* Ikona */
    .meta-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background: #f0f9ff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00AEEF;
    }
    
    .meta-icon svg {
        width: 20px;
        height: 20px;
        stroke-width: 2;
    }
    
    /* Obsah */
    .meta-content {
        flex: 1;
    }
    
    .meta-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #94a3b8;
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .meta-value {
        color: #1e293b;
        font-size: 15px;
    }
    
    .meta-value strong {
        display: block;
        font-weight: 700;
        color: #0f172a;
    }
    
    /* Kategorie */
    .meta-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 8px;
    }
    
    .meta-category-badge {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 15px;
        color: white;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
    }
    
    /* Autor */
    .meta-author-info {
        margin-top: 10px;
    }
    
    .author-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #f0f9ff;
        flex-shrink: 0;
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .author-name {
        font-weight: 700;
        color: #1e293b;
        font-size: 15px;
    }
    
    /* Hover efekty */
    .meta-item {
        transition: all 0.3s ease;
    }
    
    .meta-item:hover .meta-icon {
        background: #00AEEF;
        color: white;
        transform: scale(1.05);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .detail-meta-sidebar {
            margin-bottom: 30px;
            position: relative;
            top: 0;
        }
    }
    
    @media (max-width: 768px) {
        .detail-meta-sidebar {
            padding: 20px;
        }
        
        .meta-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
        }
        
        .meta-icon {
            width: 35px;
            height: 35px;
        }
        
        .meta-icon svg {
            width: 18px;
            height: 18px;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
        }
    }
    
    @media (max-width: 480px) {
        .detail-meta-sidebar {
            border-radius: 8px;
            padding: 15px;
        }
        
        .meta-item {
            gap: 12px;
        }
        
        .meta-label {
            font-size: 11px;
        }
        
        .meta-value {
            font-size: 14px;
        }
        
        .meta-category-badge {
            font-size: 12px;
            padding: 4px 10px;
        }
        
        .author-name {
            font-size: 14px;
        }
    }
