

:root{
  --brand:#ff5a1f;
  --brand-dark:#e64b12;
  --bg:#fbf7f2;
  --card:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:rgba(17,24,39,.12);
  --shadow:0 14px 40px rgba(0,0,0,.08);
  --max: 1040px;

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

*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:#fff;
  line-height:1.75;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.page-top{
  background:var(--bg);
  padding:22px 0 28px;
  border-bottom:1px solid var(--line);
}
.breadcrumb{
  color:var(--muted);
  font-size:14px;
  padding:6px 0 10px;
}
.sep{opacity:.6; margin:0 6px}
.title{
  margin:8px 0 6px;
  font-size:44px;
  letter-spacing:-0.04em;
  font-weight:950;
  text-align:center;
}
.desc{
  margin:0 auto;
  max-width:760px;
  color:var(--muted);
  text-align:center;
  font-size:16px;
}
.top-actions{display:flex; justify-content:center; margin-top:16px}

.content{padding:40px 0 68px}

.section-title{
  font-size:22px;
  font-weight:950;
  margin:0 0 8px;
  letter-spacing:-0.02em;
}
.section-desc{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 16px;
  border-radius:12px;
  font-weight:900;
  border:1px solid var(--line);
  background:#fff;
  transition:.15s ease;
  cursor:pointer;
}
.btn.primary{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}
.btn.primary:hover{background:var(--brand-dark); border-color:var(--brand-dark); transform:translateY(-1px)}
.btn.ghost:hover{transform:translateY(-1px)}
.btn.ghost{background:#fff}

.highlight{margin-bottom:28px}
.highlight__box{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:28px 24px;
}
.badge{
  display:inline-flex;
  align-items:center;
  height:30px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:var(--brand-dark);
  background:rgba(255,90,31,.12);
  border:1px solid rgba(255,90,31,.22);
}
.highlight__box h2{
  margin:10px 0 8px;
  font-size:26px;
  font-weight:950;
  letter-spacing:-0.03em;
}
.highlight__box p{
  margin:0;
  color:#1f2937;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin:26px 0 38px;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.card__top{display:flex; align-items:center; gap:12px; margin-bottom:8px}
.icon{
  width:44px; height:44px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,90,31,.12);
  color:var(--brand-dark);
  border:1px solid rgba(255,90,31,.22);
  font-weight:950;
}
.card h3{margin:0; font-size:20px; font-weight:950; letter-spacing:-0.02em}
.card__desc{margin:6px 0 14px; color:var(--muted); font-size:14px}
.steps{margin:0 0 16px; padding-left:18px; color:#111827}
.steps li{margin:6px 0}
.actions{display:flex; gap:10px; flex-wrap:wrap}

.bank__box, .receipt__box, .contact__box{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.bank .row, .contact .row{
  display:flex; gap:14px;
  padding:10px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.bank .row:last-child, .contact .row:last-child{border-bottom:0}
.label{width:110px; color:var(--muted); font-weight:800}
.value{flex:1; font-weight:850}
.bank__actions{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap}
.note{margin:12px 0 0; color:var(--muted); font-size:13px}

.bullets{margin:0; padding-left:18px}
.bullets li{margin:7px 0}

.faq-head{margin-bottom:12px}
.search{
  width:100%;
  height:48px;
  border-radius:14px;
  border:1px solid var(--line);
  padding:0 14px;
  font-size:15px;
  outline:none;
}
.search:focus{border-color:rgba(255,90,31,.45); box-shadow:0 0 0 4px rgba(255,90,31,.12)}

.accordion .item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  padding:0;
  margin:10px 0;
  overflow:hidden;
}
.accordion summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  font-weight:950;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.accordion summary::-webkit-details-marker{display:none}
.chev{opacity:.7; transition:.15s ease}
.item[open] .chev{transform:rotate(180deg)}
.panel{
  padding:0 18px 16px;
  color:#374151;
  border-top:1px solid rgba(0,0,0,.06);
}

.cta-wide{margin-top:28px}
.cta-box{
  background:var(--bg);
  border:1px solid rgba(255,90,31,.18);
  border-radius:18px;
  padding:20px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.cta-box h2{margin:0; font-size:18px; font-weight:950}
.cta-box p{margin:4px 0 0; color:var(--muted); font-size:14px}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
  text-align:center;
  background:#fff;
}

@media (max-width: 980px){
  .grid{grid-template-columns:1fr; }
  .title{font-size:34px}
  .label{width:90px}
}

:root{
  --brand:#FF5A1F;
  --brand-weak: rgba(255,90,31,.14);
  --text:#111827;
  --muted:#6b7280;
  --line: rgba(0,0,0,.08);
  --bg:#fff;
}

/* 전체 폭: 기존 게시판 페이지처럼 중앙 정렬 */
.donate-wrap{
  max-width: 1040px;
  margin: 60px auto 90px;
  padding: 0 20px;
}

/* 메인 카드 크기(단일 카드용) */
.donate-card--hero{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(17,24,39,.06);
}

/* 헤더 */
.donate-card__head{
  display:flex;
  align-items:center;
  gap:14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.donate-icon{
  width: 54px; height:54px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: var(--brand-weak);
  color: var(--brand);
  font-size: 20px;
}

.donate-title{
  margin:0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.donate-sub{
  margin:6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.donate-badge{
  margin-left:auto;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand);
  background: var(--brand-weak);
  border: 1px solid rgba(255,90,31,.18);
}

/* 본문: 2열 */
.donate-card__body{
  display:grid;
  grid-template-columns: 1.5fr .9fr; /* 좌 설명 넓게 */
  gap: 26px;
  padding-top: 20px;
}

.donate-desc{
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.7;
  font-size: 15.5px;
}
.donate-desc strong{ color: var(--brand); }

.donate-steps{
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.9;
}
.donate-steps li{ margin: 6px 0; }
.donate-steps strong{ font-weight: 900; }

/* 우측 CTA 박스 느낌 */
.donate-right{
  border-left: 1px dashed rgba(255,90,31,.25);
  padding-left: 22px;
}

.donate-cta{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  transition: transform .08s ease, opacity .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: var(--brand);
  color:#fff;
}
.btn.primary:hover{ opacity:.92; }

.btn.ghost{
  background:#fff;
  color: var(--text);
  border-color: var(--line);
}
.btn.ghost:hover{ border-color: rgba(0,0,0,.18); }

.w-100{ width:100%; }

.donate-mini{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,90,31,.06);
  border: 1px solid rgba(255,90,31,.14);
  color: var(--text);
  font-size: 13.5px;
}
.mini-row{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
}
.mini-key{ color: var(--muted); font-weight: 800; }
.mini-val a{ color: var(--brand); font-weight: 900; text-decoration:none; }

/* 모바일: 1열로 */
@media (max-width: 820px){
  .donate-card__body{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .donate-right{
    border-left: 0;
    padding-left: 0;
    border-top: 1px dashed rgba(255,90,31,.25);
    padding-top: 16px;
  }
}
