/* Tailwind 보완용 최소 CSS */
html { scroll-behavior: smooth; }

/* 검색 하이라이트 */
.search-highlight { background: #fef08a; border-radius: 2px; }

/* 카드 호버 */
.event-card { cursor: pointer; }

/* 지역 탭 active 상태 */
.region-tab.active {
  background-color: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

/* 모바일 헤더 높이 확보 */
@media (max-width: 640px) {
  main { padding-top: 1.5rem; }
}

/* ───────── 계산기 인쇄 전용 ───────── */
@media print {
  /* 광고·네비·푸터·액션바 숨김 */
  header, footer, nav,
  #search-modal, #mobile-menu,
  #result-actions,
  .adsbygoogle,
  ins.adsbygoogle,
  details,
  #calc-widget button {
    display: none !important;
  }
  /* 인쇄 영역 표시 */
  .print-only { display: block !important; }
  body { background: #fff !important; color: #000 !important; font-size: 11pt; }
  main { padding: 0 !important; max-width: 100% !important; }
  #calc-result { background: #fff !important; border: 1px solid #e5e7eb !important; box-shadow: none !important; page-break-inside: avoid; }
  /* 워터마크: 페이지 하단 고정 */
  .print-only::before {
    content: 'uapress.kr — 여행 계산기';
    display: block;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 4px;
  }
  a { color: #000 !important; text-decoration: none !important; }
  h1, h2 { page-break-after: avoid; }
}
.print-only { display: none; }
