.location {
  padding: var(--sp-half) 0;
}

.location__container {
  display: flex;
  flex-flow: column;
  gap: 40px;
}

.location__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.location__text {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
}

.location__text--1 {
  max-width: 58.8rem;
}

.location__text--2 {
  max-width: 45.5rem;
}

.location__about {
  margin-top: 40px;
  background: var(--bej-20, #faf8f4);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.location__about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.location__about-item {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
  display: flex;
  gap: 20px;
}

.location__about-item b {
  font-weight: 700;
}

@media (max-width: 1260px) {
  .location__container {
    gap: 20px;
  }

  .location__content {
    flex-direction: column;
  }

  .location__text {
    max-width: 100%;
  }

  .location__about {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .location__about-list {
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .location__about-list {
    grid-template-columns: 1fr;
  }
}