/* ── Knotties Article Styles ── */
/* Include after style.css */

.article-hero {
  background: var(--green-deep);
  padding: 64px 40px 56px;
}

.article-hero .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-tag-pill {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-accent);
  padding: 4px 12px;
  border-radius: 20px;
}

.article-hero .read-time {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.article-hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 16px;
}

.article-hero .article-intro {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Article body ── */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

.article-body h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 52px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 10px;
}

.article-body p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-body li { margin-bottom: 8px; }

.article-body strong { color: var(--text-primary); font-weight: 600; }

.article-body a { color: var(--green-deep); }

/* ── Callout boxes ── */
.callout {
  border-radius: 8px;
  padding: 20px 24px;
  margin: 32px 0;
}

.callout-tip {
  background: #eaf3de;
  border-left: 3px solid var(--green-accent);
}

.callout-tip .callout-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3B6D11;
  margin-bottom: 6px;
  display: block;
}

.callout-tip p {
  color: #3B6D11 !important;
  margin: 0 !important;
  font-size: 15px !important;
}

.callout-warning {
  background: #faeeda;
  border-left: 3px solid #EF9F27;
}

.callout-warning .callout-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #854F0B;
  margin-bottom: 6px;
  display: block;
}

.callout-warning p {
  color: #854F0B !important;
  margin: 0 !important;
  font-size: 15px !important;
}

/* ── Pull quote ── */
.pull-quote {
  border-left: 3px solid var(--green-accent);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
}

.pull-quote p {
  font-size: 21px !important;
  font-family: 'Georgia', serif !important;
  font-style: italic;
  color: var(--text-primary) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* ── Info table ── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
}

.info-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--green-deep);
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.info-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

.info-table tr:nth-child(even) td { background: var(--cream); }

/* ── Step boxes ── */
.steps { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--green-accent);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 !important;
}

/* ── Article nav ── */
.article-nav {
  border-top: 1px solid var(--border);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.article-nav a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 500;
}

.article-nav a:hover { color: var(--green-accent); }

@media (max-width: 640px) {
  .article-hero { padding: 48px 20px 40px; }
  .article-body { padding: 48px 20px 60px; }
  .article-nav { padding: 32px 20px; }
}
