/* partners_fix.r1.css - unify partner card size and fit logos inside */
.grid.cards-4x4 a.card,
.grid.partners .card{
  display:flex;
  flex-direction:column;
  border:1px solid #e8e8e8;
  border-radius:12px;
  background:#fff;
  overflow:hidden;
}

.grid.cards-4x4 a.card .thumb,
.grid.partners .thumb{
  width:100%;
  height:120px;            /* fixed visual slot for logos */
  padding:12px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.grid.cards-4x4 a.card .thumb img,
.grid.partners .thumb img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;      /* ensure full logo visible */
}

.grid.cards-4x4 a.card .body .title,
.grid.partners .body .title{
  font-size:16px;
  font-weight:700;
  line-height:1.3;
  padding:10px 12px 12px 12px;
  white-space:nowrap;       /* prevent multi-line overflow */
  overflow:hidden;
  text-overflow:ellipsis;   /* ... for long names */
}