/* TEMPORARY STYLES FOR FAKE HEADER/BODY/FOOTER MOCKUP */
.logo {
  background-color: white;
  left: 0;
  padding: 20.5px;
  position: fixed;
  top: 0;
}
@media (min-width: 768px) {
  .logo {
    padding: 1.625rem;
  }
}
.logo svg {
  height: 44px;
  width: 44px;
}
@media (min-width: 768px) {
  .logo svg {
    height: 60px;
    width: 60px;
  }
}

.scrolled .logo {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .scrolled .logo {
    opacity: 1;
  }
}

.header {
  margin-bottom: 0;
}

body {
  /* padding: 0;
  max-width: 100%; */
}

.footer {
  background: #282828;
  color: white;
}

.footer:before {
  content: none; /* remove divider line */
}

/* TESTING MODIFICATIONS */

/*# sourceMappingURL=index.dev.css.map */

/* ---- Client logo strip: 5-col grid, honor inline formula widths ---- */
.home .clients-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px 40px;
  align-items: center;
  justify-items: center;
  float: none;
  width: 100%;
  padding: 50px 0;
  margin: 30px 0;
}

.home .clients-logos li {
  float: none;
  width: auto;
  margin: 0;
  min-height: 0;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .clients-logos li img {
  position: static; /* was absolute */
  height: auto;
  max-width: 100%; /* safety net if a real cell is narrower than 200px */
  max-height: none; /* was 100% — dropped so heights follow width */
  margin: 0;
}

@media screen and (max-width: 992px) {
  .home .clients-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .home .clients-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
