/* ============================================================
   HRO Operations Lead Dashboard Persona Layout (VBI-HRO-U)
   ------------------------------------------------------------
   Reuses the shared HRO base shipped in hro-owner.css.
   Ops persona is delivery-focused: leaves more room for the
   utilisation stacked-bar and onboarding funnel.
   3-col at 1440px (ops has smaller tile count).
   ============================================================ */

.vbi-csuite-page--hro-ops .vbi-csuite-page__title {
    border-bottom: 2px solid var(--vbi-agency-accent);
    padding-bottom: var(--space-1);
}

.vbi-band__grid--hro-ops {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
}

@media (min-width: 481px) and (max-width: 768px) {
    .vbi-band__grid--hro-ops {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-3);
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .vbi-band__grid--hro-ops {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-3);
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .vbi-band__grid--hro-ops {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-3);
    }
}

@media (min-width: 1440px) {
    .vbi-band__grid--hro-ops {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--space-3);
    }
}
