.needs-slider {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
}

.needs-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid #333;
  width: 300px;
}

.needs-card:hover{
  background-color: #666;
}

.needs-card img {
  width: 100%;
  width: 300px;
  height: auto;
  border-bottom: 2px solid #333;
}

.needs-card img:hover{
    opacity: 0.7;
}

.needs-card h3 {
  font-size: 16px;
  margin: 10px;
}

.needs-card p {
  font-size: 13px;
  opacity: .7;
  margin: 0 10px 12px;
}

@media (max-width: 768px) {

.needs-card{
    width: 150px;
}
.needs-card img {
  width: 100%;
  width: 150px;
  border-bottom: 2px solid #ccc;
}


}