/*
 * XCOM Custom Block Styles
 */

/* Custom Grid Style for Core Group Block */
.is-style-xcom-custom-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
}

/* Tablet */
@media (min-width: 768px) {
    .is-style-xcom-custom-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.2rem !important;
    }
}

/* Tablet Landscape */
@media (min-width: 1024px) {
    .is-style-xcom-custom-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.25rem !important;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .is-style-xcom-custom-grid {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 1.5rem !important;
    }
}

/* Large Desktop */
@media (min-width: 1600px) {
    .is-style-xcom-custom-grid {
        grid-template-columns: repeat(6, 1fr) !important;
    }
}
