/* ── Homepage / index layout ─────────────────────────────── */
.home {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

.hero { margin-bottom: 4rem; }

.name {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #f0f0f0;
}

.terminal-subtitle {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", ui-monospace,
               SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  color: #6b6b6b;
  min-height: 1.6em;
}

.typed-cursor {
  font-family: monospace;
  color: #6b6b6b;
  opacity: 1;
}

/* ── Social links ────────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.social-links a {
  display: flex;
  align-items: center;
  color: #555;
  transition: color 0.15s ease;
}

.social-links a:hover { color: #e8e8e8; }

/* ── Cards (blog + poem listings) ───────────────────────── */
.blog-list h2,
.blog-index h1 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 0.75rem;
}

.blog-card {
  padding: 1.25rem 0;
  border-bottom: 1px solid #1e1e1e;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.blog-card:first-of-type { border-top: 1px solid #1e1e1e; }
.blog-card:hover { opacity: 0.75; }

.blog-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-title,
.blog-card h2,
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f0f0f0;
  margin: 0 0 0.35rem;
  line-height: 1.4;
}

.blog-description,
.blog-card p {
  font-size: 0.9rem;
  color: #888;
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.blog-date,
.blog-card time {
  font-size: 0.78rem;
  color: #555;
  font-family: ui-monospace, monospace;
}

/* ── Tag chips ───────────────────────────────────────────── */
.tag-list {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-family: ui-monospace, monospace;
  color: #666;
  letter-spacing: 0.02em;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tag-chip--orange .tag-dot { background: #e07a30; }
.tag-chip--purple .tag-dot { background: #9b6dcc; }
.tag-chip--red    .tag-dot { background: #c0392b; }
.tag-chip--grey   .tag-dot { background: #555; }

/* ── Blog index page ─────────────────────────────────────── */
.blog-index {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
