.video-testimonial-section {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* VIDEO */
.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 8px;
}

/* CONTENT */
.eyebrow {
    font-size: 14px;
    letter-spacing: 2px;
    color: #955F3A;
    text-transform: uppercase;
    font-weight: 600;
}

.quote {
    font-size: 22px;
    line-height: 36px;
    margin: 20px 0;
    color: #262626;
}

.name {
    margin: 20px 0 5px;
    font-size: 20px;
    font-weight: 800;
}

.role {
    font-size: 15px;
    color: #777;
    font-family: "JetBrains Mono", monospace;
}

/* STATS */
.stats {
    display: flex;
    gap: 50px;
    margin-top: 35px;
}

.stat h3 {
    font-size: 34px;
    color: #955F3A;
    margin-bottom: 6px;
    font-family: "JetBrains Mono", monospace;
}

.stat p {
    font-size: 16px;
    font-weight: 700;
    color: #262626;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .video-wrapper iframe {
        min-height: 260px;
    }

    .stats {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}


/* Video */
.video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-wrapper img {
  width: 100%;
  display: block;
}

.quote {
    font-size: 22px;
    line-height: 38px;
    margin: 20px 0;
    color: #333;
    font-weight: 400;
}

.name {
    margin: 20px 0 5px;
    font-size: 22px;
    font-weight: 900;
}

.role {
    font-size: 16px;
    color: #777;
    line-height: 26px;
    font-weight: 300;
    font-family: "JetBrains Mono", monospace;
}

/* Stats */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat h3 {
    font-size: 30px;
    color: #955F3A;
    margin-bottom: 5px;
    font-family: "JetBrains Mono", monospace;
    line-height: 1;
}

.stat p {
    font-size: 18px;
    color: #262626;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    justify-content: space-between;
  }
}