.vs-section {
  padding: 46px 0;
}

.vs-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 14px;
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.vs-card {
  background: var(--vs-paper);
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  padding: 22px;
}

.vs-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.vs-card p,
.vs-card li {
  color: var(--vs-muted);
  line-height: 1.55;
}

.vs-home-products-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.vs-home-products-head h2 {
  margin-bottom: 0;
}

.vs-home-products-head p {
  color: var(--vs-muted);
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

.vs-home-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.vs-home-product-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 260px minmax(0, 1fr);
  background: linear-gradient(180deg, #fffdf7, #fbf4e9);
  box-shadow: 0 16px 42px rgba(47, 39, 35, .08);
}

.vs-home-product-media {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  color: #fffaf2;
  text-decoration: none;
}

.vs-home-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 20, .02), rgba(17, 24, 20, .72)),
    linear-gradient(90deg, rgba(17, 24, 20, .18), transparent 58%);
}

.vs-home-product-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}
