/* 블로그(가이드) 전용 — 아티클 타이포 + 인덱스 카드 */

/* ── 아티클 ── */
article.post { max-width: 780px; }
.post-meta {
  color: var(--text-dim);
  font-size: 13px;
  font-family: var(--mono);
  margin: 8px 0 24px;
}
.lead {
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 0 0 30px;
  font-size: 15.5px;
  color: var(--text);
}
.lead b { color: var(--accent); }
.post h2 { margin-top: 40px; }
.post h3 { font-size: 16.5px; margin: 26px 0 8px; }
.post p, .post li { line-height: 1.8; }
.post .kb-note { margin: 18px 0; }

/* 도구 CTA 박스 */
.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
  border: 1px solid rgba(245, 165, 36, 0.35);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 32px 0;
}
.cta-box .t { flex: 1; min-width: 220px; }
.cta-box .t b { color: var(--text); font-size: 15.5px; }
.cta-box .t span { display: block; color: var(--text-dim); font-size: 13.5px; margin-top: 3px; }
a.btn-solid { text-decoration: none; display: inline-block; }
a.btn-solid:hover { text-decoration: none; }

/* 관련 링크 */
.related {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.related p { margin: 6px 0; }

/* ── 인덱스 카드 ── */
.post-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
a.post-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  color: var(--text);
  transition: border-color 0.15s, transform 0.1s;
}
a.post-card:hover { border-color: var(--accent); text-decoration: none; }
.post-card h2 { font-size: 16.5px; margin: 0 0 8px; line-height: 1.45; }
.post-card p { color: var(--text-dim); font-size: 13.5px; margin: 0 0 12px; line-height: 1.6; }
.post-card time { color: var(--text-dim); font-size: 12px; font-family: var(--mono); }
@media (max-width: 760px) { .post-list { grid-template-columns: 1fr; } }
