/* 전체 폭 1280 맞추기(페이지에서 우선 적용) */
.header-inner {
  max-width: 1280px;
}
.container {
  max-width: 1280px;
  margin: 28px auto;
  padding: 0 16px 60px;
}

.page-title {
  margin: 6px 0 18px;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  padding: 18px;
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.map {
  margin: 0;
}

.map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
  background: #fff;
}

.map-cap {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

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

.addr-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.label {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 6px;
}

.addr {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.addr-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
}

.how {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.how-title {
  font-weight: 900;
  margin-bottom: 10px;
}

.how-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.bottom {
  display: flex;
  justify-content: flex-end;
}

.back {
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .bottom {
    justify-content: center;
  }
}
