/* 반스힐리조트 블로그 공용 스타일 — 메인과 동일한 디자인 시스템 */
@import url('https://hangeul.pstatic.net/hangeul_static/css/maru-buri.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;500;600;700&family=Nanum+Pen+Script&display=swap');
:root{
  --forest:#2e3a33;
  --forest2:#3c4a41;
  --moss:#6b7a6d;
  --moss-soft:#ecebe2;
  --cream:#f3f0e8;
  --sand:#e4ded0;
  --gold:#a8845c;
  --gold2:#8d6f4c;
  --ink:#26241f;
  --gray:#6b675e;
  --gray2:#9b968a;
  --paper:#faf8f3;
  --card:#fffdf9;
  --line:#e7e2d6;
  --radius:10px;
  --shadow:0 2px 16px rgba(38,36,31,.06);
  --shadow2:0 10px 34px rgba(38,36,31,.12);
  --maxw:1120px;
  --serif:"MaruBuri","Noto Serif KR","Nanum Myeongjo",serif;
  --hand:"Nanum Pen Script",cursive;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:"Pretendard Variable",Pretendard,system-ui,-apple-system,sans-serif;
  background:var(--paper);color:var(--ink);line-height:1.8;word-break:keep-all;
}
img{max-width:100%;display:block;border-radius:14px}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}

/* 헤더 */
header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(250,248,242,.92);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  max-width:var(--maxw);margin:0 auto;padding:0 24px;
  height:66px;display:flex;align-items:center;justify-content:space-between;
}
.logo{font-weight:800;font-size:19px;color:var(--forest);display:flex;align-items:center;gap:8px}
.logo .mark{
  width:32px;height:32px;border-radius:9px;background:var(--forest);
  color:var(--cream);display:grid;place-items:center;font-size:16px;
}
.nav-links{display:flex;gap:26px;font-size:14.5px;font-weight:600;color:var(--gray)}
.nav-links a:hover{color:var(--forest)}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 26px;border-radius:999px;font-weight:700;font-size:15px;
  background:var(--gold);color:#fff;box-shadow:var(--shadow);transition:.25s;
}
.btn:hover{background:var(--gold2);transform:translateY(-2px);box-shadow:var(--shadow2)}
.nav .btn{padding:10px 20px;font-size:14px}

/* 블로그 목록 */
.blog-hero{padding:150px 0 60px;text-align:center}
.eyebrow{
  display:inline-block;font-size:13px;letter-spacing:.22em;font-weight:700;
  color:var(--gold);text-transform:uppercase;margin-bottom:14px;
}
.blog-hero h1{font-size:clamp(30px,4.5vw,44px);font-weight:800;line-height:1.35;margin-bottom:14px}
.blog-hero p{color:var(--gray);font-size:16.5px;max-width:560px;margin:0 auto}
.post-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  padding:40px 0 100px;
}
.post-card{
  background:var(--card);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);transition:.25s;display:flex;flex-direction:column;
}
.post-card:hover{transform:translateY(-6px);box-shadow:var(--shadow2)}
.post-card .thumb{aspect-ratio:16/10;overflow:hidden}
.post-card .thumb img{width:100%;height:100%;object-fit:cover;border-radius:0}
.ph{
  width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  color:rgba(247,242,232,.9);font-weight:600;font-size:14px;text-align:center;padding:16px;
}
.ph .ico{font-size:38px}
.g-forest{background:linear-gradient(150deg,#1c4335,#3a6b52 70%,#547d63)}
.g-fire{background:linear-gradient(160deg,#33231a,#6b3f22 65%,#a05c2b)}
.g-stone{background:linear-gradient(150deg,#4d443a,#77694f 70%,#9a8763)}
.g-pool{background:linear-gradient(150deg,#16404f,#2b6b76 70%,#3f8a8c)}
.post-card .body{padding:22px 24px 26px;flex:1;display:flex;flex-direction:column}
.post-card .cat{font-size:12.5px;font-weight:700;color:var(--gold);letter-spacing:.08em;margin-bottom:8px}
.post-card h2{font-size:18.5px;font-weight:800;line-height:1.45;margin-bottom:10px}
.post-card p{font-size:14px;color:var(--gray);flex:1}
.post-card .date{font-size:12.5px;color:var(--gray2);margin-top:14px}

/* 본문(아티클) */
article{max-width:760px;margin:0 auto;padding:150px 24px 80px}
article .cat{font-size:13px;font-weight:700;color:var(--gold);letter-spacing:.1em;margin-bottom:12px}
article h1{font-size:clamp(28px,4vw,38px);font-weight:800;line-height:1.4;margin-bottom:14px}
article .meta{font-size:13.5px;color:var(--gray2);margin-bottom:34px;padding-bottom:24px;border-bottom:1px solid var(--line)}
article h2{font-size:23px;font-weight:800;line-height:1.45;margin:44px 0 14px}
article h3{font-size:18px;font-weight:700;margin:30px 0 10px}
article p{font-size:16.5px;color:#333a35;margin-bottom:18px}
article ul,article ol{margin:0 0 18px 22px;font-size:16.5px;color:#333a35}
article li{margin-bottom:8px}
article strong{color:var(--forest)}
article .img-slot{
  aspect-ratio:16/9;border-radius:16px;overflow:hidden;margin:26px 0;box-shadow:var(--shadow);
}
article .img-slot img{width:100%;height:100%;object-fit:cover;border-radius:0}
article blockquote{
  background:var(--moss-soft);border-left:4px solid var(--moss);
  padding:18px 22px;border-radius:0 14px 14px 0;margin:0 0 18px;
  font-size:15.5px;color:var(--forest2);
}
article table{width:100%;border-collapse:collapse;margin:0 0 18px;font-size:15px}
article th,article td{border:1px solid var(--line);padding:10px 14px;text-align:left}
article th{background:var(--cream);font-weight:700}
.faq-box{background:var(--card);border-radius:16px;box-shadow:var(--shadow);padding:6px 24px;margin:14px 0}
.faq-box h3{font-size:16.5px;margin:18px 0 6px}
.faq-box p{font-size:15px;margin-bottom:18px}
.cta-band{
  background:linear-gradient(160deg,var(--forest),var(--forest2));color:var(--cream);
  border-radius:var(--radius);padding:36px 32px;text-align:center;margin:50px 0 0;
}
.cta-band h2{margin:0 0 10px;font-size:22px;color:var(--cream)}
.cta-band p{color:rgba(247,242,232,.8);font-size:15px;margin-bottom:20px}

/* 푸터 */
footer{background:#0d201a;color:rgba(247,242,232,.65);padding:48px 0 36px;font-size:13.5px;margin-top:60px}
footer .wrap{display:grid;gap:8px}
footer .logo{color:var(--cream);margin-bottom:10px}
footer a:hover{color:var(--cream)}

@media (max-width:900px){
  .nav-links{display:none}
  .post-grid{grid-template-columns:1fr;padding-bottom:70px}
}

/* ═══ Kinfolk 에디토리얼 오버라이드 ═══ */
body{line-height:1.95}
h1,h2,h3,.blog-hero h1,article h1,article h2,article h3{font-family:var(--serif);font-weight:600}
article h1{font-weight:500;line-height:1.5}
.eyebrow{font-size:11.5px;letter-spacing:.34em;font-weight:600;color:var(--gray2)}
.logo{font-family:var(--serif);font-weight:600;letter-spacing:.06em}
.logo .mark{border-radius:2px}
.btn{border-radius:4px;font-weight:600;letter-spacing:.05em;box-shadow:none}
.post-card,.faq-box{box-shadow:var(--shadow);border:1px solid var(--line)}
.post-card h2{font-weight:600}
.post-card .cat,article .cat{letter-spacing:.2em;font-size:11.5px;font-weight:600}
article blockquote{border-radius:0 4px 4px 0}
.cta-band{border-radius:6px}
.cta-band h2{font-family:var(--serif)}
.hand{font-family:var(--hand);font-weight:400;line-height:1;color:var(--gold);font-size:1.3em}
