/* KaiOrb — blog. Deep-space theme, so it extends site.css rather than the
   daylight utility tokens. Generated pages, hand-written styles. */

.bl-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.bl-card {
  display: block; padding: 1.5rem; border: 1px solid var(--line); border-radius: 18px;
  background: var(--surface); color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.bl-card:hover {
  text-decoration: none; transform: translateY(-2px);
  border-color: var(--gold); box-shadow: 0 0 24px var(--gold-soft);
}
.bl-card-tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .6rem;
}
.bl-card h2 { font-size: 1.2rem; margin: 0 0 .5rem; line-height: 1.3; }
.bl-card p { color: var(--mut); font-size: .9rem; margin: 0 0 .9rem; }
.bl-card-meta { color: var(--mut); font-size: .78rem; }

/* ---------- article ---------- */
.bl-article { max-width: 720px; padding-top: 2.5rem; padding-bottom: 3rem; }
.bl-crumb { font-size: .82rem; color: var(--mut); margin-bottom: 1.2rem; }
.bl-crumb a { color: var(--mut); }
.bl-crumb a:hover { color: var(--gold); }
.bl-article h1 { font-size: clamp(1.9rem, 4.4vw, 2.7rem); line-height: 1.15; margin: .3rem 0 .6rem; }
.bl-date { color: var(--mut); font-size: .82rem; margin-top: .8rem; }

.bl-body { margin-top: 2.2rem; }
.bl-body h2 {
  font-size: 1.3rem; margin: 2.2rem 0 .7rem; padding-left: 1rem; position: relative;
}
.bl-body h2::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 10px var(--gold-soft);
}
.bl-body p { margin: 0 0 1.1rem; line-height: 1.75; color: var(--ink); }
.bl-list { margin: 0 0 1.2rem; padding: 0; list-style: none; display: grid; gap: .6rem; }
.bl-list li { position: relative; padding-left: 1.5rem; color: var(--ink); line-height: 1.7; }
.bl-list li::before {
  content: ''; position: absolute; left: .25rem; top: .65em;
  width: 6px; height: 6px; border-radius: 50%; border: 1px solid var(--gold);
}
.bl-quote {
  margin: 1.6rem 0; padding: 1.1rem 1.4rem;
  border-left: 2px solid var(--gold); border-radius: 0 14px 14px 0;
  background: var(--surface); font-size: 1.05rem; line-height: 1.6; color: var(--ink);
}

.bl-tools { margin: 2rem 0 0; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.bl-tools-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mut); margin: 0 0 .8rem;
}
.bl-tool {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem .45rem .5rem;
  margin: 0 .5rem .5rem 0; font-size: .88rem; color: var(--ink);
}
.bl-tool:hover { text-decoration: none; border-color: var(--gold); }
.bl-tool-ring {
  width: 20px; height: 20px; border-radius: 50%; flex: none; position: relative;
  background: radial-gradient(circle at 34% 30%, var(--gold-soft), transparent 70%);
}
.bl-tool-ring::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 1px dashed var(--line);
}

.bl-cta {
  margin-top: 2.6rem; padding: 1.5rem; border: 1px solid var(--line);
  border-radius: 18px; background: var(--surface);
}
.bl-cta p { margin: 0; color: var(--mut); font-size: .93rem; }

@media (prefers-reduced-motion: reduce) { .bl-card { transition: none; } }
