.location-section {
  width: 100%;
  padding: 5.5rem 3rem;
  background-color: #f6f7f2;
}

.location-container {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  max-width: 78rem;
  margin: 0 auto;
}

.location-content {
  flex: 0 0 38%;
}

.location-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--hunter-green);
  margin-bottom: 1.75rem;
}

.location-description strong {
  color: var(--evergreen);
  font-weight: var(--fw-bold);
}

.location-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.location-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
}

.location-area-chip.is-base {
  background-color: var(--evergreen);
  color: var(--lime-cream);
}

.location-area-chip.is-base i {
  color: var(--gold);
}

.location-area-chip:not(.is-base) {
  background-color: #f6f7f2;
  color: var(--hunter-green);
  border: 1px solid rgba(19, 42, 19, 0.1);
}

.location-map {
  flex: 1 1 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(19, 42, 19, 0.14);
  line-height: 0;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 26rem;
  border: 0;
}

@media (max-width: 1024px) {
  .location-section {
    padding: 4.5rem 2rem;
  }

  .location-container {
    gap: 3rem;
  }
}

@media (max-width: 912px) {
  .location-content {
    flex: 0 0 40%;
  }
}

@media (max-width: 900px) {
  .location-container {
    flex-direction: column;
  }

  .location-content {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .location-description {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .location-areas {
    justify-content: center;
  }

  .location-map {
    width: 100%;
  }

  .location-map iframe {
    height: 22rem;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 4rem 1.5rem;
  }

  .location-description {
    font-size: 1rem;
  }

  .location-map iframe {
    height: 18rem;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 3.5rem 1.25rem;
  }

  .location-description {
    font-size: 0.95rem;
  }

  .location-area-chip {
    font-size: 0.8rem;
    padding: 0.45rem 0.85rem;
  }

  .location-map iframe {
    height: 15rem;
  }
}
