.tenfold-video-testimonials {
  display: flex;
  gap: 12px;
  height: 540px;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .tenfold-video-testimonials {
    height: 460px;
  }
}
@media (max-width: 767px) {
  .tenfold-video-testimonials {
    flex-direction: column;
    height: auto;
    border-radius: 16px;
    gap: 8px;
  }
}
.vt-item {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.3s ease;
}
@media (max-width: 767px) {
  .vt-item {
    flex: none;
    height: 220px;
    border-radius: 12px;
    cursor: default;
  }
}
.vt-item.is-active {
  flex: 2.6;
  cursor: default;
}
@media (max-width: 767px) {
  .vt-item.is-active {
    flex: none;
    height: 420px;
  }
}
.vt-item.is-active .vt-bg-image {
  transform: scale(1);
  opacity: 0;
}
.vt-item.is-active .vt-bg-video {
  opacity: 1;
}
.vt-item.is-active .vt-active-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.4s ease 0.55s, transform 0.4s ease 0.55s;
}
.vt-item.is-active .vt-inactive-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.vt-item.is-active .vt-overlay {
  background: linear-gradient(135deg, rgba(0, 39, 98, 0.72) 0%, transparent 55%), linear-gradient(to top, rgba(0, 39, 98, 0.9) 0%, rgba(0, 133, 202, 0.45) 55%, rgba(0, 133, 202, 0.1) 100%);
}
.vt-item:not(.is-active):hover .vt-bg-image {
  transform: scale(1.04);
}
.vt-item:not(.is-active):hover .vt-overlay {
  opacity: 0.55;
}
.vt-item:not(.is-active):hover .vt-inactive-content {
  transform: translateY(-6px);
}
.vt-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #002762;
}
.vt-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.vt-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.is-active .vt-bg-video {
  opacity: 1;
}
.vt-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 39, 98, 0.72) 0%, transparent 55%), linear-gradient(to top, rgba(0, 39, 98, 0.82) 0%, rgba(0, 133, 202, 0.4) 55%, rgba(0, 133, 202, 0.08) 100%);
  transition: opacity 0.35s ease, background 0.4s ease;
}
.vt-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  color: #FFFFFF;
  box-sizing: border-box;
  gap: 0;
}
@media (max-width: 991px) {
  .vt-content {
    padding: 20px 18px;
  }
}
.vt-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.vt-logo-link {
  display: block;
}
.vt-logo {
  width: 160px;
  height: 48px;
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .vt-logo {
    width: 120px;
    height: 36px;
  }
}
.vt-body {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vt-active-content {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease 0s, transform 0.2s ease 0s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.vt-inactive-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.4s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tenfold-video-testimonials .vt-quote {
  font-family: "ClashGrotesk-Regular", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 991px) {
  .tenfold-video-testimonials .vt-quote {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .tenfold-video-testimonials .vt-quote {
    font-size: 1.25rem;
  }
}
.vt-author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}
.vt-author-name {
  font-family: "GeneralSans-Semibold", sans-serif;
  color: #FFFFFF;
}
.vt-author-sep {
  opacity: 0.5;
}
.vt-author-job {
  font-family: "GeneralSans-Regular", sans-serif;
}
.vt-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #FFFFFF;
  font-family: "GeneralSans-Semibold", sans-serif;
  font-size: 0.875rem;
  transition: gap 0.2s ease;
}
.vt-watch-btn:hover {
  gap: 16px;
}
.vt-watch-btn:hover .vt-play-icon .inner-bg {
  opacity: 1;
}
.vt-play-icon {
  position: relative;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(93deg, #D2E619 5.44%, #F5F002 100%);
}
.vt-play-icon .inner-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  background: linear-gradient(93deg, #C9DB00 0%, #E1E950 100%);
  z-index: 1;
}
.vt-play-icon i {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  color: #002762;
}
.vt-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.4s ease;
}
.vt-stat-headline {
  font-family: "ClashGrotesk-Medium", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .vt-stat-headline {
    font-size: 2.5rem;
  }
}
.vt-stat-label {
  font-family: "GeneralSans-Regular", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}
.vt-video-popup {
  z-index: 10000;
}
.vt-video-popup .background {
  z-index: 1;
}
.vt-video-popup .inner-popup {
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}
.vt-video-popup .popup-content {
  background: #00030E;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  width: 100%;
}
.vt-video-popup .popup-content::before, .vt-video-popup .popup-content::after {
  display: none;
}
.vt-video-popup .close i {
  color: #FFFFFF;
}
.vt-video-popup .vt-popup-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #00030E;
}
.vt-video-popup .vt-popup-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vt-video-popup .vt-popup-vimeo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  border: 0;
}
.wp-block[data-type="tenfold/video-testimonials"] .tenfold-video-testimonials {
  pointer-events: none;
}
