/*
 * Videuro country pages:
 * remove genuinely empty visual cards only.
 */

body[data-page="country"] .videuro-empty-country-card {
    display: none !important;
}

/*
 * Only parents where the cleanup script actually found
 * an empty direct child receive this class.
 */
body[data-page="country"] .videuro-country-auto-reflow {
    grid-template-columns:
        repeat(auto-fit, minmax(min(100%, 260px), 1fr)) !important;
}

body[data-page="country"] .videuro-country-auto-reflow-flex {
    flex-wrap: wrap !important;
}

body[data-page="country"]
.videuro-country-auto-reflow-flex
> :not(.videuro-empty-country-card) {
    flex: 1 1 260px !important;
    min-width: 0 !important;
    max-width: 100% !important;
}
