@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #1D4ED8; --primary-dark: #1e3a8a; --primary-light: #3B82F6;
  --secondary: #059669; --accent: #F59E0B;
  --dark: #0F172A; --gray-900: #111827; --gray-700: #374151;
  --gray-500: #6B7280; --gray-200: #E5E7EB; --gray-100: #F3F4F6; --white: #FFFFFF;
}

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 5rem 5% 3rem; margin-bottom: 0;
}
.page-banner .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem; }
.page-banner .breadcrumb span { color: rgba(255,255,255,0.8); }
.page-banner h1 { font-size: clamp(29px, 3vw, 40px); font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.page-banner p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; font-size: 15px; }

/* ── SECTIONS ── */
.sec { padding: 5rem 5%; }
.sec-bg { background: var(--gray-100); }
.sec-dark { background: var(--dark); color: var(--white); }
.cont { max-width: 1100px; margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 3rem; }
.sec-tag { display: inline-block; background: rgba(29,78,216,0.08); color: var(--primary); padding: 0.28rem 0.9rem; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 0.6rem; }
.sec-title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--gray-900); line-height: 1.3; letter-spacing: -0.5px; }
.sec-desc { font-size: 15px; color: var(--gray-500); margin-top: 0.5rem; max-width: 500px; margin-inline: auto; }

/* ── HERO BUTTONS ── */
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.10); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.20); color: rgba(255,255,255,0.88); padding: 0.45rem 1.1rem; border-radius: 4px; font-size: 13px; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.04em; }
.hero-badge::before { content:''; width:6px; height:6px; background:var(--accent); border-radius:50%; flex-shrink:0; }
.hero-title { font-size: clamp(38px,6vw,80px); font-weight: 800; color: var(--white); line-height: 1.18; margin-bottom: 1.25rem; letter-spacing: -1.5px; white-space: nowrap; }
.hero-title em { font-style:normal; background:linear-gradient(90deg,var(--accent),#fb923c); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { font-size: clamp(16px,1.8vw,18px); color: rgba(255,255,255,0.75); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; justify-content: flex-start; }
.btn-p { background:var(--accent); color:var(--dark); padding:0.85rem 2rem; border-radius:6px; font-size:15px; font-weight:700; text-decoration:none; transition:transform 0.2s,box-shadow 0.2s; display:inline-block; border:none; cursor:pointer; letter-spacing:0.01em; font-family:'Noto Sans KR',sans-serif; }
.btn-p:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(245,158,11,0.4); }
.btn-o { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,0.5); padding:0.85rem 2rem; border-radius:6px; font-size:15px; font-weight:600; text-decoration:none; transition:all 0.2s; display:inline-block; cursor:pointer; letter-spacing:0.01em; font-family:'Noto Sans KR',sans-serif; }
.btn-o:hover { background:rgba(255,255,255,0.12); border-color:var(--white); }

/* ── STATS ── */
#hb-stats { background: var(--white); padding:3rem 5%; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); position:relative; overflow:hidden; }
#hb-stats::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(29,78,216,0.03),transparent); animation:statsSweep 3.5s ease-in-out infinite; pointer-events:none; }
@keyframes statsSweep { 0%{left:-60%} 100%{left:160%} }
.stats-grid { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; text-align:center; }
.stat-item { padding:1.5rem 1rem; border-right:1px solid var(--gray-200); display:flex; flex-direction:column; align-items:center; gap:0.4rem; }
.stat-item:last-child { border-right:none; }
.stat-val { display:flex; align-items:baseline; gap:0.15rem; }
.stat-num { font-size:clamp(29px,3.5vw,40px); font-weight:800; color:var(--primary); display:inline; line-height:1; transition:transform 0.3s; }
.stat-num.popped { animation:statPop 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards; }
@keyframes statPop { 0%{transform:scale(0.7);opacity:0} 60%{transform:scale(1.08)} 100%{transform:scale(1);opacity:1} }
.stat-unit { font-size:16px; font-weight:800; color:var(--primary); }
.stat-lbl { font-size:13px; color:var(--gray-500); margin-top:0.5rem; font-weight:500; }

#hb-live-badge {
  display:flex; align-items:center; justify-content:center; gap:0.45rem;
  margin-top:1.25rem; padding:0.5rem;
  font-size:0.72rem; color:var(--gray-500);
}
.lb-dot { width:6px; height:6px; border-radius:50%; background:#22c55e; flex-shrink:0; animation:lbBlink 1.4s ease-in-out infinite; }
@keyframes lbBlink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.lb-date { color:var(--gray-500); font-weight:500; }
#hb-clock { color:var(--gray-700); font-weight:700; font-variant-numeric:tabular-nums; letter-spacing:0.06em; }

/* ── PROGRAMS ── */
.prog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.prog-card { background:var(--white); border:1px solid var(--gray-200); border-top: 3px solid transparent; border-radius:12px; padding:2rem; transition:all 0.3s; cursor:pointer; }
.prog-card:hover { border-top-color:var(--primary); transform:translateY(-3px); box-shadow:0 12px 32px rgba(0,0,0,0.08); }
.prog-icon { width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:1.1rem; }
.pi-blue { background:rgba(29,78,216,0.09); }
.pi-green { background:rgba(5,150,105,0.09); }
.pi-amber { background:rgba(245,158,11,0.09); }
.prog-card h3 { font-size:17px; font-weight:700; margin-bottom:0.5rem; }
.prog-card p { font-size:14px; color:var(--gray-500); line-height:1.75; }
.prog-tags { display:flex; gap:0.4rem; flex-wrap:wrap; margin-top:1rem; }
.ptag { background:var(--gray-100); color:var(--gray-700); font-size:12px; font-weight:500; padding:0.2rem 0.7rem; border-radius:100px; }

/* ── INSTAGRAM ── */
.ig-section { background: var(--gray-100); padding: 5rem 5%; }
.ig-inner { max-width: 1100px; margin: 0 auto; }
.ig-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:2rem; flex-wrap:wrap; gap:1rem; }
.ig-title-group { display:flex; align-items:center; gap:1rem; }
.ig-logo { width:44px; height:44px; background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; flex-shrink:0; }
.ig-title { font-size:22px; font-weight:800; color:var(--gray-900); }
.ig-handle { font-size:14px; color:var(--gray-500); margin-top:0.1rem; }
.ig-follow-btn { display:inline-flex; align-items:center; gap:0.5rem; background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:var(--white); padding:0.65rem 1.4rem; border-radius:100px; font-weight:700; font-size:14px; text-decoration:none; transition:transform 0.2s, box-shadow 0.2s; }
.ig-follow-btn:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(220,39,67,0.35); }
.ig-posts-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.ig-post-wrap { border-radius:16px; overflow:hidden; background:var(--gray-200); aspect-ratio:1; position:relative; }
.ig-post-wrap iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:none; display:block; }

/* ── STORIES ── */
.story-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.story-card { background:var(--white); border:1px solid var(--gray-200); border-radius:12px; padding:2rem; position:relative; overflow:hidden; transition: box-shadow 0.3s; }
.story-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.story-card::before { content:'❝'; position:absolute; top:1rem; right:1.25rem; font-size:3rem; color:var(--primary); opacity:0.07; }
.story-text { font-size:14px; color:var(--gray-700); line-height:1.85; margin-bottom:1.25rem; font-style:italic; }
.story-prof { display:flex; align-items:center; gap:0.7rem; }
.s-av { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.95rem; font-weight:700; color:var(--white); flex-shrink:0; }
.sa { background:linear-gradient(135deg,var(--primary),var(--primary-light)); }
.sb { background:linear-gradient(135deg,var(--secondary),#34d399); }
.sc { background:linear-gradient(135deg,var(--accent),#fb923c); }
.s-name { font-weight:700; font-size:14px; }
.s-role { font-size:12px; color:var(--gray-500); }

/* ── DONATE SECTION ── */
.donate-wrap { background:linear-gradient(160deg,#0c1428 0%,#1a2f6e 60%,#1D4ED8 100%); padding:5rem 5%; }
.donate-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.impact-list { list-style:none; display:flex; flex-direction:column; gap:0.6rem; }
.impact-list li { display:flex; align-items:center; gap:0.7rem; font-size:0.9rem; color:rgba(255,255,255,0.82); }
.impact-list li::before { content:'✓'; width:20px; height:20px; background:var(--secondary); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.62rem; font-weight:700; flex-shrink:0; }
.donate-form { background:rgba(255,255,255,0.07); border-radius:24px; padding:2rem; border:1px solid rgba(255,255,255,0.1); }
.donate-form h3 { font-size:17px; font-weight:700; margin-bottom:1.1rem; color:var(--white); }
.amount-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0.55rem; margin-bottom:1rem; }
.amt-btn { background:rgba(255,255,255,0.07); border:2px solid rgba(255,255,255,0.12); color:var(--white); padding:0.65rem; border-radius:10px; font-size:14px; font-weight:600; cursor:pointer; transition:all 0.2s; font-family:'Noto Sans KR',sans-serif; }
.amt-btn:hover,.amt-btn.active { background:var(--accent); border-color:var(--accent); color:var(--dark); }
.acct-box { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:10px; padding:0.9rem 1.2rem; margin-top:0.9rem; }
.acct-lbl { font-size:12px; color:rgba(255,255,255,0.4); margin-bottom:0.2rem; }
.acct-num { font-size:15px; font-weight:700; color:var(--white); }
.acct-nm { font-size:12px; color:rgba(255,255,255,0.5); margin-top:0.15rem; }
.donate-cta { display:block; width:100%; padding:0.9rem; background:var(--accent); color:var(--dark); border:none; border-radius:100px; font-size:15px; font-weight:700; cursor:pointer; margin-top:0.9rem; transition:transform 0.2s; font-family:'Noto Sans KR',sans-serif; }
.donate-cta:hover { transform:translateY(-2px); }

/* ── SUB PAGE CONTENT ── */
.content-block { padding: 4rem 5%; }
.content-block .cont { max-width: 900px; }
.content-prose { font-size: 15px; color: var(--gray-700); line-height: 2; }
.content-prose p { margin-bottom: 1.25rem; }
.content-prose h3 { font-size: 19px; font-weight: 700; color: var(--gray-900); margin: 2rem 0 0.75rem; }
.content-prose h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin: 1.5rem 0 0.5rem; }
.content-prose ul { padding-left: 1.25rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.content-prose ul li { font-size: 15px; }

/* 미션비전 v2 */
.mv-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #3b82f6 100%);
  padding: 5rem 5% 4rem; position: relative; overflow: hidden;
}
.mv-hero::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}
.mv2-section { background: var(--gray-100); padding: 4rem 5%; }
.mv2-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv2-card {
  background: var(--white); border-radius: 24px; padding: 2.5rem;
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.mv2-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.mv2-icon-wrap { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.mv2-mission .mv2-icon-wrap { background: rgba(29,78,216,0.08); color: var(--primary); }
.mv2-vision  .mv2-icon-wrap { background: rgba(5,150,105,0.08); color: var(--secondary); }
.mv2-badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.mv2-mission .mv2-badge { color: var(--primary); }
.mv2-vision  .mv2-badge { color: var(--secondary); }
.mv2-quote { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); line-height: 1.55; border: none; margin: 0; padding: 0; quotes: none; letter-spacing: -0.3px; }
.mv2-sub { font-size: 0.88rem; color: var(--gray-500); line-height: 1.8; }
.mv2-values-section { padding: 5rem 5%; background: var(--white); }
.mv2-value-list { display: flex; flex-direction: column; gap: 0; }
.mv2-val { display: flex; align-items: flex-start; gap: 2rem; padding: 2.25rem 0; border-bottom: 1px solid var(--gray-200); }
.mv2-val:last-child { border-bottom: none; }
.mv2-val-icon { width: 56px; height: 56px; border-radius: 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 0.15rem; }
.mv2-vi-blue  { background: rgba(29,78,216,0.08);  color: var(--primary); }
.mv2-vi-green { background: rgba(5,150,105,0.08);  color: var(--secondary); }
.mv2-vi-amber { background: rgba(245,158,11,0.08); color: var(--accent); }
.mv2-val-body { flex: 1; }
.mv2-val-num { font-size: 0.72rem; font-weight: 800; color: var(--gray-500); letter-spacing: 0.1em; margin-bottom: 0.35rem; }
.mv2-val-title { font-size: 1.2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 0.5rem; }
.mv2-val-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.85; max-width: 600px; }
.mv-image { border-radius: 16px; overflow: hidden; margin-top: 2.5rem; }
.mv-image img { width: 100%; display: block; max-height: 400px; object-fit: cover; }

/* 사업소개 */
.biz-photo { width: 100%; border-radius: 16px; overflow: hidden; margin-bottom: 2rem; }
.biz-photo img { width: 100%; display: block; max-height: 420px; object-fit: cover; }
.biz-goal-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.25rem 0; }
.biz-goal-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; background: var(--gray-100); border-radius: 12px; font-size: 0.9rem; line-height: 1.65; }
.biz-goal-item::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
.biz-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.biz-tag { background: rgba(29,78,216,0.08); color: var(--primary); padding: 0.35rem 0.9rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600; }

/* 오시는 길 */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.location-info { background: var(--white); border-radius: 20px; padding: 2.5rem; border: 1px solid var(--gray-200); }
.location-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--gray-900); }
.location-row { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1.1rem; font-size: 0.92rem; color: var(--gray-700); }
.location-row .icon { width: 20px; flex-shrink: 0; }
.location-row strong { display: block; font-weight: 600; color: var(--gray-900); margin-bottom: 0.2rem; }
.map-box { background: linear-gradient(135deg, #dbeafe, #ede9fe); border-radius: 20px; min-height: 300px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; }
.map-box a { background: var(--primary); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 100px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: transform 0.2s; }
.map-box a:hover { transform: translateY(-2px); }

/* 후원 페이지 */
.donate-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.donate-info-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 2rem; }
.donate-info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--gray-900); display: flex; align-items: center; gap: 0.5rem; }
.donate-method { background: var(--gray-100); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; }
.donate-method h4 { font-weight: 700; font-size: 0.9rem; color: var(--primary); margin-bottom: 0.5rem; }
.donate-method p { font-size: 0.85rem; color: var(--gray-700); line-height: 1.7; }
.acct-highlight { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); border-radius: 12px; padding: 1.25rem; margin: 1rem 0; }
.acct-highlight .bank { font-size: 0.8rem; opacity: 0.7; margin-bottom: 0.25rem; }
.acct-highlight .number { font-size: 1.1rem; font-weight: 800; letter-spacing: 0.5px; }
.acct-highlight .owner { font-size: 0.8rem; opacity: 0.7; margin-top: 0.25rem; }
.pct-bar { margin: 0.75rem 0; }
.pct-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; font-size: 0.85rem; }
.pct-label { width: 130px; flex-shrink: 0; color: var(--gray-700); }
.pct-track { flex: 1; background: var(--gray-200); border-radius: 100px; height: 8px; overflow: hidden; }
.pct-fill { height: 100%; border-radius: 100px; background: var(--primary); }
.pct-num { width: 32px; text-align: right; font-weight: 700; color: var(--primary); font-size: 0.82rem; }
.benefit-list { display: flex; flex-direction: column; gap: 0.5rem; }
.benefit-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--gray-700); }
.benefit-item::before { content: '✓'; color: var(--secondary); font-weight: 700; }

/* 소식 게시판 */
.board-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start; }
.board-tabs { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 1.25rem; }
.btab { padding: 0.65rem 1.35rem; font-size: 0.9rem; font-weight: 600; color: var(--gray-500); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; background: none; border-top: none; border-left: none; border-right: none; transition: all 0.2s; font-family:'Noto Sans KR',sans-serif; }
.btab.active { color: var(--primary); border-bottom-color: var(--primary); }
.board-list { background: var(--white); border-radius: 16px; border: 1px solid var(--gray-200); overflow: hidden; }
.board-list-hdr { display: grid; grid-template-columns: 55px 1fr 90px 75px; padding: 0.7rem 1.2rem; background: var(--gray-100); font-size: 0.78rem; font-weight: 700; color: var(--gray-500); }
.board-row { display: grid; grid-template-columns: 55px 1fr 90px 75px; padding: 0.85rem 1.2rem; border-top: 1px solid var(--gray-200); align-items: center; cursor: pointer; transition: background 0.15s; }
.board-row:hover { background: var(--gray-100); }
.bnum { font-size: 0.8rem; color: var(--gray-500); text-align: center; }
.btitle { font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 0.45rem; }
.badge { font-size: 0.68rem; font-weight: 700; padding: 0.13rem 0.45rem; border-radius: 4px; }
.badge-n { background: #dbeafe; color: var(--primary); }
.badge-h { background: #fce7f3; color: #be185d; }
.bauthor,.bdate { font-size: 0.8rem; color: var(--gray-500); }
.bpager { display:flex; justify-content:center; gap:0.35rem; padding:0.9rem; }
.pbn { width:30px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:7px; font-size:0.82rem; font-weight:500; cursor:pointer; border:1px solid var(--gray-200); background:var(--white); color:var(--gray-700); transition:all 0.15s; font-family:'Noto Sans KR',sans-serif; }
.pbn.active { background:var(--primary); border-color:var(--primary); color:var(--white); }
.pbn:hover:not(.active) { border-color:var(--primary); color:var(--primary); }
.sidebar-card { background: var(--white); border-radius: 16px; border: 1px solid var(--gray-200); overflow: hidden; margin-bottom: 1.25rem; }
.sc-hdr { padding: 0.8rem 1.2rem; font-size: 0.85rem; font-weight: 700; color: var(--gray-900); border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.sc-hdr a { font-size: 0.75rem; color: var(--primary); text-decoration: none; font-weight: 600; }
.sc-item { padding: 0.7rem 1.2rem; border-top: 1px solid var(--gray-200); font-size: 0.83rem; }
.sc-item:first-child { border-top: none; }
.sc-item-title { color: var(--gray-900); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.sc-item-date { color: var(--gray-500); font-size: 0.75rem; margin-top: 0.1rem; }
.kakao-box { padding: 1.25rem; text-align: center; }
.kakao-icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.kakao-box p { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 0.9rem; line-height: 1.6; }
.kakao-btn { display: block; background: #FEE500; color: #3A1D1D; font-weight: 700; font-size: 0.88rem; padding: 0.7rem; border-radius: 12px; text-decoration: none; transition: transform 0.2s; }
.kakao-btn:hover { transform: translateY(-2px); }

/* ── HERO CAROUSEL ── */
#hb-hero-carousel {
  position: relative; overflow: hidden;
  height: calc(100vh - 68px); min-height: 560px;
}
.hc-track { display: flex; height: 100%; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.hc-slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; background-color: #0c1428; position: relative; display: flex; align-items: center; }
.hc-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.58) 50%, rgba(10,15,30,0.18) 100%); }
.hc-content { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 5%; width: 100%; }
.hc-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,0.28); color: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; z-index: 10; transition: background 0.2s, border-color 0.2s; line-height: 1; }
.hc-arrow:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.55); }
.hc-prev { left: 1.5rem; }
.hc-next { right: 1.5rem; }
.hc-dots { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 10; }
.hc-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.35s; padding: 0; }
.hc-dot.active { background: #fff; width: 28px; border-radius: 100px; }

/* ── FADE IN ── */
.fi { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fi.v { opacity: 1; transform: translateY(0); }
.fi-d1{transition-delay:0.1s;} .fi-d2{transition-delay:0.2s;} .fi-d3{transition-delay:0.3s;}

/* ── FOOTER ── */
.hb-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 4rem 5% 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { margin-bottom: 0.75rem; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.84rem; line-height: 1.8; margin-bottom: 1rem; }
.footer-contact { font-size: 0.8rem; line-height: 2; }
.footer-col h4 { font-size: 0.84rem; font-weight: 700; color: var(--white); margin-bottom: 0.875rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1100px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }
.social-links { display: flex; gap: 0.6rem; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.88rem; transition: all 0.2s; }
.social-btn:hover { background: var(--primary); border-color: var(--primary); }

/* ── FLOAT CTA ── */
.hb-float-cta { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 50; background: var(--accent); color: var(--dark); padding: 0.7rem 1.4rem; border-radius: 100px; font-weight: 700; font-size: 0.85rem; text-decoration: none; box-shadow: 0 6px 20px rgba(245,158,11,0.4); display: flex; align-items: center; gap: 0.4rem; transition: transform 0.2s; cursor: pointer; border: none; font-family:'Noto Sans KR',sans-serif; }
.hb-float-cta:hover { transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .footer-inner{grid-template-columns:1fr 1fr;}
  .board-layout{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .hero-title{white-space:normal;letter-spacing:-1px;}
  .hero-sub{font-size:0.93rem;max-width:100%;}
  .hero-btns{flex-direction:column;align-items:stretch;gap:0.75rem;}
  .btn-p,.btn-o{text-align:center;}
  .sec{padding:3rem 4%;}
  .content-block{padding:2.5rem 4%;}
  .page-banner{padding:3.5rem 4% 2rem;}
  .donate-wrap{padding:3rem 4%;}
  .ig-section{padding:3rem 4%;}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .stat-item{padding:1.25rem 0.5rem;}
  #hb-stats{padding:2rem 4%;}
  .prog-grid,.story-grid,.mv2-cards{grid-template-columns:1fr;}
  .prog-card,.story-card{padding:1.5rem;}
  .donate-inner,.donate-page-grid,.location-grid{grid-template-columns:1fr;gap:1.75rem;}
  .donate-form{padding:1.5rem;}
  .footer-inner{grid-template-columns:1fr;gap:1.5rem;}
  .hb-footer{padding:3rem 4% 1.5rem;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .ig-header{flex-direction:column;align-items:flex-start;gap:0.75rem;}
  .ig-posts-grid{grid-template-columns:repeat(2,1fr);gap:0.5rem;}
  .board-list-hdr{display:none;}
  .board-row{grid-template-columns:1fr auto;gap:0.25rem;padding:0.85rem 1rem;}
  .bnum,.bauthor{display:none;}
  .bdate{font-size:0.75rem;white-space:nowrap;}
  .map-box{min-height:200px;}
  #hb-hero-carousel{min-height:440px;}
  .hc-content{text-align:center;}
  .hc-content .hero-btns{justify-content:center;}
  .hc-arrow{width:38px;height:38px;font-size:1rem;}
  .hc-prev{left:0.6rem;} .hc-next{right:0.6rem;}
  .mv2-val{gap:1.25rem;padding:1.75rem 0;}
  .mv2-val-icon{width:48px;height:48px;border-radius:14px;}
  .mv2-val-title{font-size:1.05rem;}
}
@media(max-width:480px){
  .amount-grid{grid-template-columns:repeat(2,1fr);}
  .hero-title{font-size:clamp(30px,7.5vw,40px) !important;}
  .sec{padding:2.5rem 4%;}
  .content-block{padding:2rem 4%;}
  .page-banner{padding:3rem 4% 1.75rem;}
  .stat-num{font-size:clamp(24px,8vw,32px) !important;}
  .ig-posts-grid{gap:0.4rem;}
  .acct-highlight .number{font-size:0.95rem;letter-spacing:0;}
  .donate-page-grid,.location-grid{gap:1.25rem;}
  .prog-card,.story-card{padding:1.25rem;}
}

/* ── 아임웹 CSS 충돌 방지: font-size !important 오버라이드 ── */
.hero-title { font-size: clamp(38px,6vw,80px) !important; }
.hero-sub   { font-size: clamp(16px,1.8vw,18px) !important; }
.hero-badge { font-size: 13px !important; }
.btn-p      { font-size: 15px !important; }
.btn-o      { font-size: 15px !important; }
.sec-title  { font-size: clamp(26px,3vw,38px) !important; }
.sec-tag    { font-size: 13px !important; }
.sec-desc   { font-size: 15px !important; }
.prog-card h3  { font-size: 17px !important; }
.prog-card p   { font-size: 14px !important; }
.ptag          { font-size: 12px !important; }
.stat-num      { font-size: clamp(29px,3.5vw,40px) !important; }
.stat-unit     { font-size: 16px !important; }
.stat-lbl      { font-size: 13px !important; }
.story-text    { font-size: 14px !important; }
.s-name        { font-size: 14px !important; }
.s-role        { font-size: 12px !important; }
.ig-title      { font-size: 22px !important; }
.ig-handle     { font-size: 14px !important; }
.ig-follow-btn { font-size: 14px !important; }
.donate-form h3 { font-size: 17px !important; }
.amt-btn        { font-size: 14px !important; }
.acct-lbl       { font-size: 12px !important; }
.acct-num       { font-size: 15px !important; }
.acct-nm        { font-size: 12px !important; }
.donate-cta     { font-size: 15px !important; }
.page-banner h1 { font-size: clamp(29px,3vw,40px) !important; }
.page-banner p  { font-size: 15px !important; }

/* ── 푸터 ── */
.hb-footer-widget { background: #0F172A; color: rgba(255,255,255,0.65); padding: 3rem 5% 2rem; font-family: 'Noto Sans KR', sans-serif; }
.hb-footer-inner { max-width: 1100px; margin: 0 auto; }
.hb-footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hb-footer-info { flex: 1; min-width: 260px; }
.hb-footer-logo { margin-bottom: 0.75rem; }
.hb-footer-logo img { height: 30px; filter: brightness(0) invert(1); }
.hb-footer-desc { font-size: 13px !important; line-height: 2; color: rgba(255,255,255,0.55); }
.hb-footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: flex-start; padding-top: 0.25rem; }
.hb-footer-links a { font-size: 13px !important; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.hb-footer-links a:hover { color: #F59E0B; }
.hb-footer-bottom { max-width: 1100px; margin: 1.25rem auto 0; font-size: 12px !important; color: rgba(255,255,255,0.35); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.hb-footer-social { display: flex; gap: 0.5rem; }
.hb-footer-social a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 14px !important; transition: background 0.2s; }
.hb-footer-social a:hover { background: #1D4ED8; }
@media(max-width:768px){
  .hb-footer-top { flex-direction: column; }
  .hb-footer-widget { padding: 2.5rem 4% 1.5rem; }
}
