/* ============================================================
   포디엄 — "프로그램(연주회 책자)" 디자인 시스템
   고운 종이 · 잉크 · 공연장 벨벳 클라레. 단일 라이트 테마(의도된 선택).
   ============================================================ */
:root {
  /* 종이와 잉크 */
  --ivory: #fbfaf7;        /* 페이지 바탕 (고운 종이) */
  --paper: #ffffff;        /* 카드·표면 */
  --wash:  #f2efe7;        /* 눌린 칩·웰 */
  --ink:   #1b1917;        /* 잉크(근접 블랙, 따뜻함) */
  --ink-soft: #736c60;     /* 흐린 잉크(따뜻한 토프) */
  --line:  #e4ded1;        /* 헤어라인(오선) */
  /* 액센트 — 공연장 벨벳 클라레 */
  --claret: #7a2a38;
  --claret-deep: #5c1e2a;
  --claret-tint: #f2e5e6;
  /* 의미색 (액센트와 별개) */
  --green: #35674a;
  --green-tint: #e6efe8;
  --red:   #a4392c;        /* 경고 */
  --red-tint: #f7e7e3;
  --grey:  #9a958a;
  --grey-tint: #ece9e2;
  --radius: 3px;
  --shadow: 0 1px 2px rgba(27,25,23,0.05);

  /* 폰트 롤 */
  --serif: "Song Myung", "Nanum Myeongjo", serif;
  --sans:  "Pretendard", -apple-system, BlinkMacSystemFont, "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  --latin: "Cormorant", "Song Myung", serif;

  /* 레거시 별칭 — 인라인 스타일 호환 */
  --navy: var(--ink);
  --navy-soft: #48423a;
  --gold: var(--claret);
  --gold-light: var(--claret-tint);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-feature-settings: "tnum" 0;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: var(--serif); }
/* 한국어 줄바꿈: 음절 중간이 아니라 어절(띄어쓰기) 단위로 */
:is(h1,h2,h3) { text-wrap: balance; word-break: keep-all; overflow-wrap: anywhere; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--claret); outline-offset: 2px; }
.tnum { font-variant-numeric: tabular-nums; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ---------- 헤더 (종이색 + 헤어라인) ---------- */
.site-header {
  background: rgba(251,250,247,0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 62px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo .accent { color: var(--claret); }   /* 지휘봉 점 */
.logo .beta {
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  vertical-align: super;
  color: var(--claret);
  margin-left: 3px;
}
.main-nav { display: flex; gap: 2px; flex: 1; }
.main-nav a {
  padding: 6px 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); font-weight: 600; border-bottom-color: var(--claret); }
.main-nav a .soon {
  font-size: 0.6rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 4px;
  margin-left: 3px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 6px 14px;
  font-size: 0.86rem;
  transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- 버튼 ---------- */
.btn-primary {
  background: var(--claret);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 9px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--claret-deep); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

/* ---------- 히어로 (타이포 편집형) ---------- */
.hero {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; max-width: 760px; }
.hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--claret);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--claret); }
.hero p { color: var(--ink-soft); font-size: 1.06rem; max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn-ghost { padding: 11px 22px; font-size: 0.95rem; }
.hero-cta .btn-primary { padding: 11px 24px; }
/* 오선(staff) 모티프 — 아주 옅게 */
.hero::after {
  content: "";
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 46%; height: 120px;
  background-image: repeating-linear-gradient(
    to bottom, var(--line) 0 1px, transparent 1px 24px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

/* ---------- 섹션 ---------- */
.services { padding: 64px 0 20px; }
.section-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.section-sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 30px; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 26px;
  transition: border-color 0.15s, transform 0.15s;
  position: relative;
  display: block;
}
.service-card:not(.disabled):hover { border-color: var(--claret); transform: translateY(-2px); }
.service-card .icon {
  font-family: var(--latin);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--claret);
  display: block;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.service-card h3 { font-family: var(--sans); font-size: 1.08rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.service-card p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.55; }
.service-card.disabled { opacity: 0.5; }
.badge-soon, .badge-live {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 2px 6px;
}
.badge-soon { background: var(--wash); color: var(--ink-soft); }
.badge-live { background: var(--claret); color: #fff; }

/* ---------- 최신 공고 프리뷰 ---------- */
.recent { padding: 28px 0 80px; }
.recent-list { display: flex; flex-direction: column; }
.recent-more { margin-top: 26px; }

/* ---------- 페이지 헤드 (종이색) ---------- */
.page-head {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding: 44px 0 0;
}
.page-head h1 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.page-head .desc { color: var(--ink-soft); font-size: 0.92rem; max-width: 640px; margin-bottom: 26px; }
.page-head .desc b { color: var(--ink); font-weight: 600; }
.page-head .desc a { color: var(--claret); text-decoration: underline; text-underline-offset: 2px; }
.tabs { display: flex; gap: 24px; }
.tab {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  padding: 8px 0 12px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.tab.active { color: var(--ink); font-weight: 600; border-bottom-color: var(--claret); }
.tab .count { font-size: 0.78rem; color: var(--claret); margin-left: 5px; font-variant-numeric: tabular-nums; }

.board-layout {
  display: grid;
  grid-template-columns: 214px 1fr;
  gap: 30px;
  padding: 28px 0 96px;
  align-items: start;
}

/* ---------- 필터 사이드바 ---------- */
.filters {
  background: transparent;
  padding: 4px 0;
  position: sticky;
  top: 78px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
}
.filter-reset-top {
  width: 100%;
  text-align: right;
  margin: 0 0 16px;
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 0.78rem;
  cursor: pointer;
}
.filter-reset-top:hover { color: var(--claret); }
.filter-summary {
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 11px;
  list-style: none;
}
.filter-summary::-webkit-details-marker { display: none; }
.filter-summary::after { content: " +"; }
details[open] > .filter-summary::after { content: " −"; }
.filter-group { margin-bottom: 22px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 11px;
}
.filter-options { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  transition: all 0.12s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.on { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
/* '현악 전체'처럼 악기군을 통째로 고르는 칩 — 개별 악기 칩과 한눈에 구분되게 */
.chip.group { border-style: dashed; font-weight: 600; }
.chip.group.on { border-style: solid; }
.filter-reset {
  width: 100%;
  margin-top: 4px;
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-decoration: underline;
}

/* ---------- 목록 툴바 ---------- */
/* wrap 필수 — 없으면 정렬버튼+검색창의 최소폭이 375px를 넘어 모바일 그리드
   트랙(1fr)을 통째로 밀어내고, 페이지 전체에 가로 스크롤이 생긴다. */
.board-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; align-items: center; }
.search-box {
  flex: 1;
  min-width: 160px;  /* 이보다 좁아지느니 다음 줄로 내려간다 (좁은 화면에서 검색창 뭉개짐 방지) */
  display: flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
}
.search-box:focus-within { border-color: var(--ink); }
.search-box input {
  flex: 1;
  min-width: 0;  /* input 고유폭(약 200px)이 .search-box의 최소폭이 되는 것 차단 */
  border: none;
  outline: none;
  padding: 10px 8px;
  font-size: 0.92rem;
  background: transparent;
  font-family: inherit;
  color: var(--ink);
}
.sort-sel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 0.88rem;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}
.sort-sel:hover { border-color: var(--ink); }
.result-count { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 12px; }
.result-count strong { color: var(--ink); font-variant-numeric: tabular-nums; }

/* ---------- 공고 카드 (편집 인쇄물) ---------- */
.job-list { display: flex; flex-direction: column; gap: 8px; }
.job-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 17px 20px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.job-card:hover { border-color: var(--claret); }
.job-card:hover h3 { color: var(--claret); }
/* 키보드 포커스: Tab으로 카드에 왔을 때만 테두리 강조 (마우스 클릭엔 안 뜸) */
.job-card:focus-visible { outline: 2px solid var(--claret); outline-offset: 2px; }
.job-card .top-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.job-card h3 {
  font-family: var(--sans);
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.job-card .meta {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.job-card .meta .pay { color: var(--claret); font-weight: 600; }
/* 객원 프로그램(연주곡) 라인 */
.job-card .program-line {
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 6px;
  padding-left: 10px;
  border-left: 2px solid var(--claret);
}
.job-card .program-line b {
  font-weight: 600;
  color: var(--claret);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin-right: 6px;
}
.empty { text-align: center; padding: 72px 0; color: var(--ink-soft); }

/* ---------- 태그 (절제된 상태 표시) ---------- */
.tag {
  font-size: 0.69rem;
  font-weight: 600;
  border-radius: 2px;
  padding: 2px 7px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
/* 중립 */
.tag.cat  { background: var(--wash); color: var(--ink-soft); }
.tag.pos  { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.tag.inst { background: var(--claret-tint); color: var(--claret-deep); }
/* 상태 — 초록(접수/판매중) */
.tag.dd-open, .tag.type-offer, .tag.ok { background: var(--green-tint); color: var(--green); }
/* 상태 — 클라레(마감임박·급구·NEW) */
.tag.urgent, .tag.dd-soon { background: var(--claret-tint); color: var(--claret); }
/* 상태 — 회색(마감·판매완료) */
.tag.dd-closed { background: var(--grey-tint); color: var(--grey); }
.tag.dd-always { background: var(--wash); color: var(--ink-soft); }
/* 경고 */
.tag.warn { background: var(--red-tint); color: var(--red); }
/* 구분·구직 */
.tag.type-seek { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.tag.src-official { background: var(--ink); color: var(--ivory); }
/* 수집 원천 기관명 — 출처 라벨이라 분류 태그(연주=src-official 검정)와 색이 겹치면 안 된다.
   같은 검정을 쓰던 탓에 '군산시립교향악단'과 '연주'가 한 덩어리로 보였다 (2026-08-02) */
.tag.org { background: var(--ivory); color: var(--ink); border: 1px solid var(--ink); font-weight: 600; }
.tag.src-community { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
/* 예시(목데이터) — 노란 경고색으로 실데이터와 확실히 구분 */
.tag.sample { background: #f6e58d; color: #6b5900; font-weight: 700; }
/* 예시 게시글 카드 — 많이 옅게(반투명) + 점선 테두리로 '작성 예시'임을 명확히 */
.job-card.is-sample { opacity: 0.4; border-style: dashed; background: transparent; }
.job-card.is-sample:hover { opacity: 0.65; }
/* 샘플 데이터 안내 배너 (연습실·과외·중고거래 등 목데이터 페이지) */
.sample-banner { background: #fff6d6; border: 1px solid #e6cf6a; color: #6b5900;
  border-radius: 8px; padding: 10px 16px; margin: 14px 0; font-size: 0.86rem; line-height: 1.5; }
.sample-banner b { color: #6b5900; }

.inst-group { margin-bottom: 9px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.inst-group-label {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--ink-soft);
  width: 100%;
  margin-bottom: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.job-card.closed { opacity: 0.5; }
.job-card .source-line {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.job-card .source-line .src { color: var(--claret); font-weight: 600; }

/* ---------- 모달 ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(27,25,23,0.5);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 20px;
  z-index: 100;
  overflow-y: auto;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  padding: 34px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal .top-row { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.modal h2 {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.modal .detail-meta {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 9px 14px;
  font-size: 0.88rem;
  padding: 18px 0;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.modal .detail-meta dt { color: var(--ink-soft); }
.modal .detail-meta dd { color: var(--ink); font-weight: 500; }
.modal .body-text { font-size: 0.92rem; color: var(--ink); white-space: pre-line; margin-bottom: 26px; line-height: 1.7; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ---------- 폼 ---------- */
.form-grid { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--ivory);
  outline: none;
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--claret); }
.form-field textarea { resize: vertical; min-height: 110px; }
.radio-row { display: flex; gap: 16px; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; cursor: pointer; font-weight: 400; }

/* ---------- 크롤 상태 노트 ---------- */
.crawl-note {
  display: flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 14px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.crawl-note strong { color: var(--ink); }
.crawl-note b { color: var(--claret); }
.crawl-note .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}
.crawl-note .new-badge {
  background: var(--claret);
  color: #fff;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px 6px;
}

/* 상단 최근 업데이트 — 가볍게 한 줄 */
.update-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.update-line .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}
.update-line strong { color: var(--ink); font-weight: 600; }

/* 하단 수집 정보 — 잘 안 보이게, 눌러야 펼쳐짐 */
.crawl-detail {
  margin: 40px 0 8px;
  font-size: 0.72rem;
  color: var(--ink-faint, var(--ink-soft));
  opacity: 0.65;
}
.crawl-detail summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink-soft);
  padding: 4px 0;
  user-select: none;
}
.crawl-detail summary::-webkit-details-marker { display: none; }
.crawl-detail summary::before { content: "▸ "; }
.crawl-detail[open] summary::before { content: "▾ "; }
.crawl-detail summary:hover { color: var(--ink); }
.crawl-detail-body {
  padding: 8px 0 4px;
  line-height: 1.7;
}
.crawl-detail-body .cd-stat { color: var(--ink-soft); margin-bottom: 8px; }
.crawl-detail-body .cd-srcs { display: flex; flex-wrap: wrap; gap: 5px; }
.crawl-detail-body .cd-src {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1px 7px;
  white-space: nowrap;
}
.crawl-detail-body .cd-src.off { opacity: 0.45; text-decoration: line-through; }

/* ---------- 홈 크롤 배너 ---------- */
.crawl-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 14px;
  flex-wrap: wrap;
  transition: border-color 0.15s;
}
.crawl-banner:hover { border-color: var(--claret); }
.crawl-banner h3 { font-family: var(--sans); font-size: 1.08rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.crawl-banner p { font-size: 0.85rem; color: var(--ink-soft); max-width: 640px; }

/* ---------- 푸터 ---------- */
.site-footer {
  background: var(--ink);
  color: #b7b0a4;
  padding: 40px 0;
  font-size: 0.82rem;
  text-align: center;
}
.site-footer .logo { color: var(--ivory); font-size: 1.15rem; margin-bottom: 8px; display: inline-block; }
.site-footer .logo .accent { color: var(--claret-tint); }

/* ---------- 피드백 버튼 ---------- */
.feedback-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  background: var(--claret);
  color: #fff;
  border-radius: 2px;
  padding: 11px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(122,42,56,0.28);
  z-index: 90;
  transition: transform 0.15s, background 0.15s;
}
.feedback-fab:hover { background: var(--claret-deep); transform: translateY(-2px); }

/* ---------- 반응형 ---------- */
@media (max-width: 860px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .board-layout { grid-template-columns: 1fr; }
  .filters { position: static; max-height: none; }
  .hero { padding: 64px 0 56px; }
  .hero::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { overflow-x: auto; }
  .main-nav a { white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ---------- 글쓰기 폼 보조 ---------- */
.form-section-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 2px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.form-section-label .hint, label .hint {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

/* ---------- 악기 제공 배지 (포디엄 고유 필드) ---------- */
.tag.provided {
  background: var(--green-tint);
  color: var(--green);
  font-weight: 600;
}
/* ---------- 내 공고 배지 ---------- */
.tag.mine {
  background: var(--claret);
  color: #fff;
  font-weight: 600;
}

/* ---------- 직접 올린 공고 고정 섹션 ---------- */
.pinned-head {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--claret);
  margin: 2px 0 4px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pinned-head span {
  background: var(--claret);
  color: #fff;
  border-radius: 999px;
  font-size: 0.7rem;
  padding: 1px 8px;
}
.pinned-sep {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 14px 0 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.job-card.mine {
  border-color: var(--claret);
  box-shadow: inset 3px 0 0 var(--claret);
}
