.sl-container {
    max-width: 1440px;
    padding: 0 2rem;
    margin: 0 auto;
}
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-feature-item {
    padding: 10px;
}

.service-feature-item .service-feature-item__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

div.locations-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  @media (min-width: 768px) {
    div.locations-wrapper {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 1280px) {
    div.locations-wrapper {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  
  div.locations-wrapper {
    gap: 1.5rem;
  }
  
  div.locations-wrapper > a {
    text-align: center;
    width: 100%;
    flex: 1 1 0%;
    color: inherit;
  }
  
  div.locations-wrapper > a > img {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 4/3;
    width: 100%;
    margin-bottom: 1.125rem;
    border-radius: 1.5rem;
  }
  
  div.locations-wrapper > a > span {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: inherit
  }