/* ============================================
   Sound Technologies - Home: Products
   Mobile-first
   ============================================ */

.st-home-products {
  padding: 48px 20px;
  background: var(--st-light-bg);
}

.st-home-products-inner {
  max-width: var(--st-max-width);
  margin: 0 auto;
}

.st-home-products h2 {
  font-family: var(--st-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--st-navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.st-home-products-intro {
  font-size: 1rem;
  color: var(--st-mid);
  margin-bottom: 36px;
  max-width: 700px;
  line-height: 1.7;
}

.st-home-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.st-product-card {
  background: var(--st-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.st-product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.st-product-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #e8e8e8;
}

.st-product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.st-product-card h3 {
  font-family: var(--st-font);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--st-navy);
  margin-bottom: 16px;
}

.st-product-card p {
  font-size: 0.95rem;
  color: var(--st-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.st-product-card .st-btn {
  align-self: flex-start;
}

/* Tablet */
@media (min-width: 600px) {
  .st-home-products {
    padding: 60px 30px;
  }

  .st-home-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .st-product-card-img {
    height: 260px;
  }
}

/* Desktop */
@media (min-width: 960px) {
  .st-home-products {
    padding: 80px 30px;
  }

  .st-home-products h2 {
    font-size: 1.75rem;
  }

  .st-product-card-img {
    height: 280px;
  }
}
