.location-section {
  padding: 120px 0;
  background: #000000;
  color: var(--background);
}

.location-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.location-section__content,
.location-section__hours {
  display: flex;
  flex-direction: column;
}

.location-section__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.location-section__address {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.location-section__map {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--background);
  padding-bottom: 4px;
  margin-bottom: 48px;
}

.location-section__phone {
  font-family: var(--font-heading), serif;
  font-size: 40px;
}

.location-section__hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  max-width: 400px;
}

.location-section__hours-list p {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .location-section__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
