.grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  box-sizing: border-box;
  padding: 10px 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 8px;
}
.title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}
.email {
  color: #555;
  font-size: 14px;
}
