.location-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.location-block {
  font-size: 14px;
}

.location-block strong {
display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
    color: #000;
}

.location-block a {
  display: block;
  margin: 4px 0;
  color: #000;
  text-decoration: none;
}

.location-block a:hover {
    color: #ffa920;
}

.more-link {
  margin-top: 8px;
}

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

a.btn.toggle-more {
    text-align: left;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: underline;
}

a.btn.toggle-more:hover {
    color: #ffa920;
}


a.btn.toggle-more:focus {
    outline: none;
    box-shadow: none;
}