/* Ticarigm360 Banka Logoları - Stil */
.t360-bankalar-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:18px;
  align-items:center;
}
.t360-banka-item{
  background: #ffffff;
  border-radius:12px;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform .18s ease, box-shadow .18s ease;
  min-height:84px;
}
.t360-banka-item:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.t360-banka-logo img.t360-banka-img{
  max-height:48px;
  width: auto;
}
.t360-svg-wrap svg{
  max-height:48px;
  width:auto;
  height:auto;
  display:block;
}
/* Responsive */
@media (max-width: 1024px){
  .t360-bankalar-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px){
  .t360-bankalar-grid{ grid-template-columns: repeat(2,1fr); gap:12px; }
  .t360-banka-item{ padding:12px; min-height:72px; }
}
