/* ============================================================
   AI Ideas — Main Stylesheet
   Standalone theme, no parent dependency.
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --ink:           #0a0a0b;
  --ink-soft:      #1c1c1e;
  --surface:       #f5f4f0;
  --surface-warm:  #eeecea;
  --accent:        #d4ff4e;
  --accent-dim:    #b8e032;
  --accent-text:   #1a2200;
  --text-primary:  #0a0a0b;
  --text-secondary:#4a4a52;
  --text-mute:     #8a8a94;
  --border:        rgba(10,10,11,0.1);
  --radius:        8px;
  --radius-lg:     12px;
}

/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.site-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  display: inline-block;
}

/* Primary nav */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.primary-nav ul a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.primary-nav ul a:hover { color: var(--text-primary); }

.nav-badge {
  font-size: 0.68rem;
  font-weight: 500;
  background: var(--ink-soft);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 4px;
  vertical-align: middle;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--ink);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-cta:hover { background: var(--ink-soft); color: var(--accent); }

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
  line-height: 0;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.5rem 1rem;
}

.mobile-nav ul { list-style: none; }

.mobile-nav ul li { border-bottom: 1px solid var(--border); }

.mobile-nav ul a {
  display: block;
  padding: 11px 0;
  font-size: 1rem;
  color: var(--text-secondary);
}

.mobile-nav.is-open { display: block; }

/* ── PAGE WRAPPER ────────────────────────────────────────────── */
.site-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HERO (front page only) ──────────────────────────────────── */
.hero {
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1.5px;
  background: var(--accent-dim);
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 6px;
  background: var(--accent);
  z-index: -1;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--ink);
  color: var(--accent);
  padding: 11px 24px;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover { background: var(--ink-soft); transform: translateY(-1px); color: var(--accent); }

.btn-ghost {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.btn-ghost:hover { color: var(--text-primary); }

/* Hero panel */
.hero-panel {
  background: var(--ink);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
  pointer-events: none;
}

.hero-panel-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212,255,78,0.55);
  margin-bottom: 1.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.hero-countdown {
  background: rgba(212,255,78,0.07);
  border: 1px solid rgba(212,255,78,0.18);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.countdown-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(212,255,78,0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.countdown-text p   { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: 0; }
.countdown-text strong { font-size: 0.88rem; color: var(--accent); font-weight: 500; }

/* ── TWO-COLUMN LAYOUT ───────────────────────────────────────── */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 0 0 4rem;
  align-items: start;
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}

.section-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid var(--ink);
  display: inline-block;
  flex-shrink: 0;
}

.section-link {
  font-size: 0.82rem;
  color: var(--text-mute);
  transition: color 0.15s;
}

.section-link:hover { color: var(--text-primary); }

/* ── POST CARD (list view) ──────────────────────────────────── */
.post-list { display: flex; flex-direction: column; }

.post-card {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 1.25rem;
  align-items: start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.post-card:first-child { padding-top: 0; }

.post-card:hover .post-card-title {
  text-decoration: underline;
  text-decoration-color: var(--accent-dim);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.45rem;
  flex-wrap: wrap;
}

.cat-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: #e8e6e0;
  color: #3a3a40;
}

/* Category colour variants */
.cat-ai-tools  { background: #e0edff; color: #1a3a6e; }
.cat-agents    { background: #e0fae8; color: #0d4a22; }
.cat-llm       { background: #ffe8d4; color: #7a3010; }
.cat-prompting { background: #f0e0ff; color: #4a1070; }
.cat-workflows { background: #fef3c7; color: #7a5010; }
.cat-product   { background: #fde8f0; color: #7a1040; }

.post-date { font-size: 0.75rem; color: var(--text-mute); }

.post-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.post-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.post-thumb {
  width: 90px; height: 70px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--border);
}

.post-thumb-empty {
  width: 90px; height: 70px;
  border-radius: var(--radius);
  background: var(--surface-warm);
  border: 1px solid var(--border);
}

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 6px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  font-size: 0.85rem;
  padding: 7px 13px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: background 0.1s, color 0.1s;
}

.pagination a:hover { background: var(--surface-warm); color: var(--text-primary); }
.pagination .current { background: var(--ink); color: var(--accent); border-color: var(--ink); }

/* ── IDEAS TEASER ────────────────────────────────────────────── */
.ideas-teaser {
  margin-top: 2.5rem;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.ideas-teaser::after {
  content: 'SOON';
  position: absolute;
  right: -10px; top: 16px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  letter-spacing: -0.04em;
}

.teaser-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.ideas-teaser h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.ideas-teaser p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.notify-form { display: flex; gap: 8px; }

.notify-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 9px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #fff;
  outline: none;
  min-width: 0;
}

.notify-form input::placeholder { color: rgba(255,255,255,0.3); }
.notify-form input:focus { border-color: rgba(212,255,78,0.4); }

.notify-form button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  border-radius: 6px;
  padding: 9px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.notify-form button:hover { background: var(--accent-dim); }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-block {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.sidebar-block-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1rem;
}

/* Topics */
.topic-list { display: flex; flex-direction: column; gap: 1px; }

.topic-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 9px;
  border-radius: 7px;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
}

.topic-row:hover { background: var(--surface); }

.topic-name {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.topic-color {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.topic-count {
  font-size: 0.72rem;
  color: var(--text-mute);
  background: var(--surface);
  padding: 2px 7px;
  border-radius: 10px;
}

/* Tool card */
.tool-block {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.tool-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.tool-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.tool-type { font-size: 0.72rem; color: var(--text-mute); margin-top: 1px; }

.tool-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.tool-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
}

.tool-link:hover { gap: 9px; }

/* Newsletter sidebar block */
.newsletter-block {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.newsletter-block .sidebar-block-title { color: rgba(212,255,78,0.55); }

.newsletter-block p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.newsletter-block input {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 9px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #fff;
  outline: none;
  margin-bottom: 8px;
}

.newsletter-block input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-block input:focus { border-color: rgba(212,255,78,0.4); }

.newsletter-block button {
  display: block;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  border-radius: 6px;
  padding: 9px;
  cursor: pointer;
  transition: background 0.15s;
}

.newsletter-block button:hover { background: var(--accent-dim); }

/* ── SINGLE POST ─────────────────────────────────────────────── */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 3rem 0 4rem;
  align-items: start;
}

/* This is the article column — THE KEY FIX */
.single-article {
  /* Mandatory for grid children — prevents blowout */
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.single-header { margin-bottom: 2rem; }

.single-header h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
  /* Words wrap — never overflow */
  overflow-wrap: break-word;
  word-break: break-word;
}

.single-header .post-meta { margin-bottom: 0; }

.single-featured-image {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.single-featured-image img { width: 100%; height: auto; display: block; }

/* ── POST BODY — the reading area ────────────────────────────── */
.post-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  /* HARD width cap — this is what fixes the text going off-screen */
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Every child element must stay within the column */
.post-body * { max-width: 100%; }

.post-body p { margin-bottom: 1.4rem; }

.post-body h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.25;
  margin: 2.5rem 0 0.85rem;
  overflow-wrap: break-word;
}

.post-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.3;
  margin: 2rem 0 0.65rem;
  overflow-wrap: break-word;
}

.post-body h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}

.post-body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent-dim);
  text-underline-offset: 3px;
}

.post-body a:hover { text-decoration-color: var(--ink); }

.post-body ul,
.post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}

.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 0.45rem; }

.post-body blockquote {
  border-left: 3px solid var(--accent-dim);
  background: var(--surface-warm);
  padding: 1rem 1.25rem;
  margin: 1.75rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.post-body blockquote p { margin-bottom: 0; }

.post-body img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}

/* Code — inline */
.post-body code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85em;
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--ink);
  word-break: break-word;
}

/* Code — block */
.post-body pre {
  background: var(--ink);
  color: #e8e6e0;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-size: 0.85rem;
  line-height: 1.65;
  /* Critical: wrap long lines, never overflow */
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.post-body pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
  word-break: inherit;
}

/* Tables */
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  font-size: 0.9rem;
  display: block;
  overflow-x: auto;
}

.post-body th,
.post-body td {
  text-align: left;
  padding: 9px 14px;
  border: 1px solid var(--border);
  overflow-wrap: break-word;
}

.post-body th {
  background: var(--surface-warm);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}

/* HR */
.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* Post footer */
.single-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.single-footer .cat-tag { text-decoration: none; }

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.post-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 45%;
  overflow-wrap: break-word;
  transition: color 0.15s;
}

.post-nav a:hover { color: var(--text-primary); }

.post-nav .next { margin-left: auto; text-align: right; }

/* ── ARCHIVE / BLOG PAGE ─────────────────────────────────────── */
.archive-header {
  padding: 3rem 0 0;
  margin-bottom: 2.5rem;
}

.archive-header h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.archive-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 2.5rem 2rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.footer-logo .logo-dot { background: var(--accent); border-color: var(--accent-dim); }

.footer-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav ul a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.15s;
}

.footer-nav ul a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
}

/* ── SUCCESS MESSAGE ─────────────────────────────────────────── */
.subscribe-success {
  background: rgba(212,255,78,0.1);
  border: 1px solid rgba(212,255,78,0.25);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--accent-dim);
  margin-top: 8px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { padding: 0 1.25rem; }
  .primary-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }

  .site-wrap { padding: 0 1.25rem; }

  .hero {
    grid-template-columns: 1fr;
    padding: 2.5rem 0 2rem;
    gap: 2rem;
  }

  .content-sidebar,
  .single-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Show sidebar below content on mobile */
  .sidebar { order: 2; }

  .site-footer { padding: 2rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .post-card { grid-template-columns: 1fr; }
  .post-thumb, .post-thumb-empty { display: none; }
  .notify-form { flex-direction: column; }
}
