.coach-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 15px;
}

.coach-gallery-item {
  flex: 1 1 calc(33.333% - 16px);
  box-sizing: border-box;
}

.coach-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: transform 0.2s ease-in-out;
  display: block;
}

.coach-gallery-item img:hover {
  transform: scale(1.03);
}
