/* main__video_case_study_quote — pull quote with portrait photo */

.gfc.main__video_case_study_quote {
  padding: clamp(64px, 9vw, 128px) 0;
  background: #fff;
  position: relative;
}

.gfc.main__video_case_study_quote .vcs-quote__container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

/* Two-column layout: copy wider than photo */
.gfc.main__video_case_study_quote .vcs-quote__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* Copy column */
.gfc.main__video_case_study_quote .vcs-quote__copy {
  position: relative;
}

/* Large decorative opening quote mark — anchored to the first line of text */
.gfc.main__video_case_study_quote .vcs-quote__text::before {
  content: "\201C";
  font-family: "Gilroy", "Gilroy-Bold", "Manrope", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 120px;
  line-height: 0.8;
  color: #B31983;
  opacity: 0.18;
  position: absolute;
  top: -8px;
  left: -8px;
  pointer-events: none;
}

/* Eyebrow */
.gfc.main__video_case_study_quote .vcs-quote__eyebrow {
  font-family: "Caveat", cursive;
  font-size: 32px;
  font-weight: 600;
  color: #00AFAA;
  margin: 0 0 14px;
  line-height: 1;
  position: relative;
}

/* Quote text */
.gfc.main__video_case_study_quote .vcs-quote__text {
  position: relative;
  font-family: "Gilroy", "Gilroy-Bold", "Manrope", "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: #343741;
  margin: 0 0 36px;
  text-wrap: pretty;
}

/* Teal highlight on <mark> within the quote */
.gfc.main__video_case_study_quote .vcs-quote__text mark {
  background: linear-gradient(180deg, transparent 60%, rgba(0, 175, 170, 0.32) 60%);
  color: inherit;
  padding: 0 2px;
}

/* Attribution row */
.gfc.main__video_case_study_quote .vcs-quote__attr {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Circular avatar with gradient background and initials */
.gfc.main__video_case_study_quote .vcs-quote__avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(95deg, #B31983 0%, #C2317B 65%, #E0532B 88%, #F47721 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Gilroy", "Gilroy-Bold", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -8px rgba(179, 25, 131, 0.6);
}

.gfc.main__video_case_study_quote .vcs-quote__name {
  font-weight: 700;
  font-size: 16px;
  color: #343741;
}

.gfc.main__video_case_study_quote .vcs-quote__role {
  font-size: 13px;
  color: #6B6F7A;
  margin-top: 2px;
}

/* Photo column */
.gfc.main__video_case_study_quote .vcs-quote__photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #EFF0EF;
  box-shadow: 0 14px 32px -16px rgba(52,55,65,.18), 0 4px 12px -6px rgba(52,55,65,.08);
}

.gfc.main__video_case_study_quote .vcs-quote__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional gradient overlay — sits above the image, below the badge */
.gfc.main__video_case_study_quote .vcs-quote__photo--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(244, 119, 33, 0.22) 0%, rgba(179, 25, 131, 0.28) 100%);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

/* Badge: hangs off the left side of the photo */
.gfc.main__video_case_study_quote .vcs-quote__badge {
  position: absolute;
  left: -18px;
  bottom: 24px;
  background: #00AFAA;
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px -16px rgba(52,55,65,.18), 0 4px 12px -6px rgba(52,55,65,.08);
  white-space: nowrap;
  z-index: 2;
}

/* Responsive */
@media (max-width: 880px) {
  .gfc.main__video_case_study_quote .vcs-quote__inner {
    grid-template-columns: 1fr;
  }

  .gfc.main__video_case_study_quote .vcs-quote__photo {
    max-width: 360px;
  }
}
