/* ============================================================
   キャリア棚卸しAI — 共有デザインシステム（モノトーン×淡い深緑）
   index-sample / diagnosis-sample と同一トークン
============================================================ */
:root {
  --ink: #1a1c1e;
  --ink-soft: #2b2e30;
  --text: #26282a;
  --text-secondary: #74787c;
  --text-faint: #9b9e9f;
  --green: #3e5c50;
  --green-dark: #2f483e;
  --green-tint: #eef2ef;
  --green-line: #c9d4cd;
  --bg: #f6f5f1;
  --surface: #ffffff;
  --border: #e4e2da;
  --border-dark: #d6d4cc;
  --serif: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  --sans-en: 'Inter', sans-serif;
  --radius: 0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', -apple-system, 'Hiragino Sans', 'Meiryo', sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.9;
  -webkit-font-smoothing: antialiased; font-feature-settings: "palt";
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--green); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(246,245,241,0.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
  font-size: 16px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 10px; letter-spacing: 0.04em;
}
.logo-mark { width: 11px; height: 11px; background: var(--green); flex-shrink: 0; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s; letter-spacing: 0.06em; position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--green); transition: width 0.25s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: 10px 24px; font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.08em; transition: background 0.25s;
}
.nav-cta:hover { background: var(--green); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 6px 0; transition: 0.3s; }
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(246,245,241,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 36px; z-index: 99;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: 0.08em; }
.mobile-nav .nav-cta { background: var(--ink); color: #fff; padding: 14px 38px; }

/* ===== Page hero (sub pages) ===== */
.page-hero {
  margin-top: 72px; background: var(--ink); color: #fff;
  padding: 88px 28px 84px; text-align: center; position: relative; overflow: hidden;
}
.page-hero .overline {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans-en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; color: #9fb5aa; text-transform: uppercase; margin-bottom: 22px;
}
.page-hero .overline::before, .page-hero .overline::after { content: ''; width: 28px; height: 1px; background: var(--green); }
.page-hero h1 {
  font-family: var(--serif); font-size: 34px; font-weight: 600;
  letter-spacing: 0.06em; color: #f4f3ef; line-height: 1.5;
}
.page-hero p { font-size: 14px; color: rgba(244,243,239,0.7); margin-top: 16px; letter-spacing: 0.03em; }

/* ===== Section commons ===== */
.section { padding: 96px 28px; }
.section.alt { background: #efeee8; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-narrow { max-width: 760px; margin: 0 auto; }
.section-heading { margin-bottom: 52px; }
.section-heading.center { text-align: center; }
.section-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans-en); font-size: 11px; font-weight: 600;
  color: var(--green); text-transform: uppercase; letter-spacing: 0.28em; margin-bottom: 18px;
}
.section-heading.center .section-label { justify-content: center; }
.section-label::after { content: ''; width: 36px; height: 1px; background: var(--green-line); }
.section-heading h2 {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: var(--ink); letter-spacing: 0.05em; line-height: 1.6; margin-bottom: 12px;
}
.section-heading p { font-size: 14px; color: var(--text-secondary); letter-spacing: 0.03em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; transition: all 0.3s; border: none; cursor: pointer;
}
/* btn-primary は .btn なしの単独使用（記事内CTA）でも完結させる */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; background: var(--green); color: #fff !important;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em;
  border: none; cursor: pointer; transition: background 0.25s; line-height: 1.4;
}
.btn-primary:hover { background: #4a6e60; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--green); }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); background: transparent; padding: 14px 40px; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #f4f3ef; color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn .arrow { font-family: var(--sans-en); transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Blog listing ===== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
  display: flex; flex-direction: column; transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,28,30,0.07); border-color: var(--green-line); }
.post-thumb { height: 180px; overflow: hidden; border-bottom: 1px solid var(--border); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.7) contrast(1.02); transition: transform 0.6s, filter 0.5s; }
.post-card:hover .post-thumb img { transform: scale(1.04); filter: grayscale(0.1); }
.post-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.post-tag {
  display: inline-block; font-size: 11px; font-weight: 600; color: var(--green);
  border: 1px solid var(--green-line); padding: 3px 12px; margin-bottom: 14px;
  letter-spacing: 0.08em; width: fit-content;
}
.post-card h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.7; letter-spacing: 0.02em; }
.post-excerpt { font-size: 12.5px; color: var(--text-secondary); line-height: 1.9; flex-grow: 1; margin-bottom: 14px; }
.post-foot { display: flex; align-items: center; justify-content: space-between; }
.post-date { font-family: var(--sans-en); font-size: 11px; color: var(--text-faint); letter-spacing: 0.1em; }
.post-more { font-size: 12px; font-weight: 600; color: var(--green); }

/* ===== About page ===== */
.about-card {
  display: flex; gap: 36px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); padding: 40px;
}
.about-avatar { flex-shrink: 0; }
.avatar-circle { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; border: 1px solid var(--border-dark); }
.about-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 14px; letter-spacing: 0.04em; }
.about-card p { font-size: 14px; color: var(--text-secondary); line-height: 2.05; }

.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.policy-card { background: var(--surface); border: 1px solid var(--border); padding: 30px 28px 32px; transition: border-color 0.3s; }
.policy-card:hover { border-color: var(--green-line); }
.policy-tag { font-family: var(--sans-en); font-size: 10.5px; font-weight: 600; color: var(--green); letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.policy-card h3 { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: 0.04em; }
.policy-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.95; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; gap: 14px; cursor: pointer; user-select: none;
  padding: 22px 4px; font-size: 14.5px; font-weight: 600; color: var(--ink); letter-spacing: 0.03em;
}
.faq-q .mark { color: var(--green); font-family: var(--sans-en); font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .mark { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; font-size: 13.5px; color: var(--text-secondary); line-height: 2; padding: 0 4px 0 32px; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 4px 22px 32px; }

/* ===== note (guide) page ===== */
.guide-featured { background: var(--ink); color: #f4f3ef; padding: 48px 52px; max-width: 880px; margin: 0 auto; }
.guide-badge { display: inline-block; font-size: 11px; font-weight: 600; color: #9fb5aa; border: 1px solid rgba(159,181,170,0.4); padding: 4px 14px; margin-bottom: 20px; letter-spacing: 0.12em; }
.guide-featured h2 { font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.75; margin-bottom: 18px; letter-spacing: 0.03em; }
.guide-featured .desc { font-size: 13.5px; color: rgba(244,243,239,0.7); line-height: 2; margin-bottom: 24px; }
.guide-list { list-style: none; margin-bottom: 30px; }
.guide-list li { font-size: 13px; color: rgba(244,243,239,0.85); padding: 9px 0 9px 22px; position: relative; border-bottom: 1px solid rgba(244,243,239,0.08); }
.guide-list li::before { content: ''; position: absolute; left: 0; top: 17px; width: 8px; height: 8px; background: var(--green); }
.guide-disclaimer { font-size: 11.5px; color: rgba(244,243,239,0.45); margin-top: 16px; }
.guide-all-link { text-align: center; margin: 28px 0; }
.guide-all-link a { font-size: 13px; color: var(--green-dark); font-weight: 600; border-bottom: 1px solid var(--green-line); padding-bottom: 3px; }
.coming-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 880px; margin: 0 auto; }
.coming-card { background: var(--surface); border: 1px dashed var(--border-dark); padding: 28px; }
.coming-badge { font-family: var(--sans-en); font-size: 10.5px; font-weight: 600; color: var(--text-faint); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.coming-card h4 { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: 0.03em; }
.coming-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.95; }

/* ===== Article page ===== */
.article-container, .article-wrapper { max-width: 720px; margin: 0 auto; padding: 104px 24px 80px; }
.article-wrapper > article { max-width: none; }
.article-header { margin-bottom: 32px; }
.article-tag, .tag {
  display: inline-block; font-size: 11px; font-weight: 600; color: var(--green);
  border: 1px solid var(--green-line); padding: 4px 14px; margin-bottom: 18px; letter-spacing: 0.08em;
}
.article-title {
  font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--ink);
  line-height: 1.6; letter-spacing: 0.03em; margin-bottom: 18px;
}
.article-meta, .date, .article-date { font-family: var(--sans-en); font-size: 12px; color: var(--text-faint); letter-spacing: 0.08em; }
.article-meta { display: flex; gap: 16px; align-items: center; }
.article-hero { width: 100%; margin: 36px 0; overflow: hidden; border: 1px solid var(--border); }
.article-hero img { width: 100%; height: auto; display: block; filter: grayscale(0.3) contrast(1.02); }
.article-intro { font-size: 16px; color: var(--ink-soft); line-height: 2.1; margin-bottom: 36px; font-weight: 500; }

/* 本文タイポ（article-body / article-content 両構造に対応） */
.article-body, .article-content { font-size: 15px; color: var(--text); line-height: 2.15; }
.article-body > p, .article-content > p { margin-bottom: 26px; }
/* バリアント記事の素の<h1>もタイトル扱い */
.article-wrapper h1, .article-content > h1, .article-body > h1 {
  font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--ink);
  line-height: 1.6; letter-spacing: 0.03em; margin: 0 0 18px;
}
.article-body h2, .article-content h2 {
  font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink);
  letter-spacing: 0.04em; line-height: 1.6; margin: 56px 0 22px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border); position: relative;
}
.article-body h2::after, .article-content h2::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 56px; height: 2px; background: var(--green); }
.article-body h3, .article-content h3 { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: 0.03em; margin: 40px 0 16px; padding-left: 14px; border-left: 3px solid var(--green); }
.article-body h4, .article-content h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 28px 0 12px; }
.article-body ul, .article-body ol, .article-content ul, .article-content ol { margin: 0 0 26px; padding-left: 24px; }
.article-body li, .article-content li { margin-bottom: 12px; line-height: 2; }
.article-body a, .article-content a { color: var(--green-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--green-line); }
.article-body a:hover, .article-content a:hover { text-decoration-color: var(--green); }
/* ボタン・カード系リンクは本文リンクの下線を打ち消す */
.article-body a.btn-primary, .article-body a.cta-button, .article-body a.cta-button-large,
.article-content a.btn-primary, .article-content a.cta-button, .article-content a.cta-button-large,
.article-body a.affiliate-link, .article-content a.affiliate-link,
.cta-section a, .cta-box a, .article-cta a, .affiliate-link { text-decoration: none; }
.affiliate-link-name, .affiliate-link-desc { text-decoration: none; }
/* 文中の強調＝はっきり太字＋わずかな下線マーカー */
.article-body strong, .article-content strong, .article-intro strong {
  font-weight: 700; color: var(--ink);
  background: linear-gradient(transparent 62%, var(--green-tint) 62%);
}
.article-body em, .article-content em { font-style: normal; font-weight: 700; color: var(--green-dark); }
.article-body blockquote, .article-content blockquote {
  margin: 28px 0; padding: 18px 24px; background: var(--surface);
  border-left: 2px solid var(--green); font-size: 14px; color: var(--ink-soft); line-height: 2;
}
.article-body img, .article-content img { margin: 28px 0; border: 1px solid var(--border); filter: grayscale(0.3); }

/* article inner boxes */
.data-box, .highlight-box, .cta-box, .reason-card, .skill-card, .step-card, .step-box {
  background: var(--surface); border: 1px solid var(--border); padding: 24px 26px; margin: 28px 0;
}
.data-box { border-left: 2px solid var(--green); }
.data-box h3, .data-box h4 { border: none; padding: 0; margin: 0 0 12px; }
/* data-highlight は文中インライン強調（深緑マーカー） */
.data-highlight {
  font-weight: 700; color: var(--green-dark);
  background: linear-gradient(transparent 60%, var(--green-tint) 60%); padding: 0 1px;
}
.data-cite, .source { display: block; font-size: 11.5px; color: var(--text-faint); margin-top: 12px; line-height: 1.7; }
.highlight-box { background: var(--green-tint); border-color: var(--green-line); }
.reason-card, .skill-card, .step-card, .step-box { margin: 16px 0; }
.reason-card h3, .skill-card h3, .step-card h3, .skill-card h4 { margin-top: 0; }
.hint { font-size: 12.5px; color: var(--text-secondary); line-height: 1.9; }

/* CTA box inside articles */
.cta-box, .article-cta {
  background: var(--ink); color: #f4f3ef; border: none; padding: 36px 32px; margin: 44px 0; text-align: center;
}
.cta-box h2, .cta-box h3, .cta-box h4, .article-cta h2, .article-cta h3 {
  font-family: var(--serif); color: #f4f3ef; border: none; padding: 0; margin: 0 0 12px; font-size: 19px; letter-spacing: 0.03em;
}
.cta-box h2::after, .cta-box h3::after { display: none; }
.cta-box p, .article-cta p { color: rgba(244,243,239,0.7); font-size: 13.5px; line-height: 1.95; margin-bottom: 22px; }
/* ダークCTA内の強調は本文用マーカーを打ち消して白文字に（暗背景での判読不能を防ぐ） */
.cta-box strong, .article-cta strong { color: #fff; background: none; }
.cta-button, .article-cta-button {
  display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff !important;
  padding: 14px 32px; font-weight: 600; font-size: 13.5px; letter-spacing: 0.06em; transition: background 0.25s;
  text-decoration: none;
}
.cta-button:hover, .article-cta-button:hover { background: #4a6e60; }

/* end-of-article CTA section（一部記事の独自構造） */
.cta-section { background: var(--ink); color: #f4f3ef; padding: 40px 32px; margin: 48px 0; text-align: center; }
.cta-section h2, .cta-section h3 { font-family: var(--serif); color: #f4f3ef; font-size: 19px; font-weight: 600; line-height: 1.7; letter-spacing: 0.03em; margin: 0 0 14px; padding: 0; border: none; }
.cta-section h2::after, .cta-section h3::after { display: none; }
.cta-section p { color: rgba(244,243,239,0.72); font-size: 13.5px; line-height: 1.95; margin: 0 0 22px; }
.cta-section strong { color: #fff; background: none; }
.cta-button-large {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff !important; padding: 16px 40px;
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.06em; transition: background 0.25s; line-height: 1.4;
}
.cta-button-large:hover { background: #4a6e60; }

/* 文中の注記ボックス */
.note-box { background: var(--surface); border: 1px solid var(--border); border-left: 2px solid var(--green); padding: 18px 22px; margin: 28px 0; }
.note-box p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.95; margin: 0; }
.note-box strong { color: var(--green-dark); background: none; }

/* 記事内の比較表 */
.comparison-table-wrap { margin: 30px 0; overflow-x: auto; border: 1px solid var(--border); background: var(--surface); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 680px; font-size: 13px; line-height: 1.8; }
.comparison-table th, .comparison-table td { padding: 15px 16px; border-bottom: 1px solid var(--border); vertical-align: top; text-align: left; }
.comparison-table th { background: var(--green-tint); color: var(--ink); font-weight: 700; white-space: nowrap; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table strong { color: var(--green-dark); background: none; }

/* 引用ブロック */
.quote-block {
  margin: 32px 0; padding: 22px 28px; background: var(--green-tint);
  border-left: 2px solid var(--green); font-family: var(--serif);
  font-size: 16px; color: var(--ink); line-height: 2; letter-spacing: 0.03em;
}

/* 数値ハイライト */
.highlight-stat {
  margin: 28px 0; padding: 22px 26px; background: var(--green-tint); border: 1px solid var(--green-line);
  text-align: center; font-size: 15px; font-weight: 700; color: var(--green-dark); line-height: 1.8; letter-spacing: 0.02em;
}

/* affiliate blocks (収益導線・重要) */
.affiliate-section { background: var(--green-tint); border: 1px solid var(--green-line); padding: 28px 28px 22px; margin: 44px 0; }
.affiliate-section > h3, .affiliate-section > h2 {
  font-family: var(--serif); font-size: 17px; color: var(--ink); margin: 0 0 6px; padding: 0; border: none; letter-spacing: 0.04em;
}
.affiliate-section > h3::after, .affiliate-section > h2::after { display: none; }
.affiliate-section > p { font-size: 12.5px; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.9; }
.affiliate-links { display: flex; flex-direction: column; gap: 12px; }
.affiliate-link {
  display: block; background: var(--surface); border: 1px solid var(--border-dark);
  padding: 18px 20px; transition: border-color 0.25s, transform 0.25s;
}
.affiliate-link:hover { border-color: var(--green); transform: translateX(2px); }
.affiliate-link-name { display: block; font-size: 14.5px; font-weight: 700; color: var(--green-dark); margin-bottom: 5px; }
.affiliate-link-desc { display: block; font-size: 12.5px; color: var(--text-secondary); line-height: 1.85; }

/* article footer nav */
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 56px 0 0; }
.article-nav-item { background: var(--surface); border: 1px solid var(--border); padding: 18px 20px; transition: border-color 0.25s; }
.article-nav-item:hover { border-color: var(--green); }
.article-nav-item span { display: block; font-family: var(--sans-en); font-size: 10.5px; color: var(--text-faint); letter-spacing: 0.1em; margin-bottom: 6px; }
.article-nav-item a, .article-nav-item p { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.6; }

/* ===== Footer ===== */
.site-footer { background: #141617; color: rgba(244,243,239,0.6); padding: 72px 28px 36px; }
.footer-inner, .footer-content { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 340px; }
.footer-brand h3 { font-size: 15px; font-weight: 700; color: #f4f3ef; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; letter-spacing: 0.05em; }
.footer-brand p { font-size: 12.5px; line-height: 2; }
.footer-links h4, .footer-section h3 { font-family: var(--sans-en); font-size: 11px; font-weight: 600; color: rgba(244,243,239,0.35); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.2em; }
.footer-links ul { list-style: none; }
.footer-links li, .footer-section a { margin-bottom: 12px; }
.footer-links a, .footer-section a { font-size: 13px; color: rgba(244,243,239,0.55); transition: color 0.2s; display: block; }
.footer-links a:hover, .footer-section a:hover { color: #fff; }
.footer-bottom { max-width: 1080px; margin: 52px auto 0; padding-top: 24px; border-top: 1px solid rgba(244,243,239,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-family: var(--sans-en); font-size: 11px; color: rgba(244,243,239,0.25); letter-spacing: 0.08em; }

/* ===== CTA banner ===== */
.cta-banner { background: linear-gradient(160deg, var(--green-dark) 0%, var(--ink) 90%); padding: 88px 28px; text-align: center; color: #fff; }
.cta-banner h2 { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 16px; color: #f4f3ef; }
.cta-banner p { font-size: 14px; color: rgba(244,243,239,0.65); margin-bottom: 36px; letter-spacing: 0.04em; }

/* ===== Animations ===== */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section { padding: 72px 24px; }
  .post-grid, .policy-grid, .coming-grid { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: 23px; }
  .page-hero h1 { font-size: 26px; }
  .about-card { flex-direction: column; text-align: center; padding: 32px 24px; gap: 24px; }
  .guide-featured { padding: 36px 28px; }
  .footer-inner, .footer-content { flex-direction: column; }
  .article-container { padding: 96px 20px 64px; }
  .article-title { font-size: 24px; }
  .article-body { font-size: 14.5px; }
  .article-body h2 { font-size: 20px; }
  .article-nav { grid-template-columns: 1fr; }
}
