/* Video testimonials, vertical Shorts grid */
.vt-section {
  position: relative;
  background: var(--gotezu-bg, #f7f4ef);
  padding: 56px 0 72px;
  overflow: visible;
}

.vt-section__mascot {
  position: absolute;
  top: 40px;
  right: calc(clamp(8px, 1.5vw, 24px) - 30px);
  width: min(624px, 48vw);
  z-index: 2;
  pointer-events: none;
}

.vt-section__mascot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right top;
}

.vt-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Blob frames the video row, outline peeks above & below the cards */
.vt-stage {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.vt-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 82%;
  top: 28%;
  width: 165%;
  height: 207%;
  transform: translate(-50%, -50%);
  background: url("../images/Orange%20and%20White%20Modern%20Creative%20Brief%20Presentation.png")
    center / contain no-repeat;
  pointer-events: none;
}

.vt-stage .vt-row {
  position: relative;
  z-index: 1;
}

.vt-section__head {
  margin-bottom: 28px;
  max-width: 640px;
}

.vt-section__eyebrow {
  margin: 0 0 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fa8b17;
}

.vt-section__title {
  margin: 0 0 10px;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: #1c2539;
  letter-spacing: -0.02em;
}

.vt-section__text {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5d666f;
}

.vt-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.vt-row::-webkit-scrollbar {
  height: 6px;
}

.vt-row::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}

.vt-card {
  position: relative;
  flex: 0 0 240px;
  width: 240px;
  scroll-snap-align: start;
}

.vt-media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 30px rgba(28, 37, 57, 0.12);
}

.vt-media .vt-player,
.vt-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none !important;
}

/* Blocks hover so YouTube play/pause + arrows never appear */
.vt-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  cursor: default;
}

/* Hides YouTube play button at start until video is actually playing */
.vt-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
  background: #111;
}

.vt-card.is-playing .vt-cover {
  opacity: 0;
  visibility: hidden;
}

.vt-mute {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.vt-mute:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.05);
}

.vt-mute.is-unmuted {
  background: #fa8b17;
}

@media (min-width: 1200px) {
  .vt-card {
    flex-basis: calc((100% - 80px) / 6);
    width: calc((100% - 80px) / 6);
  }
}

@media (max-width: 991px) {
  .vt-section__mascot {
    width: min(432px, 53vw);
    top: 32px;
  }
}

@media (max-width: 767px) {
  .vt-stage::before {
    width: 196%;
    height: 182%;
  }
}

@media (max-width: 575px) {
  .vt-section {
    padding: 40px 0 56px;
  }

  .vt-section__mascot {
    display: none;
  }

  .vt-section__inner {
    padding: 0 16px;
  }

  .vt-stage::before {
    width: 224%;
    height: 168%;
  }

  .vt-card {
    flex: 0 0 210px;
    width: 210px;
  }
}
