/* plaza/subway.css — 지하철 노선도 패널. plaza/style.css(503줄)와 분리된 독립 레고블럭. */
.subway-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #1a1a2e;
  color: #fff;
}

.subway-panel {
  margin: 16px auto;
  max-width: 720px;
  padding: 16px;
  border-radius: 12px;
  background: #0f0f1a;
  color: #fff;
}

.subway-line {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 8px 0;
}

.subway-line::before {
  content: "";
}

.subway-station {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  padding: 8px 4px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  position: relative;
}

.subway-station--open {
  cursor: pointer;
}
.subway-station--open:hover {
  background: rgba(255, 255, 255, 0.08);
}

.subway-station--coming_soon {
  opacity: 0.4;
  cursor: not-allowed;
}

.subway-station__dot {
  font-size: 22px;
}

.subway-station__tag {
  font-size: 10px;
  color: #f59e0b;
}
