/* Brand Badge Grid - minimal, RTL-friendly */
.bbg-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  column-gap:16px;
  row-gap:16px;
}
.bbg-item{ display:flex }
.bbg-link{
  display:flex; align-items:center; gap:12px; width:100%;
  padding:12px; background:#fff; border:1px solid #e5e7eb; border-radius:12px;
  text-decoration:none; transition:transform .18s ease, box-shadow .18s ease;
}
.bbg-link:hover{ transform:translateY(-2px); box-shadow:0 8px 16px rgba(0,0,0,.06) }
.bbg-logo{
  width:36px; height:36px; border-radius:8px; object-fit:contain; background:transparent;
}
.bbg-meta{ display:flex; flex-direction:column; gap:2px; min-width:0 }
.bbg-brand{ font-weight:700; color:#111827; line-height:1.2; }
.bbg-year, .bbg-extra{ font-size:.85rem; color:#6b7280; line-height:1.2; }

/* Handle RTL nicely (Elementor sets dir at page level) */
[dir="rtl"] .bbg-link{ direction:rtl }
