.location-info {
  padding: 120px 40px;
  background-color: #FAFAFA;
}

.location-info-inner {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 80px;
}

.location-map {
  flex: 1.1;
}

.location-map img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.location-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 20px;
}

.detail-group .detail-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.detail-group .detail-title .line-2 {
  color: #00A84D;
}

.detail-group .detail-title .line-9 {
  color: #BDB092;
}

.detail-group .detail-title .line-sinbundang {
  color: #D4003B;
}

.detail-group .detail-desc {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

.detail-group .detail-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #444;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.detail-group.schedule-group {
  max-width: 350px;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  border-top: 1px solid #eee;
}

.schedule-list li {
  display: flex;
  font-size: 17px;
  color: #444;
  padding: 12px 5px;
  border-bottom: 1px solid #eee;
}

.schedule-list li .yoil {
  font-weight: 600;
  min-width: 150px;
}

.schedule-notice {
  font-size: 16px;
  color: #444;
  font-weight: 600;
  padding-left: 15px;
  position: relative;
}

.schedule-notice::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4003B;
}

.location-map-wrap {
  padding: 80px 40px;
}

/* Transport Info */
.transport-info {
  padding: 80px 40px 120px;
  background-color: #f9f9f9;
}

.transport-info-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px; /* row-gap column-gap */
}

.transport-group {
  border-top: 3px solid #1E2B56;
  padding-top: 30px;
}

.transport-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.transport-title img {
  height: 28px;
}

/* Subway */
.subway-list li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.subway-list li:not(:last-child) {
  margin-bottom: 20px;
}

.line-badge {
  flex-shrink: 0;
  width: 67px;
  height: 74px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}
.line-badge.line-2 { background-color: #31A739; }
.line-badge.line-9 { background-color: #A98539; }
.line-badge.line-sinbundang { background-color: #AB0029; }

.subway-list li p {
  font-size: 16px;
  line-height: 1.6;
  color: #595857;
}

.subway-list li p strong {
  color: #333;
}

/* Bus */
.bus-stop-info {
  font-size: 16px;
  color: #595857;
  font-weight: 400;
}

.bus-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.bus-list li:not(:last-child) {
  margin-bottom: 15px;
}

.bus-type {
  flex-shrink: 0;
  width: 60px;
  padding: 6px 0;
  text-align: center;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.bus-type.blue { background-color: #386DE8; }
.bus-type.green { background-color: #3CC344; }
.bus-type.green-light { background-color: #87C700; }
.bus-type.red { background-color: #FB615B; }
.bus-type.blue-light { background-color: #65A6D2; }

.bus-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bus-numbers span {
  padding: 4px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

/* Parking & Car */
.parking-sub-group:not(:last-child) {
  margin-bottom: 30px;
}

.parking-sub-group h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.parking-sub-group h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.parking-sub-group p, .parking-sub-group li {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.parking-sub-group ul {
  list-style: none;
  padding-left: 0;
}
.parking-sub-group ul li {
  position: relative;
  padding-left: 15px;
}
.parking-sub-group ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  font-size: 12px;
  color: #555;
}

.highlight {
  color: #3AB349;
}
.highlight.sinbundang {
  color: #A78523;
}
.highlight.red {
  color: #D4003B;
}

.highlight span {
  color: #333;
}

.use-text {
  color: #333;
  font-weight: 400;
}

.parking-sub-group strong.highlight {
  font-weight: 700;
  color: #1E2B56;
}



@media (max-width: 1024px) {
  .location-info {
    padding: 80px 16px;
  }
  .location-info-inner {
    flex-direction: column;
    gap: 40px;
  }

  .transport-info {
    padding: 80px 16px;
  }
  .transport-info-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .detail-group .detail-title {
    font-size: 20px;
  }
  .detail-group .detail-desc {
    font-size: 14px;
  }
  .detail-group .detail-subtitle {
    font-size: 14px;
  }
  .schedule-list li {
    font-size: 14px;
  }

  .line-badge {
    width: 50px;
    height: 55px;
  }

  .transport-title {
    font-size: 20px;
  }
  .transport-title img {
    height: 24px;
  }
  .subway-list li p {
    font-size: 14px;
  }

  .parking-sub-group h4 {
    font-size: 16px;
  }
  .parking-sub-group h5 {
    font-size: 15px;
  }
  .parking-sub-group p, .parking-sub-group li {
    font-size: 14px;
  }
  
}