.hero-cards {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 14px;
}

.hero-card {
  min-width: 280px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card span {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
