/* JDesigns Strategist — Shared Blog Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #07100a;
  --surface:      #0d1a10;
  --border:       #1a7a4e;
  --border-muted: #102b18;
  --accent:       #2ec27e;
  --accent-dim:   #0d3320;
  --text:         #ffffff;
  --sage:         #c4dccb;
  --muted:        #8aab96;
  --radius:       14px;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 24px 88px;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wordmark span { color: var(--muted); }
.wordmark a:hover { color: var(--text); }

.profile-header { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.profile-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); flex-shrink: 0; }
.profile-name { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.2; }
.profile-handle { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.meta-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-muted);
  padding: 3px 9px;
  border-radius: 999px;
}
.meta-date { font-size: 12px; color: var(--muted); }

h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.article-intro {
  font-size: 15.5px;
  color: var(--sage);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-muted);
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
  margin: 40px 0 12px;
  line-height: 1.3;
}
.article-body h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 32px 0 10px;
}
.article-body p {
  font-size: 15px;
  color: var(--sage);
  line-height: 1.75;
  margin-bottom: 18px;
}
.article-body strong { color: var(--text); font-weight: 600; }

.callout {
  background: var(--surface);
  border: 1px solid var(--border-muted);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--sage);
  line-height: 1.65;
}
.callout strong { color: var(--text); }

.callout-warning {
  background: rgba(180, 50, 30, 0.08);
  border: 1px solid rgba(220, 80, 60, 0.25);
  border-left: 3px solid #e05a3a;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--sage);
  line-height: 1.65;
}
.callout-warning strong { color: #f0a090; }

.step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-body { flex: 1; }
.step-body strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.decision-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  margin: 24px 0;
}
.decision-box-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.decision-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-muted);
}
.decision-row:last-child { border-bottom: none; padding-bottom: 0; }
.decision-condition {
  font-size: 13.5px;
  color: var(--sage);
  flex: 1;
  line-height: 1.5;
}
.decision-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
  text-align: right;
  max-width: 180px;
  line-height: 1.4;
}
.decision-action.caution { color: #f0c070; }
.decision-action.stop { color: #f0a090; }

.trigger-list {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trigger-list li {
  font-size: 14.5px;
  color: var(--sage);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.trigger-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.cta-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  margin: 48px 0;
}
.cta-block h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.cta-block p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.15s, transform 0.12s;
  cursor: pointer;
  border: none;
}
.cta-btn:hover { background: var(--accent); transform: translateY(-1px); }
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
  cursor: pointer;
}
.cta-btn-outline:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--text); transform: translateY(-1px); }
.disclaimer {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.55;
}

.related-section { margin-top: 56px; }
.related-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.related-list { display: flex; flex-direction: column; gap: 8px; }
.related-card {
  background: var(--surface);
  border: 1px solid var(--border-muted);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.15s;
}
.related-card:hover { border-color: var(--border); }
.related-title { font-size: 14px; color: var(--sage); line-height: 1.4; }
.related-arrow { color: var(--muted); flex-shrink: 0; }
.related-card:hover .related-arrow { color: var(--accent); }

.footer {
  border-top: 1px solid var(--border-muted);
  padding-top: 28px;
  margin-top: 52px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer a { color: var(--accent); }
.footer a:hover { color: var(--text); }

/* Blog index */
.blog-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border-muted);
  padding-bottom: 8px;
  margin-top: 48px;
  margin-bottom: -4px;
}
.blog-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s;
}
.blog-card:hover { border-color: var(--border); }
.blog-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.blog-card-title { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--text); line-height: 1.3; }
.blog-card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
.blog-card-arrow { color: var(--accent); font-size: 13px; margin-top: 4px; }

@media (max-width: 520px) {
  h1 { font-size: 24px; }
  .page { padding: 32px 18px 64px; }
  .cta-block { padding: 24px 18px; }
}
