/* Mobile-First: Basis-Styles gelten für mobile Geräte */

/* Widget Card - Universelle Card-Klasse */
.widget-card {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.widget-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Widget Card Header */
.widget-card-header {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-primary);
}

.widget-card-header-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin: 0;
    color: var(--color-text-inverse);
}

/* Widget Card Body */
.widget-card-body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 20px;
}

/* Widget Highlight Box - Hervorgehobene Box */
.widget-highlight-box {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--color-primary-light);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

/* Widget Card Feature - Feature-Card (für Contact-Features) */
.widget-card-feature {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 12px;
    border: 1px solid var(--color-border);
    background: var(--color-background);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.widget-card-feature:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Widget Card Feature Text - Feature-Text */
.widget-card-feature-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.widget-card-feature-text strong {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: bold;
}

/* Widget Privacy Note - Privacy-Hinweis */
.widget-privacy-note {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-small);
    line-height: var(--line-height-base);
    margin-top: 20px;
    padding: 15px;
    background: var(--color-background-light);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Widget Contact Item - Kontakt-Item (für Imprint) */
.widget-contact-item {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--color-background);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.widget-contact-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Widget Contact Item Label - Kontakt-Item-Label */
.widget-contact-item-label {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Mobile-First: Responsive Design - Regel 022: 4 Breakpoints */
/* Basis-Styles gelten für mobile (max-width: 576px) - keine Media Query erforderlich */

/* Tablet/iPad (min-width: 600px) */
@media (min-width: 600px) {
    .widget-card {
        padding: 15px;
    }
    
    .widget-card-feature {
        padding: 15px;
    }
}

/* Kleiner Desktop/13-Zoll (min-width: 1024px) */
@media (min-width: 1024px) {
    .widget-card {
        padding: 20px;
    }
}

/* Großer Desktop/Widescreen (min-width: 1440px) */
@media (min-width: 1440px) {
    .widget-card {
        padding: 25px;
    }
}
