/* ══════════════════════════════════════════════════════════
   BRAZILIAN PORTUGUESE — Filter label overflow fix

   Portuguese filter labels are significantly longer than English
   (e.g. "Participação nos Lucros", "Alavancagem de Metais").
   These adjustments prevent overflow without breaking layout.
   ══════════════════════════════════════════════════════════ */

/* Filter grid — wider minimum column to fit longer labels */
.pf-filters-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)) !important;
}

/* Filter labels — slightly smaller to fit in columns */
.pf-filter-label {
    font-size: 0.52rem !important;
    letter-spacing: 0.03em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Filter dropdown text — keep readable */
.pf-filter .pf-dd-text {
    font-size: 0.72rem !important;
}
