.dst-categories {
  padding: 1rem 0 5rem;
}

.dst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dst-card {
  position: relative;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.dst-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.dst-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.15));
}

.dst-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.25rem;
  z-index: 2;
}

.dst-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  font-weight: 900;
}

.dst-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.dst-content span {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: white;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
}

.dst-card:hover {
  transform: translateY(-6px);
}

.dst-card:hover img {
  transform: scale(1.08);
}

.dst-hero {
    text-align: center;
    padding: 2rem 0 3rem;
}

.dst-badge {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
}

.dst-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dst-hero p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

@media (max-width: 992px) {
  .dst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dst-hero {
    padding: 3rem 0 2rem;
  }

  .dst-hero h1 {
    font-size: 2.2rem;
  }

  .dst-hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .dst-grid {
    grid-template-columns: 1fr;
  }

  .dst-card {
    height: 220px;
  }

  .dst-content {
    padding: 1rem;
  }

  .dst-content h2 {
    font-size: 1.3rem;
  }

  .dst-content p {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .dst-content span {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }
}