/* Jazr Clients Widget Styles */

:root {
  --jazr-primary: hsl(204, 80%, 36%);
  --jazr-secondary: hsl(210, 20%, 96%);
  --jazr-foreground: hsl(0, 0%, 10%);
  --jazr-muted: hsl(0, 0%, 35%);
}

.jazr-clients-section {
  width: 100%;
  padding: 4rem 1rem;
  background-color: hsl(0, 0%, 100%);
}

@media (min-width: 768px) {
  .jazr-clients-section {
    padding: 6rem 1rem;
  }
}

.jazr-clients-container {
  max-width: 1280px;
  margin: 0 auto;
}

.jazr-clients-header {
  text-align: center;
  margin-bottom: 2rem;
}

.jazr-clients-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--jazr-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .jazr-clients-title {
    font-size: 2.25rem;
  }
}

.jazr-clients-subtitle {
  color: var(--jazr-muted);
}

.jazr-logos-grid {
  display: grid;
  grid-template-columns: repeat(var(--jazr-col-mobile, 4), 1fr);
  gap: 1rem;
  align-items: center;
  justify-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .jazr-logos-grid {
    grid-template-columns: repeat(var(--jazr-col-desktop, 8), 1fr);
    gap: 1.5rem;
  }
}

.jazr-logo-container {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background-color: var(--jazr-secondary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .jazr-logo-container {
    width: 5rem;
    height: 5rem;
  }
}

.jazr-logo-container:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.jazr-logo-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.jazr-clients-bottom-text {
  text-align: center;
  color: var(--jazr-muted);
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.jazr-stats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.jazr-stat-item {
  text-align: center;
}

.jazr-stat-value {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--jazr-primary);
  margin-bottom: 0;
  display: block;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .jazr-stat-value {
    font-size: 2.25rem;
  }
}

.jazr-stat-label {
  color: var(--jazr-muted);
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .jazr-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
