/* UI neutrals */
/* Backgrounds */
.vb-testimonials {
  width: 100%;
  padding: 60px 0;
}

.vb-testimonials__grid {
  display: grid;
  gap: 18px;
}

.vb-testimonials__grid.vb-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vb-testimonials__grid.vb-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vb-testimonials__grid.vb-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .vb-testimonials__grid.vb-cols-4,
  .vb-testimonials__grid.vb-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .vb-testimonials__grid {
    grid-template-columns: 1fr !important;
  }
}
.vb-tcard {
  perspective: 1400px;
  border-radius: 18px;
  overflow: hidden;
}

.vb-tcard__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform;
}

.vb-tcard__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.vb-tcard__front {
  background-size: cover;
  background-position: center;
  transform: rotateY(0deg);
}

.vb-tcard__back {
  transform: rotateY(180deg);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.vb-tcard__content {
  width: 100%;
  max-width: 360px;
  text-align: center;
}

/* Quote typography (as requested) */
.vb-tcard__quote {
  font-family: "Dorsa", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1; /* 100% */
  letter-spacing: 0.1em; /* 10% */
  color: #000000;
  margin: 0 0 22px 0;
  text-align: center;
}

/* Name + location */
.vb-tcard__name,
.vb-tcard__loc {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}

.vb-tcard__metaCenter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: absolute;
  bottom: 30px;
  width: 100%;
  left: 0;
  right: 0;
  padding: 0px 60px;
}

.vb-tcard__whoCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Play button luxury */
.vb-tcard__play {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  padding: 0;
}

.vb-tcard__play:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.vb-tcard__playSvg svg {
  display: block;
}

.vb-tcard__play.is-playing {
  box-shadow: 0 14px 50px rgba(223, 152, 108, 0.22);
}

.vb-tcard__play.is-playing .vb-tcard__playSvg {
  filter: drop-shadow(0 10px 22px rgba(223, 152, 108, 0.22));
}

/* Responsive quote */
@media (max-width: 1024px) {
  .vb-tcard__quote {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .vb-tcard__quote {
    font-size: 26px;
  }
}
.testimonials-title {
  font-family: "Dorsa", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1; /* 100% */
  letter-spacing: 0.1em; /* 10% */
  color: #06273A;
  text-align: center;
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

/*# sourceMappingURL=vc_villa_testimonials.css.map */
