/* =========================================================
   2026 사업계획 안내(상세) + 기존 공통 스타일 (ONE FILE)
   - 사용자가 준 CSS 그대로 포함
   - 사업계획 페이지 가독성 보강(추가)도 하단에 포함
   ========================================================= */

:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --soft:#f3f4f6;

  --brand:#eb1010;     /* 포인트 컬러 */
  --brand-dark:#e64b12;

  --max: 760px;        /* 중앙 좁은 폭 */
  --radius: 10px;

  --font: ui-sans-serif, system-ui, -apple-system, "Apple SD Gothic Neo", "Noto Sans KR",
          "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
}

/* 상세 본문 전체 래퍼: 화면 중앙 */
.post-wrap{
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center; /* 텍스트 가운데 정렬 */
}

/* 상단 카테고리/제목도 중앙 */
.post-head{
  text-align: center;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  line-height:1.75;
}

a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{font-weight:900; letter-spacing:-0.02em}
.nav{display:flex; gap:18px; align-items:center}
.nav a{font-weight:650; font-size:14px; color:#111827}
.nav a.active{color:var(--brand); text-decoration:underline}
.donate{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--brand);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  font-weight:850;
  font-size:14px;
  box-shadow:0 10px 24px rgba(255,90,31,.20);
}
.donate:hover{text-decoration:none; background:var(--brand-dark)}

@media (max-width: 920px){
  .nav{display:none}
}

/* Page */
.page{
  padding:44px 20px 80px;
}
.issue{
  max-width:var(--max);
  margin:0 auto;
}

/* Category */
.category{
  text-align:center;
  margin-top:4px;
  margin-bottom:20px;
}
.category-label{
  display:inline-block;
  font-weight:700;
  color:#374151;
  letter-spacing:-0.01em;
}
.category-line{
  display:block;
  width:34px;
  height:1px;
  background:var(--line);
  margin:10px auto 0;
}

/* Title + meta */
.title{
  text-align:center;
  font-size:28px;
  letter-spacing:-0.03em;
  line-height:1.35;
  margin:0 0 20px;
}
.meta{
  text-align:left;
  color:var(--muted);
  font-size:14px;
  margin:50px 0 18px;
}

/* Content */
.content{
  font-size:15px;
  color:#111827;
}
.content p{
  margin:0 0 18px;
}

/* CTA */
.cta{
  margin:28px 0 22px;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--brand);
  color:#fff;
  padding:14px 26px;
  border-radius:0;           /* 각진 버튼 느낌 */
  font-weight:850;
  letter-spacing:-0.01em;
  box-shadow:none;
}
.btn-primary:hover{
  background:var(--brand-dark);
  text-decoration:none;
}

/* Author */
.author{
  margin:10px 0 18px;
  color:#111827;
  font-size:14px;
}
.author .label{color:#6b7280; margin-right:6px}

/* Attachment */
.attachment{
  margin-top:10px;
}
.attachment-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.attachment-bullet{
  padding-top:12px;
  color:#111827;
  font-weight:900;
}
.attachment-box{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:#f7f7f7;
  border:1px solid #efefef;
  padding:14px 16px;
}
.attachment-info{
  min-width:0;
}
.file-name{
  display:inline-block;
  color:var(--brand);
  font-weight:750;
  text-decoration:none;
}
.file-name:hover{ text-decoration:underline; }
.file-size{
  margin-top:2px;
  color:var(--muted);
  font-size:13px;
}
.file-download{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#fff;
  border:1px solid var(--line);
  flex:0 0 auto;
}
.file-download:hover{
  background:var(--soft);
  text-decoration:none;
}

/* Share/Print tools */
.tools{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:12px;
}
.tool{
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.tool:hover{background:var(--soft)}

/* Next post */
.next{
  margin-top:36px;
  border-top:1px solid var(--line);
  padding-top:18px;
}
.next-link{
  display:flex;
  align-items:center;
  gap:10px;
  color:#111827;
}
.next-icon{
  display:inline-block;
  transform: translateY(-1px);
  color:#111827;
}
.next-title{
  font-weight:650;
  color:#111827;
}
.next-link:hover{
  text-decoration:none;
}
.next-link:hover .next-title{
  text-decoration:underline;
}

/* Footer actions */
.footer-actions{
  margin-top:16px;
}
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--brand);
  color:var(--brand);
  padding:10px 18px;
  font-weight:850;
  border-radius:0; /* 각진 느낌 */
}
.btn-outline:hover{
  background:rgba(255,90,31,.06);
  text-decoration:none;
}

/* Print */
@media print{
  .site-header, .cta, .tools, .next, .footer-actions { display:none !important; }
  .page{ padding:0; }
  .issue{ max-width:100%; }
}

/* =========================================================
   [추가] 2026 사업계획 안내 가독성 보강 (append)
   - 텍스트는 가운데 정렬 유지하되, 본문 폭/리듬 개선
   ========================================================= */

/* 사업계획 페이지는 문단이 길어져서 가독성용 폭을 따로 제한 */
.content p{
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* 소제목(h3) 강조 */
.content h3{
  margin: 48px 0 18px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

/* 목록(ol) 가독성 */
.content ol{
  max-width: 720px;
  margin: 0 auto 24px;
  padding-left: 0;
  list-style-position: inside;
}
.content ol li{
  margin-bottom: 14px;
  line-height: 1.85;
}

/* 조문형 strong 강조 */
.content ol li strong{
  display: inline-block;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

/* 첨부파일 영역을 '핵심 문서'처럼 보이게 */
.attachment{
  margin-top: 36px;
}
.attachment-box{
  background: #fff7f7;
  border: 1px solid rgba(235,16,16,0.25);
}

/* 모바일 최적화 */
@media (max-width: 640px){
  .title{ font-size:22px; }
  .content h3{ font-size:16px; }
  .content p, .content ol{ max-width:100%; }
}
