/**
 * CockpitOS Light - Chatbot Cards Header
 * 
 * Verantwortlichkeit: Einheitliche Header-Styles für Card-Kategorien
 * Modular, DRY, wartbar
 * 
 * @package CockpitOS_Light_Theme
 * @version 1.0.0
 */

/* ========================================
   Cards Header - Base (Standard Cards)
   ======================================== */

.cockpit-os-chatbot-cards__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
}

.cockpit-os-chatbot-cards__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ========================================
   Section Header (Multi-Intent)
   ======================================== */

.cockpit-os-chatbot-cards-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    position: relative;
}

.cockpit-os-chatbot-cards-section__title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cockpit-os-chatbot-cards-section__icon {
    flex-shrink: 0;
    color: var(--color-primary);
    width: 20px;
    height: 20px;
}

.cockpit-os-chatbot-cards-section__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    line-height: 1.4;
}

/* ========================================
   Header in Message Content (Integration)
   ======================================== */

.chatbot-message__content .cockpit-os-chatbot-cards__header {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Search Layout Header */
.chatbot-message[data-message-type="search"] .cockpit-os-chatbot-cards__header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
}

/* ========================================
   Mobile Optimizations
   ======================================== */

@media (max-width: 768px) {
    .cockpit-os-chatbot-cards__header {
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .cockpit-os-chatbot-cards__title {
        font-size: 0.75rem;
    }
    
    .cockpit-os-chatbot-cards-section__title-wrapper {
        padding: 0.375rem 0.75rem;
    }
    
    .cockpit-os-chatbot-cards-section__title {
        font-size: 1rem;
    }
    
    .cockpit-os-chatbot-cards-section__icon {
        width: 18px;
        height: 18px;
    }
}


