.location-section {
  max-width: 1400px;
  margin: 48px auto 200px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.location-box {
  flex: 1 1 500px;
  border-radius: 8px;
}

.location-box h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

.location-label {
  font-size: 14px;
  color: #c00;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.map-wrap {
  width: 100%;
  height: 340px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
}

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

.location-info li {
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.location-info li:first-child {
    font-weight: 600;
}

.location-info .icon {
  font-size: 18px;
  margin-right: 10px;
  color: #d00;
}

/* 반응형 */
@media (max-width: 1660px) {
  .location-section {
    flex-direction: column;
    padding: 0 16px;
    margin: 0px auto 200px;
  }

  .location-box {
    flex: 1 1 100%;
  }
}
