/* ==========================================================================
   Technet Engineering Blog -- built on top of the shared theme.css tokens.
   Adds prose/article typography + post-card list styling only.
   ========================================================================== */

.blog-main { max-width: 800px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
.blog-main.wide { max-width: 980px; }

.post-meta {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.post-meta .sep { margin: 0 0.5em; opacity: 0.5; }

.post-list-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.post-list-item:first-child { padding-top: 0; }
.post-list-item h2 { font-size: 1.5rem; margin: 0.35rem 0 0.6rem; }
.post-list-item h2 a { text-decoration: none; color: var(--navy); }
.post-list-item h2 a:hover { color: var(--maroon); }
.post-list-item p { color: var(--muted); line-height: 1.6; margin: 0; }

.post-intro {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

/* Article prose */
.prose { color: var(--text); line-height: 1.75; font-size: 1.03rem; }
.prose h2 {
  font-size: 1.5rem;
  margin: 2.4rem 0 1rem;
  position: relative;
  padding-left: 1.1rem;
}
.prose h2::before {
  content: '';
  position: absolute;
  left: 0; top: 0.15em; bottom: 0.15em;
  width: 4px;
  background: var(--maroon);
  border-radius: 2px;
}
.prose h3 { font-size: 1.2rem; margin: 1.8rem 0 0.75rem; color: var(--navy); }
.prose p { margin: 0 0 1.15rem; }
.prose a { color: var(--maroon); text-decoration: underline; }
.prose a:hover { color: var(--maroon-bright); }
.prose ul, .prose ol { margin: 0 0 1.2rem; padding-left: 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--navy); }
.prose blockquote {
  border-left: 3px solid var(--maroon);
  background: var(--maroon-tint);
  padding: 1rem 1.4rem;
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
  color: var(--text);
}
.prose code {
  font-family: 'JetBrains Mono', monospace;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-size: 0.88em;
}
.prose pre {
  background: var(--code-bg);
  border-left: 4px solid var(--maroon-bright);
  border-radius: 8px;
  padding: 1.35rem 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.prose pre code {
  background: none;
  border: none;
  padding: 0;
  color: #cfe3f5;
  font-size: 0.85rem;
  line-height: 1.65;
}
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.prose img { border-radius: 10px; border: 1px solid var(--border); }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 0; }

.post-footer-nav {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.rss-note { color: var(--muted-soft); font-size: 0.78rem; }
