.ebi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:1100px;
  margin:0 auto;
}

.ebi-card{
  display:block;
  text-decoration:none;
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:16px;
  background:#fff;
  transition:all .25s ease;
  text-align:center;
}

.ebi-card:hover{
  box-shadow:0 6px 20px rgba(0,0,0,.10);
  transform:translateY(-3px);
}

.ebi-card img{
  width:100%;
  max-height:160px;
  object-fit:contain;
  margin-bottom:12px;
}

.ebi-card h3{
  font-size:18px;
  margin:8px 0;
  color:#000;
}

.ebi-card p{
  font-size:14px;
  color:#555;
}

@media (max-width:900px){
  .ebi-grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:600px){
  .ebi-grid{ grid-template-columns:1fr; }
}
