/**
 * Chatbot Cards - Office
 * 
 * Office-spezifische Card-Styles.
 * Erweitert chatbot-cards-base.css.
 * 
 * @package SMG_Mall
 * @since 1.0.0
 */

/* ========================================
   Office Card
   ======================================== */

.chatbot-card--office {
    /* Erbt von .chatbot-card */
}

/* ========================================
   Logo Container (wie Store)
   ======================================== */

.chatbot-card--office .chatbot-card__image-container--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: var(--space-4, 1rem);
}

.chatbot-card--office .chatbot-card__image--logo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: transparent;
}

/* ========================================
   Logo Fallback (Initialen)
   ======================================== */

.chatbot-card--office .chatbot-card__image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: var(--text-4xl, 2.25rem);
    font-weight: var(--font-weight-bold, 700);
    border-radius: var(--radius-lg, 1rem);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ========================================
   Office Meta
   ======================================== */

.chatbot-card--office .chatbot-card__meta {
    gap: var(--space-2, 0.5rem);
}

/* Specialty hervorheben */
.chatbot-card--office .chatbot-card__meta-item:first-child {
    font-weight: var(--font-weight-medium, 500);
    color: #2563eb;
}

/* ========================================
   Hover Effects
   ======================================== */

.chatbot-card--office:hover .chatbot-card__image-container--logo {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.chatbot-card--office:hover .chatbot-card__image-fallback {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    .chatbot-card--office .chatbot-card__image-container--logo {
        height: 140px;
        padding: var(--space-3, 0.75rem);
    }
    
    .chatbot-card--office .chatbot-card__image-fallback {
        width: 100px;
        height: 100px;
        font-size: var(--text-3xl, 1.875rem);
    }
}

