/**
 * Module: Enterprise Testimonial
 * Figma Node: 417:1447
 * Generated: 2025-12-12
 *
 * What customers are saying - Customer testimonial section
 */

/* ==========================================================================
   Section Container
   ========================================================================== */

.enterprise-testimonial {
  background-color: #059E42;
  width: 100%;
  overflow: hidden;
  padding: 93px 120px;
}

.enterprise-testimonial__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ==========================================================================
   Testimonial Card
   ========================================================================== */

.enterprise-testimonial__card {
  display: flex;
  flex-direction: column;
  gap: 48px;
  background-color: var(--enterprise-white);
  border-radius: var(--enterprise-radius-medium);
  padding: 23px 26px;
  width: 100%;
  max-width: 900px;
}

/* ==========================================================================
   Quote Text
   ========================================================================== */

.enterprise-testimonial__quote {
  font-family: var(--enterprise-font-family);
  font-size: 24px;
  font-weight: 400;
  color: var(--enterprise-dark-blue);
  line-height: 32.784px;
  text-align: left;
  max-width: 848px;
  margin: 0;
}

/* ==========================================================================
   Footer (Author + CTA)
   ========================================================================== */

.enterprise-testimonial__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 143px;
}

/* ==========================================================================
   Author Info
   ========================================================================== */

.enterprise-testimonial__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

/* Handle both direct img and picture wrapper (WordPress responsive images) */
.enterprise-testimonial__author-logo {
  width: 60px;
  height: 60px;
  border-radius: 4.878px;
  flex-shrink: 0;
  overflow: hidden;
}

.enterprise-testimonial__author-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enterprise-testimonial__author-info {
  font-family: var(--enterprise-font-family);
  font-size: 16px;
  font-weight: 400;
  color: var(--enterprise-dark-blue);
  line-height: 21.856px;
  max-width: 384px;
  font-style: normal;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablet Landscape */
@media (max-width: 1200px) {
  .enterprise-testimonial {
    padding: 80px 60px;
  }

  .enterprise-testimonial__footer {
    gap: 60px;
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .enterprise-testimonial {
    padding: 60px 45px;
  }

  .enterprise-testimonial__card {
    padding: 20px 24px;
    gap: 36px;
  }

  .enterprise-testimonial__quote {
    font-size: 20px;
    line-height: 28px;
  }

  .enterprise-testimonial__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .enterprise-testimonial {
    padding: 40px 20px;
  }

  .enterprise-testimonial__card {
    padding: 16px 20px;
    gap: 24px;
  }

  .enterprise-testimonial__quote {
    font-size: 18px;
    line-height: 26px;
  }

  .enterprise-testimonial__author {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .enterprise-testimonial__author-logo,
  .enterprise-testimonial__author-logo img {
    width: 50px;
    height: 50px;
  }

  .enterprise-testimonial__author-info {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .enterprise-testimonial__quote {
    font-size: 16px;
    line-height: 24px;
  }

  .enterprise-testimonial__author-info {
    font-size: 13px;
    line-height: 18px;
  }
}
