/**
 * Module: Enterprise Logo Strip
 * Figma Node: 417:1018
 * Generated: 2025-12-12
 *
 * Trusted by industry leaders - Company logo showcase
 */

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

.enterprise-logo-strip {
  background-color: #FFFFFF;
  width: 100%;
  padding: 80px 120px;
}

.enterprise-logo-strip__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1512px;
  margin: 0 auto;
}

/* ==========================================================================
   Section Title
   ========================================================================== */

.enterprise-logo-strip__title {
  font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #2B388F;
  line-height: normal;
  text-align: center;
  margin: 0;
}

/* ==========================================================================
   Logos Grid
   ========================================================================== */

.enterprise-logo-strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

/* ==========================================================================
   Individual Logo Container
   ========================================================================== */

.enterprise-logo-strip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Handle both direct img and picture wrapper (WordPress responsive images) */
.enterprise-logo-strip__logo-img {
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.enterprise-logo-strip__logo-img img {
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

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

/* Large Desktop - reduce gaps and padding */
@media (max-width: 1400px) {
  .enterprise-logo-strip {
    padding: 70px 100px;
  }

  .enterprise-logo-strip__logos {
    gap: 50px;
  }
}

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

  .enterprise-logo-strip__logos {
    gap: 40px;
  }

  .enterprise-logo-strip__logo-img,
  .enterprise-logo-strip__logo-img img {
    max-height: 42px;
    max-width: 160px;
  }
}

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

  .enterprise-logo-strip__container {
    gap: 36px;
  }

  .enterprise-logo-strip__logos {
    gap: 32px;
  }

  .enterprise-logo-strip__logo-img,
  .enterprise-logo-strip__logo-img img {
    max-height: 38px;
    max-width: 140px;
  }
}

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

  .enterprise-logo-strip__container {
    gap: 28px;
  }

  .enterprise-logo-strip__title {
    font-size: 18px;
  }

  .enterprise-logo-strip__logos {
    gap: 24px;
  }

  .enterprise-logo-strip__logo-img,
  .enterprise-logo-strip__logo-img img {
    max-height: 32px;
    max-width: 120px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .enterprise-logo-strip {
    padding: 32px 16px;
  }

  .enterprise-logo-strip__title {
    font-size: 16px;
  }

  .enterprise-logo-strip__logos {
    gap: 20px;
  }

  .enterprise-logo-strip__logo-img,
  .enterprise-logo-strip__logo-img img {
    max-height: 28px;
    max-width: 100px;
  }
}
