/* ==========================================================================
   Cenematic home-c — "More Reasons": Natural Voiceover Software feature

   Centered heading (purple accent) over a split: image left, copy right.
   The image is a placeholder — swap for the real voiceover composite.
   ========================================================================== */

.vo { padding: 40px 40px 56px; background: #fff; color: var(--ink); }

.vo__heading {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.vo__accent {
  background: linear-gradient(105deg, #ffc107, #ff8a00, #ff4d00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vo__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vo__media { position: relative; margin: 0; }
.vo__media img { position: relative; z-index: 1; display: block; width: 100%; border-radius: 18px; }

/* Ramped offset block behind the photo */
.vo__media::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(-16px, 16px);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffc107, #ff8a00, #ff3d00);
  z-index: 0;
}

.vo__text p { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.72; color: var(--muted); }

/* The closing line reads as a beat */
.vo__text p:last-child { font-weight: 700; color: var(--ink); }
.vo__text p + p { margin-top: 18px; }

@media (max-width: 860px) {
  .vo { padding: 24px 22px 40px; }
  .vo__heading { margin-bottom: 36px; }
  .vo__grid { grid-template-columns: 1fr; gap: 36px; }

  .vo__media::after { display: none; }
}
