/* Widget Grid CSS - Universelle Grid-Layout-Klasse */

/* Base Grid - Universelle Grid-Layout-Klasse */
.base-grid {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

/* Responsive Grid - Mobile-First */
@media (max-width: 576px) {
    .base-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Tablet/iPad: 600px-768px */
@media (min-width: 600px) and (max-width: 768px) {
    .base-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Kleiner Desktop/13-Zoll: 1024px-1366px */
@media (min-width: 1024px) and (max-width: 1366px) {
    .base-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Großer Desktop/Widescreen: min-width 1440px */
@media (min-width: 1440px) {
    .base-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}
