.home-category-showcase {
  padding: 28px 0 36px;
}

.home-category-showcase-title {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 18px;
  color: #111;
}

.home-category-showcase-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
}

.home-category-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 28%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 1;
}

.home-category-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  padding: 0 10px;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.45);
}

.home-category-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 1199px) {
  .home-category-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-category-showcase {
    padding-top: 22px;
  }

  .home-category-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-category-card span {
    font-size: 12px;
  }
}
