#industries,
#industries.industries-served,
#industries.section,
.industries-served.section,
.industries-served {
  background: #fff;
  color: var(--text, #111);
  padding: 32px 0 36px;
}

.industries-served__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
}

.industries-served__copy {
  flex: 0 0 auto;
}

.industries-served__copy h2 {
  font-family: var(--sans, "Outfit", Arial, sans-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-transform: none;
  margin: 0;
  white-space: nowrap;
}

.industries-served__copy .lede,
.industries-served__lede {
  max-width: 22em;
  margin: 6px 0 0;
  color: var(--muted, #5b5b5b);
  font-size: 0.9rem;
  line-height: 1.4;
}

.industries-served__list {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: start;
  justify-items: center;
  column-gap: 6px;
  row-gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.industries-served__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.industries-served__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  background: #eee;
  border-radius: 12px;
  overflow: visible;
}

.industries-served__icon,
.industries-served__tile img,
.industries-served__tile svg {
  display: block;
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.industries-served__icon svg {
  width: 100%;
  height: 100%;
}

.industries-served__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text, #111);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .industries-served__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .industries-served__copy h2 {
    white-space: normal;
  }

  .industries-served__list {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .industries-served__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 18px;
  }
}

@media (max-width: 480px) {
  #industries,
  #industries.industries-served,
  #industries.section,
  .industries-served.section,
  .industries-served {
    padding: 28px 0 32px;
  }

  .industries-served__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .industries-served__label {
    white-space: normal;
  }
}
