/* NZ 생활 툴 — 블로그 서브페이지 (Tailwind 미사용, main.css와 충돌 방지) */

.site-header a,
.site-header button,
.nz-page a,
.nz-page button {
  pointer-events: auto;
  cursor: pointer;
}

#main-content.nz-page {
  position: relative;
  z-index: 1;
}

.nz-page {
  --nz-bg: #0f1419;
  --nz-card: rgba(30, 36, 48, 0.9);
  --nz-accent: #5b9cf5;
  background: var(--nz-bg);
  color: #e8e8e8;
  padding: 1.5rem 0 3rem;
  min-height: 50vh;
}

.nz-page .nz-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.nz-page .nz-card {
  background: var(--nz-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.nz-page h1 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.nz-page h2,
.nz-page h3 {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.75rem;
}

.nz-page .nz-lead {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.nz-page a.nz-link {
  color: var(--nz-accent);
  text-decoration: underline;
}

.nz-page a.nz-btn {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nz-page a.nz-btn:hover,
.nz-page a.nz-btn:focus-visible {
  background: rgba(91, 156, 245, 0.25);
  color: #fff;
}

.nz-page a.nz-btn--primary {
  background: rgba(37, 99, 235, 0.85);
  border-color: rgba(37, 99, 235, 0.5);
}

.nz-page .nz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.nz-page .nz-chip {
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-family: inherit;
}

.nz-page .nz-chip.is-on {
  background: #2563eb;
  color: #fff;
}

.nz-page .nz-field {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.nz-page .nz-report {
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.nz-page [v-cloak] {
  display: none !important;
}

#app:not([v-cloak]) {
  display: block;
}

.nz-page .nz-mvp-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: underline;
}

.nz-page .nz-mvp-soon {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.nz-page a.nz-card--clickable {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nz-page a.nz-card--clickable:hover {
  border-color: rgba(91, 156, 245, 0.45);
  background: rgba(40, 48, 64, 0.95);
}

.nz-fuel-top3 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nz-fuel-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nz-fuel-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nz-fuel-rank {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nz-fuel-body strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.nz-fuel-area {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 0.35rem;
}

.nz-fuel-tip {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.35rem 0 0.5rem;
}

.nz-page .nz-btn--sm {
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
}

.nz-page textarea.nz-field {
  resize: vertical;
  min-height: 4rem;
  font-family: inherit;
}

.nz-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nz-timeline-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nz-timeline-item:last-child {
  border-bottom: none;
}

.nz-timeline-item time {
  display: block;
  font-size: 0.8rem;
  color: #93c5fd;
  margin-bottom: 0.25rem;
}

.nz-letter-out {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 1rem;
  margin: 0;
  font-family: inherit;
}

.nz-park-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nz-park-list .nz-card {
  margin-bottom: 0;
}

.nz-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.nz-check-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.nz-check-row label,
.nz-check-col .nz-check-block {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  cursor: pointer;
}

.nz-check-col {
  display: flex;
  flex-direction: column;
}

.nz-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nz-bin-hero {
  text-align: center;
  padding: 1.5rem;
}

.nz-bin-hero.is-today {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
}

.nz-bin-dday {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}

.nz-bin-bins {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.nz-bin-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.32em;
  font-weight: 600;
  vertical-align: baseline;
}

.nz-bin-dot {
  width: 1.24em;
  height: 1.24em;
  min-width: 1.24em;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.nz-bin-chip--red {
  color: #ff4d4d;
}

.nz-bin-chip--red .nz-bin-dot {
  background: #ff2222;
  box-shadow:
    0 0 0 1px rgba(255, 100, 100, 0.55),
    0 0 10px rgba(255, 40, 40, 0.75);
}

.nz-bin-chip--yellow {
  color: #ffe033;
}

.nz-bin-chip--yellow .nz-bin-dot {
  background: #ffd400;
  box-shadow:
    0 0 0 1px rgba(255, 230, 80, 0.45),
    0 0 10px rgba(255, 210, 0, 0.65);
}

.nz-bin-chip--blue {
  color: #60a5fa;
}

.nz-bin-chip--blue .nz-bin-dot {
  background: #2563eb;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.55);
}

.nz-bin-plus {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
  margin: 0 0.12em;
}

.nz-split-result {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #93c5fd;
}

.nz-tour-list,
.nz-kw-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.nz-tour-item,
.nz-kw-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nz-kw-item {
  flex-direction: column;
  align-items: flex-start;
}

.nz-kw-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nz-quick-launch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 0.5rem;
}

a.nz-quick-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 3.75rem;
  padding: 0.5rem 0.35rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

a.nz-quick-pill:hover,
a.nz-quick-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.55);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.25);
  color: #fff;
}

.nz-quick-pill-emoji {
  font-size: 1.25rem;
  line-height: 1;
}
