 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@400;500&display=swap');

  :root {
    --ink: #1a1410;
    --ink-muted: #5a5248;
    --ink-faint: #9a938c;
    --cream: #faf7f2;
    --warm-white: #fff9f3;
    --gold: #b8892a;
    --gold-light: #e8d5a0;
    --gold-faint: #f5edd8;
    --rust: #8b3a2a;
    --rust-faint: #fdf0ec;
    --teal: #1d5c56;
    --teal-faint: #eaf4f3;
    --border: #e2d9cc;
    --max: 780px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 18px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
  }

  /* ── HEADER HERO ── */
  .hero {
    background: var(--ink);
    color: var(--cream);
    padding: 80px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 0%, #3a2a18 0%, transparent 70%),
                radial-gradient(ellipse at 20% 100%, #1d5c5620 0%, transparent 60%);
  }
  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    position: relative;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.18;
    color: #fff;
    max-width: 820px;
    margin: 0 auto 24px;
    position: relative;
  }
  .hero h1 em { color: var(--gold-light); font-style: italic; }
  .hero-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #a89e94;
    position: relative;
  }
  .hero-meta span { margin: 0 8px; }

  /* ── LAYOUT ── */
  .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

  /* ── TOC ── */
  
		.buttons {
    margin: 20px 0px;
    text-align: center;
}
		
		.phasebutton {
    padding: 8px 12px;
    border: solid 1px #ccc;
    text-align: center;
    background-color: #0a53a0;
    margin-right: 20px;
    color: #fff;
    cursor: pointer;
}
		
		.toc {
    background: var(--gold-faint);
    border: 1px solid var(--gold-light);
    border-radius: 12px;
    padding: 28px 32px;
    margin: 48px 0 56px;
  }
  .toc-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .toc ol { padding-left: 20px; }
  .toc li { margin-bottom: 6px; }
  .toc a {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px dashed var(--border);
  }
  .toc a:hover { color: var(--gold); border-color: var(--gold); }

  /* ── INTRO ── */
  .intro {
    margin: 20px 0 48px;
    font-size: 20px;
    line-height: 1.75;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-muted);
    border-left: 3px solid var(--gold);
    padding-left: 28px;
  }

  /* ── SECTIONS ── */
  .section { margin-bottom: 60px; }
  .section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: none;
				text-align:center;
  }
  .section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--teal);
    margin: 32px 0 12px;
  }
  .section p { margin-bottom: 20px; color: var(--ink); }

  /* ── CALLOUT BOXES ── */
  .callout {
    border-radius: 10px;
    padding: 22px 26px;
    margin: 28px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .callout-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .callout-body { font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.65; }
  .callout-body strong { display: block; margin-bottom: 4px; font-size: 14px; letter-spacing: .03em; }
  .callout.tip { background: var(--teal-faint); border: 1px solid #b3d6d3; }
  .callout.tip strong { color: var(--teal); }
  .callout.warning { background: #fff8ec; border: 1px solid #f0d898; }
  .callout.warning strong { color: #7a5c00; }
  .callout.highlight { background: var(--gold-faint); border: 1px solid var(--gold-light); }
  .callout.highlight strong { color: var(--gold); }
  .callout.important { background: var(--rust-faint); border: 1px solid #e8bdb4; }
  .callout.important strong { color: var(--rust); }

  /* ── CHECKLIST ── */
  .checklist { list-style: none; padding: 0; margin: 20px 0; }
  .checklist li {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    padding: 8px 0 8px 32px;
    border-bottom: 1px solid var(--border);
    position: relative;
    color: var(--ink);
  }
  .checklist li:last-child { border-bottom: none; }
  .checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
  }

  /* ── DATA TABLE ── */
 
	.img-block img{ width:100%}
	 .table-wrap { overflow-x: hidden; margin: 28px 0; border-radius: 10px; border: 1px solid var(--border); width: 100%; }
  table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
}
  thead { background: var(--ink); color: #fff; }
  th { padding: 12px 14px; text-align: left; font-weight: 500; letter-spacing: .04em; font-size: 13px; }
  td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--ink-muted); }
  tr:last-child td { border-bottom: none; }
  tr:nth-child(even) td { background: var(--warm-white); }

  /* ── SPOTLIGHT CARD ── */
  .spotlight {
    background: var(--ink);
    color: var(--cream);
    border-radius: 16px;
    padding: 40px 44px;
    margin: 44px 0;
    position: relative;
    overflow: hidden;
  }
  .spotlight::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, #b8892a30, transparent 70%);
  }
  .spotlight-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  .spotlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #fff;
    margin-bottom: 16px;
    font-style: italic;
  }
  .spotlight p { font-size: 15px; line-height: 1.7; color: #c8bfb5; font-family: 'DM Sans', sans-serif; }
  .spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
  .spotlight-stat { background: #ffffff10; border-radius: 8px; padding: 14px 18px; }
  .spotlight-stat-num { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold-light); }
  .spotlight-stat-label { font-family: 'DM Sans', sans-serif; font-size: 12px; color: #8a837c; margin-top: 2px; }

  /* ── IMAGE PLACEHOLDER ── */
.img-block {
    background: var(--border);
    border-radius: 10px;
    height: auto;
    margin: 28px auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
    padding: 20px;
}
  .img-block-icon { font-size: 32px; }
  .img-block-label { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--ink-faint); }
  .img-caption { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--ink-faint); text-align: center; margin-bottom: 20px; font-style: italic; }

  /* ── STEPS ── */
  .steps { counter-reset: step; margin: 24px 0; }
  .step {
    counter-increment: step;
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
  }
  .step-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
  }
  .step-body h4 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500; margin-bottom: 4px; }
  .step-body p { font-size: 15px; color: var(--ink-muted); font-family: 'DM Sans', sans-serif; margin: 0; line-height: 1.6; }

  /* ── FAQ ── */
  .faq { margin: 28px 0; }
  .faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
  .faq-q { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
  .faq-a { font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--ink-muted); line-height: 1.7; }

  /* ── CONCLUSION ── */
  .conclusion {
    background: var(--teal);
    color: #fff;
    border-radius: 16px;
    padding: 48px 52px;
    margin: 60px 0 40px;
    text-align: center;
  }
  .conclusion h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 16px;
    color: #fff;
    border: none;
  }
  .conclusion p { font-family: 'DM Sans', sans-serif; font-size: 16px; color: #fff; line-height: 1.7; margin-bottom: 12px; }
  .cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .03em;
    transition: opacity .2s;
  }
  .cta-btn:hover { opacity: .88; }

  /* ── FOOTER ── */
  .post-footer {
    border-top: 1px solid var(--border);
    padding: 32px 0 60px;
    text-align: center;
  }
  .post-footer p { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--ink-faint); }

  @media (max-width: 600px) {
    .spotlight { padding: 28px 24px; }
    .spotlight-grid { grid-template-columns: 1fr; }
    .conclusion { padding: 36px 24px; }
    .toc { padding: 20px; }
				th {
    padding: 12px 5px;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0em;
    font-size: 12px;
}
  }