/**
 * Servicos Block - Frontend Styles v1.3.0
 *
 * MINIMAL: Only grid layout and responsive breakpoints.
 * All card visual styling is output as SCOPED INLINE CSS
 * by the renderer (class-svb-renderer.php) with !important
 * to prevent WordPress theme overrides.
 *
 * @package ServicosBlock
 */

/* ==========================================================================
   Container principal
   ========================================================================== */

.svb-services-block {
    padding: 32px 20px;
    margin: 20px 0;
}

/* ==========================================================================
   Grid
   ========================================================================== */

.svb-services-block .svb-services-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1023px) {
    .svb-services-block .svb-services-block__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .svb-services-block .svb-services-block__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
