/* Suh Casa Timor overrides — on top of the Meridax template CSS */

/* Full-logo brand badge (white plate so the logo sits cleanly on dark surfaces) */
.suhcasa-brand-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 7px 14px;
  box-shadow: var(--shadow-sm);
}
.suhcasa-brand-badge img { height: 34px; width: auto; display: block; }
.site-footer .suhcasa-brand-badge img { height: 38px; }

/* Brand logo tiles — clients strip marquee */
.clients-strip__brand {
  flex: none;
  width: 92px;
  height: 92px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  padding: 10px;
}
.clients-strip__brand img { width: 100%; height: 100%; object-fit: contain; }

/* Static brand wall — neat square tiles */
.brand-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 18px;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.brand-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.brand-tile img { width: 100%; height: 100%; object-fit: contain; }
