:root {
  --bg: #faf8f4;
  --bg2: #ffffff;
  --surface: #f3efe8;
  --surface2: #ece8e0;
  --border: #e0dbd0;
  --amber: #c8711a;
  --amber2: #e08830;
  --amber-dim: rgba(200,113,26,0.08);
  --text: #1a1810;
  --text2: #5a5248;
  --text3: #9a9080;
  --red: #c0392b;
  --green: #27ae60;
  --blue: #2980b9;
  --shadow: 0 1px 4px rgba(0,0,0,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: 'Noto Sans KR', sans-serif; font-weight: 300; min-height: 100vh; }

/* HEADER */
header { background: var(--bg2); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
.header-top { display: flex; align-items: center; padding: 12px 32px; gap: 16px; }
.weather-widget { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text2); width: 200px; }
.weather-temp { font-size: 17px; font-weight: 500; color: var(--amber); }
.weather-detail { font-size: 10px; color: var(--text3); }
.logo { display: flex; flex-direction: column; align-items: center; text-decoration: none; flex: 1; }
.logo-main { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 5px; color: var(--amber); line-height: 1; }
.logo-sub { font-size: 9px; letter-spacing: 6px; color: var(--text3); }
.header-links { display: flex; align-items: center; gap: 10px; width: 200px; justify-content: flex-end; }
.service-link { display: flex; flex-direction: column; align-items: center; gap: 2px; text-decoration: none; color: var(--text3); font-size: 9px; letter-spacing: 1px; padding: 5px 8px; border: 1px solid var(--border); border-radius: 4px; transition: all 0.2s; }
.service-link:hover { color: var(--amber); border-color: var(--amber); background: var(--amber-dim); }
.login-btn { padding: 6px 14px; background: var(--amber-dim); border: 1px solid var(--amber); color: var(--amber); border-radius: 4px; cursor: pointer; font-size: 11px; font-family: inherit; letter-spacing: 1px; transition: all 0.2s; }
.login-btn:hover { background: var(--amber); color: white; }
nav { display: flex; justify-content: center; padding: 0 32px; border-top: 1px solid var(--border); }
nav a { padding: 10px 20px; text-decoration: none; color: var(--text3); font-size: 11px; letter-spacing: 2px; border-bottom: 2px solid transparent; transition: all 0.2s; }
nav a:hover, nav a.active { color: var(--amber); border-bottom-color: var(--amber); }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 1000; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 28px; width: 380px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); max-height: 90vh; overflow-y: auto; }
.modal.wide { width: 500px; }
.modal h3 { font-family: 'Noto Serif KR', serif; font-size: 17px; color: var(--amber); margin-bottom: 20px; }
.modal-close { float: right; background: none; border: none; color: var(--text3); cursor: pointer; font-size: 17px; }
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 2px; color: var(--text3); margin-bottom: 5px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: 9px 11px; border-radius: 5px; font-family: inherit; font-size: 13px; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 70px; }
.btn-primary { width: 100%; padding: 10px; background: var(--amber); color: white; border: none; border-radius: 5px; font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; transition: opacity 0.2s; }
.btn-primary:hover { opacity: 0.85; }
.btn-ghost { padding: 8px 16px; background: transparent; border: 1px solid var(--border); color: var(--text2); border-radius: 5px; cursor: pointer; font-family: inherit; font-size: 13px; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-danger { padding: 8px 16px; background: rgba(192,57,43,0.08); border: 1px solid #c0392b; color: #c0392b; border-radius: 5px; cursor: pointer; font-family: inherit; font-size: 13px; transition: all 0.2s; }
.btn-danger:hover { background: #c0392b; color: white; }

/* ROUTE WEATHER (일정 날씨 미리보기) */
.route-weather { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.route-wx-box { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 10px; }
.route-wx-label { font-size: 9px; letter-spacing: 2px; color: var(--text3); margin-bottom: 4px; }
.route-wx-info { font-size: 13px; color: var(--text); }
.route-wx-temp { font-size: 18px; font-weight: 500; color: var(--amber); }

/* MAIN */
main { max-width: 1200px; margin: 0 auto; padding: 28px 32px; }
.section-title { font-size: 10px; letter-spacing: 4px; color: var(--text3); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.write-btn { padding: 6px 14px; background: var(--amber-dim); border: 1px solid var(--amber); color: var(--amber); border-radius: 4px; cursor: pointer; font-family: inherit; font-size: 11px; letter-spacing: 1px; transition: all 0.2s; }
.write-btn:hover { background: var(--amber); color: white; }

/* CALENDAR */
.calendar-section { margin-bottom: 36px; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.calendar-nav { display: flex; align-items: center; gap: 12px; }
.cal-month { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 3px; color: var(--text); min-width: 140px; text-align: center; }
.cal-nav-btn { background: none; border: 1px solid var(--border); color: var(--text2); width: 28px; height: 28px; border-radius: 4px; cursor: pointer; font-size: 13px; transition: all 0.2s; }
.cal-nav-btn:hover { border-color: var(--amber); color: var(--amber); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.cal-dow { background: var(--surface); padding: 7px 4px; text-align: center; font-size: 9px; letter-spacing: 2px; color: var(--text3); }
.cal-day { background: var(--bg2); padding: 5px 6px; height: 96px; cursor: pointer; transition: background 0.15s; overflow: hidden; display: flex; flex-direction: column; }
.cal-day:hover { background: var(--surface); }
.cal-day.today { background: rgba(200,113,26,0.06); }
.cal-day.other-month { opacity: 0.35; }
.cal-day.sunday .cal-date { color: #c0392b; }
.cal-day.saturday .cal-date { color: #2980b9; }
.cal-date { font-size: 12px; font-weight: 500; color: var(--text2); flex-shrink: 0; }
/* 날씨: 날짜 옆 인라인, 넘치면 줄바꿈 허용 */
.cal-day-top { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; margin-bottom: 2px; }
.cal-weather { font-size: 8px; color: var(--text3); white-space: nowrap; }
.cal-event { font-size: 9px; background: var(--amber-dim); color: var(--amber); padding: 2px 5px; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; border-radius: 3px; border-left: 2px solid var(--amber); }
.cal-event:hover { background: rgba(200,113,26,0.22); }
.cal-event.ev-start  { border-radius: 3px 0 0 3px; border-left: 3px solid var(--amber); border-right: none; margin-right: -8px; padding-right: 0; }
.cal-event.ev-middle { border-radius: 0; border-left: none; border-right: none; margin-left: -8px; margin-right: -8px; padding-left: 4px; padding-right: 0; color: transparent; background: rgba(200,113,26,0.13); }
.cal-event.ev-end    { border-radius: 0 3px 3px 0; border-left: none; border-right: 3px solid var(--amber); margin-left: -8px; padding-left: 4px; color: transparent; background: rgba(200,113,26,0.13); }
.cal-event.ev-single { border-radius: 3px; border-left: 2px solid var(--amber); }
/* 일정 위 출발/도착 날씨: 한 줄, 넘치면 생략 */
.cal-event-wx { font-size: 8px; color: var(--text3); line-height: 1.5; padding: 1px 3px; margin-top: 2px; background: rgba(0,0,0,0.03); border-radius: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* FILE LIST — 스크롤 테이블 */
.files-section { margin-bottom: 36px; }
.files-toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.files-search { flex: 1; background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: 7px 11px; border-radius: 5px; font-family: inherit; font-size: 12px; outline: none; }
.files-search:focus { border-color: var(--amber); }
.files-count { font-size: 11px; color: var(--text3); white-space: nowrap; }
.files-scroll-wrap { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.files-scroll { max-height: 280px; overflow-y: auto; }
.files-scroll::-webkit-scrollbar { width: 5px; }
.files-scroll::-webkit-scrollbar-track { background: var(--surface); }
.files-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.files-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.files-table thead { position: sticky; top: 0; z-index: 1; background: var(--surface); }
.files-table th { text-align: left; padding: 8px 12px; font-size: 9px; letter-spacing: 2px; color: var(--text3); border-bottom: 1px solid var(--border); font-weight: 400; }
.files-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); color: var(--text2); }
.files-table tr:last-child td { border-bottom: none; }
.files-table tr:hover td { background: var(--surface); }
.file-name-cell { color: var(--text); display: flex; align-items: center; gap: 8px; }
.file-icon { color: var(--amber); font-size: 14px; }
.files-empty { padding: 32px; text-align: center; color: var(--text3); font-size: 12px; background: var(--bg2); }

/* SLIDESHOW */
.slideshow-section { margin-bottom: 36px; }
.slideshow { position: relative; height: 300px; border-radius: 8px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px; background: linear-gradient(transparent, rgba(0,0,0,0.55)); font-size: 12px; color: white; }
.slide-dots { position: absolute; bottom: 12px; right: 14px; display: flex; gap: 5px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s; }
.dot.active { background: var(--amber2); }
.slide-empty { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text3); font-size: 12px; flex-direction: column; gap: 8px; }

/* POSTS */
.posts-section { margin-bottom: 36px; }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.posts-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; }
.post-card:hover { border-color: var(--amber); box-shadow: 0 2px 12px rgba(200,113,26,0.12); }
.post-thumb { height: 130px; background: var(--surface); overflow: hidden; }
.post-thumb-home { height: 200px; background: var(--surface); overflow: hidden; }
.post-thumb img, .post-thumb-home img { width: 100%; height: 100%; object-fit: cover; }
.post-thumb-empty { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text3); font-size: 22px; }
.post-body { padding: 12px 14px; }
.post-body-home { padding: 16px 18px; }
.post-category { font-size: 8px; letter-spacing: 2px; color: var(--amber); margin-bottom: 5px; }
.post-title { font-family: 'Noto Serif KR', serif; font-size: 13px; color: var(--text); margin-bottom: 7px; line-height: 1.5; }
.post-title-home { font-family: 'Noto Serif KR', serif; font-size: 16px; color: var(--text); margin-bottom: 8px; line-height: 1.6; }
.post-meta { font-size: 10px; color: var(--text3); display: flex; justify-content: space-between; }
.cal-event-wx { font-size: 8px; color: var(--text3); line-height: 1.6; padding: 2px 4px; margin-bottom: 1px; background: rgba(0,0,0,0.03); border-radius: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 20px 32px; text-align: center; font-size: 10px; color: var(--text3); letter-spacing: 2px; }
footer span { color: var(--amber); }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* TOAST */
.toast { position: fixed; bottom: 20px; right: 20px; background: var(--bg2); border: 1px solid var(--border); color: var(--text); padding: 10px 18px; border-radius: 6px; font-size: 12px; z-index: 9999; opacity: 0; transform: translateY(6px); transition: all 0.3s; pointer-events: none; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-color: var(--green); }
.toast.error { border-color: var(--red); }

.loading { text-align: center; padding: 24px; color: var(--text3); font-size: 11px; letter-spacing: 2px; }

/* POST DETAIL MODAL */
.modal.post-detail { width: 680px; max-width: 95vw; }
.post-detail-category { font-size: 9px; letter-spacing: 3px; color: var(--amber); margin-bottom: 8px; }
.post-detail-title { font-family: 'Noto Serif KR', serif; font-size: 20px; color: var(--text); margin-bottom: 10px; line-height: 1.5; }
.post-detail-meta { font-size: 11px; color: var(--text3); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); display: flex; gap: 14px; }
.post-detail-content { font-size: 13px; color: var(--text2); line-height: 1.9; white-space: pre-wrap; margin-bottom: 20px; min-height: 40px; }
.post-detail-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin-bottom: 16px; }
.post-detail-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 5px; cursor: pointer; border: 1px solid var(--border); transition: opacity 0.2s; }
.post-detail-gallery img:hover { opacity: 0.85; }
.post-detail-actions { display: flex; gap: 8px; justify-content: flex-end; border-top: 1px solid var(--border); padding-top: 14px; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 18px; right: 24px; color: white; font-size: 28px; cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 32px; cursor: pointer; background: none; border: none; padding: 0 20px; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 12px; }
.waypoint-row { background: var(--surface); border-radius: 6px; padding: 10px 12px; margin-bottom: 8px; }
.waypoint-date-label { font-size: 10px; letter-spacing: 1px; color: var(--amber); margin-bottom: 6px; font-weight: 600; }
.waypoint-stops { display: flex; flex-direction: column; gap: 5px; }
.waypoint-stop { display: flex; align-items: center; gap: 6px; }
.waypoint-stop-icon { font-size: 11px; width: 16px; flex-shrink: 0; }
.waypoint-stop input { flex: 1; background: var(--bg); border: 1px solid var(--border); color: var(--text); padding: 5px 8px; border-radius: 4px; font-family: inherit; font-size: 12px; outline: none; }
.waypoint-stop input:focus { border-color: var(--amber); }
.waypoint-stop select { flex: 1; background: var(--bg); border: 1px solid var(--border); color: var(--text); padding: 5px 8px; border-radius: 4px; font-family: inherit; font-size: 12px; outline: none; cursor: pointer; }
.waypoint-stop select:focus { border-color: var(--amber); }
.waypoint-wx { display: flex; gap: 10px; margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--border); min-height: 28px; }
.waypoint-wx-box { flex: 1; font-size: 10px; color: var(--text3); }
.waypoint-wx-label { font-size: 9px; letter-spacing: 1px; color: var(--text3); margin-bottom: 2px; }
.waypoint-wx-val { font-size: 11px; color: var(--text2); min-height: 14px; }
.waypoint-add-btn { font-size: 11px; color: var(--amber); background: none; border: none; cursor: pointer; padding: 2px 0; align-self: flex-start; opacity: 0.8; }
.waypoint-add-btn:hover { opacity: 1; }
.waypoint-del-btn { background: none; border: none; color: var(--text3); cursor: pointer; font-size: 14px; line-height: 1; padding: 0 2px; }
.waypoint-del-btn:hover { color: #c0392b; }
.city-input-wrap { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.city-tab-btns { display: flex; gap: 4px; margin-bottom: 2px; }
.city-tab-btn { font-size: 10px; padding: 2px 8px; border-radius: 3px; border: 1px solid var(--border); background: var(--bg); color: var(--text3); cursor: pointer; transition: all 0.15s; }
.city-tab-btn.active { border-color: var(--amber); color: var(--amber); background: var(--amber-dim); }
.city-select-row { display: flex; gap: 4px; }
.city-select-row select { flex: 1; background: var(--bg); border: 1px solid var(--border); color: var(--text); padding: 5px 6px; border-radius: 4px; font-family: inherit; font-size: 11px; outline: none; cursor: pointer; min-width: 0; }
.city-select-row select:focus { border-color: var(--amber); }
.city-text-input { width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--text); padding: 5px 8px; border-radius: 4px; font-family: inherit; font-size: 12px; outline: none; box-sizing: border-box; }
.city-text-input:focus { border-color: var(--amber); }
/* FILE TREE */
.file-tree { font-size: 12px; }
.ft-dir { margin-bottom: 2px; }
.ft-dir-header { display: flex; align-items: center; gap: 6px; padding: 5px 8px; border-radius: 4px; cursor: pointer; color: var(--text2); transition: background 0.15s; user-select: none; }
.ft-dir-header:hover { background: var(--surface); }
.ft-dir-arrow { font-size: 9px; color: var(--text3); transition: transform 0.2s; width: 10px; }
.ft-dir-arrow.open { transform: rotate(90deg); }
.ft-dir-name { font-weight: 500; color: var(--text); }
.ft-dir-count { font-size: 10px; color: var(--text3); margin-left: auto; }
.ft-dir-children { padding-left: 18px; border-left: 1px solid var(--border); margin-left: 12px; }
.ft-dir-children.collapsed { display: none; }
.ft-file { display: flex; align-items: center; gap: 8px; padding: 4px 8px; border-radius: 4px; color: var(--text2); transition: background 0.15s; }
.ft-file:hover { background: var(--surface); }
.ft-file-icon { font-size: 13px; flex-shrink: 0; }
.ft-file-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ft-file-name.highlight { color: var(--amber); font-weight: 500; }
.ft-file-size { font-size: 10px; color: var(--text3); white-space: nowrap; }
.ft-file-date { font-size: 10px; color: var(--text3); white-space: nowrap; }
.ft-empty { padding: 6px 8px; color: var(--text3); font-size: 11px; }
.ft-search-empty { text-align: center; padding: 40px 0; color: var(--text3); font-size: 12px; }
/* BOARD */
.board-list { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.board-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.15s; }
.board-item:last-child { border-bottom: none; }
.board-item:hover { background: var(--surface); }
.board-item.is-notice { background: rgba(200,113,26,0.04); }
.board-badge { font-size: 9px; letter-spacing: 1px; padding: 2px 7px; border-radius: 3px; white-space: nowrap; flex-shrink: 0; }
.board-badge.notice { background: var(--amber-dim); color: var(--amber); border: 1px solid var(--amber); }
.board-badge.general { background: var(--surface); color: var(--text3); border: 1px solid var(--border); }
.board-item-title { flex: 1; font-size: 13px; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.attach-icon {
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.5;
  flex-shrink: 0;
}
.board-item-title .comment-count { font-size: 11px; color: var(--amber); margin-left: 5px; }
.board-item-meta { font-size: 11px; color: var(--text3); white-space: nowrap; display: flex; gap: 12px; flex-shrink: 0; }
.board-pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 16px; }
.page-btn { background: var(--bg2); border: 1px solid var(--border); color: var(--text2); width: 32px; height: 32px; border-radius: 4px; cursor: pointer; font-size: 12px; transition: all 0.15s; }
.page-btn:hover { border-color: var(--amber); color: var(--amber); }
.page-btn.active { background: var(--amber); border-color: var(--amber); color: white; }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* COMMENTS */
.comment-section { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.comment-count-label { font-size: 11px; letter-spacing: 2px; color: var(--text3); margin-bottom: 12px; }
.comment-item { margin-bottom: 12px; }
.comment-item.reply { margin-left: 24px; padding-left: 12px; border-left: 2px solid var(--border); }
.comment-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.comment-author { font-size: 12px; font-weight: 500; color: var(--text); }
.comment-date { font-size: 10px; color: var(--text3); }
.comment-content { font-size: 12px; color: var(--text2); line-height: 1.7; }
.comment-actions { display: flex; gap: 8px; margin-top: 4px; }
.comment-btn { background: none; border: none; font-size: 10px; color: var(--text3); cursor: pointer; padding: 0; }
.comment-btn:hover { color: var(--amber); }
.comment-btn.danger:hover { color: var(--red); }
.comment-input-wrap { display: flex; gap: 8px; margin-top: 12px; align-items: flex-start; }
.comment-input { flex: 1; background: var(--bg2); border: 1px solid var(--border); color: var(--text); padding: 8px 10px; border-radius: 6px; font-family: inherit; font-size: 12px; resize: none; outline: none; min-height: 36px; }
.comment-input:focus { border-color: var(--amber); }
.comment-submit { background: var(--amber); border: none; color: white; padding: 8px 14px; border-radius: 6px; font-size: 11px; cursor: pointer; white-space: nowrap; }
.reply-form { margin-left: 24px; padding-left: 12px; border-left: 2px solid var(--border); margin-top: 6px; }

/* EVENT CARD LIST */
.ev-list { display: flex; flex-direction: column; gap: 0; }
.ev-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; display: flex; gap: 14px; align-items: flex-start; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; }
.ev-card:hover { border-color: var(--amber); box-shadow: 0 2px 12px rgba(200,113,26,0.1); }
.ev-date-box { background: var(--surface); border-radius: 8px; padding: 8px 10px; text-align: center; min-width: 44px; flex-shrink: 0; }
.ev-date-d { font-size: 22px; font-weight: 500; color: var(--amber); line-height: 1; }
.ev-date-m { font-size: 9px; letter-spacing: 1px; color: var(--text3); margin-top: 3px; }
.ev-body { flex: 1; min-width: 0; }
.ev-title { font-family: 'Noto Serif KR', serif; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.ev-route { font-size: 11px; color: var(--text2); margin-bottom: 5px; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.ev-route-arrow { color: var(--text3); font-size: 10px; }
.ev-meta { font-size: 11px; color: var(--text3); display: flex; gap: 12px; flex-wrap: wrap; }
