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

.base-section {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: 20px;
}

.base-section-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text-primary);
}

/* Tablet/iPad (min-width: 600px) */
@media (min-width: 600px) {
    .base-section {
        margin-bottom: 24px;
    }
    
    .base-section-title {
        font-size: 22px;
    }
}

/* Kleiner Desktop/13-Zoll (min-width: 1024px) */
@media (min-width: 1024px) {
    .base-section {
        margin-bottom: 28px;
    }
    
    .base-section-title {
        font-size: 24px;
    }
}

/* Großer Desktop/Widescreen (min-width: 1440px) */
@media (min-width: 1440px) {
    .base-section {
        margin-bottom: 32px;
    }
    
    .base-section-title {
        font-size: 26px;
    }
}
