/**
 * CockpitOS Light - Chatbot Cards Contact Styles
 * 
 * Verantwortlichkeit: Styling für Kontakt-Informationen in Cards
 * 
 * @package CockpitOS_Light_Theme
 * @version 1.0.0
 */

/* Contact Section */
.cockpit-os-chatbot-card__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--color-gray-100);
}

.cockpit-os-chatbot-card__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    text-decoration: none;
    transition: color var(--cockpit-os-chatbot-transition);
    padding: 4px 0;
}

.cockpit-os-chatbot-card__contact-item:hover {
    color: var(--color-primary);
}

.cockpit-os-chatbot-card__contact-item .chatbot-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.cockpit-os-chatbot-card__contact-item:hover .chatbot-icon {
    opacity: 1;
}

.cockpit-os-chatbot-card__contact-text {
    line-height: 1.4;
    word-break: break-word;
}

/* Mobile: Kompakter */
@media (max-width: 768px) {
    .cockpit-os-chatbot-card__contact {
        gap: 6px;
        margin-top: 6px;
        padding-top: 6px;
    }
    
    .cockpit-os-chatbot-card__contact-item {
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .cockpit-os-chatbot-card__contact-item .chatbot-icon {
        width: 12px;
        height: 12px;
    }
}


