.location-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  padding: 0 7vw;
}

.location-band .location-group {
  border-left: 1px solid rgba(255, 255, 255, .16);
  padding: 48px 30px 52px;
}

.location-band .location-group:last-child {
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.location-group span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #d9c09a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.location-group span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border: 2px solid #d9c09a;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.location-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-group li {
  position: relative;
  padding: 7px 0 7px 17px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.55;
}

.location-group li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d9c09a;
}

.location-group small {
  color: rgba(255, 255, 255, .58);
  font-size: inherit;
}

@media (max-width: 1100px) {
  .location-band { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 7vw; }
  .location-band .location-group { border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .location-band .location-group:nth-child(even) { border-right: 1px solid rgba(255, 255, 255, .16); }
}

@media (max-width: 620px) {
  .location-band { grid-template-columns: 1fr; padding: 28px 7vw; }
  .location-band .location-group { padding: 30px 18px; border-right: 0; }
  .location-band .location-group:nth-child(even),
  .location-band .location-group:last-child { border-right: 0; }
}
