/* 오시는 길 */
.location-content {
  max-width: 1200px;
}

.location-head {
  text-align: center;
  margin-bottom: 48px;
}

.location-head .ko {
  font-size: clamp(32px, 3.4vw, 42px);
  color: #e8890c;
}

.location-head .en {
  margin-top: 8px;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--color-navy);
}

.location-head .line {
  margin: 18px auto 0;
  width: 40px;
  height: 2px;
  background: #e8890c;
}

.venue-title {
  margin-bottom: 28px;
  color: var(--color-navy);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.venue-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}

.venue-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.venue-meta li {
  display: grid;
  grid-template-columns: 24px 72px 1fr;
  gap: 10px;
  align-items: start;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.venue-meta .ico {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #8a8a8a;
}

.venue-meta .label {
  color: #666;
  font-weight: 700;
  white-space: nowrap;
}

.map-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.map-btns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ff8c02;
  background: linear-gradient(
    90deg,
    rgba(255, 140, 2, 1) 0%,
    rgba(255, 179, 71, 1) 100%
  );
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: filter 0.15s, transform 0.15s;
}

.map-btns a:hover {
  filter: brightness(1.05);
}

.map-btns a:active {
  transform: scale(0.98);
}

.map-box {
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 320px;
  margin-bottom: 64px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

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

.transit {
  text-align: center;
}

.transit-title {
  color: var(--color-navy);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.transit-desc {
  margin-top: 10px;
  margin-bottom: 32px;
  color: #444;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.transit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.transit-card {
  padding: 28px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.transit-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-navy);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.transit-card-head .badge-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  flex-shrink: 0;
}

.transit-card-head .badge-ico img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.transit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.line-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 50%;
  background: #8936e0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ff8c02;
  background: linear-gradient(
    90deg,
    rgba(255, 140, 2, 1) 0%,
    rgba(255, 179, 71, 1) 100%
  );
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.tag.limo,
.tag.subway {
  background: #ff8c02;
  background: linear-gradient(
    90deg,
    rgba(255, 140, 2, 1) 0%,
    rgba(255, 179, 71, 1) 100%
  );
}

@media (max-width: 960px) {
  .venue-top {
    grid-template-columns: 1fr;
  }

  .map-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .transit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .venue-meta li {
    grid-template-columns: 22px 1fr;
    gap: 8px;
  }

  .venue-meta .label {
    grid-column: 2;
  }

  .venue-meta .value {
    grid-column: 2;
  }

  .map-box {
    min-height: 220px;
    aspect-ratio: 4 / 3;
    margin-bottom: 48px;
  }
}
