/* ==========================================================================
   Cenematic home-c — "Different Visual Styles" gallery

   Soft cream stage with a 3-up grid of white-framed thumbnails, each labelled
   with its video style. Images are placeholder Pexels shots — swap for the
   real per-style samples.
   ========================================================================== */

.vstyles {
  padding: 84px 40px 96px;
  background: linear-gradient(180deg, #fffdf5 0%, #f6e6ad 55%, #eccb6e 100%);
  color: var(--ink);
}

.vstyles__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.vstyles__heading {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.vstyles__accent {
  background: linear-gradient(105deg, #ffc107, #ff8a00, #ff4d00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Grid -------------------------------------------------------------------- */
.vstyles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}

.vstyles__card {
  margin: 0;
  text-align: center;
}

.vstyles__thumb {
  padding: 4px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 18px 40px -22px rgba(80, 60, 0, 0.45);
}

.vstyles__thumb img,
.vstyles__thumb video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
}

.vstyles__label {
  margin-top: 18px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Responsive -------------------------------------------------------------- */
@media (max-width: 900px) {
  .vstyles { padding: 64px 24px 72px; }
  .vstyles__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }
}

@media (max-width: 560px) {
  .vstyles__grid { grid-template-columns: 1fr; }
}
