/* Purple Nurple — theme tokens + component styles (non-atomic rules, keyframes).
   Pair with UnoCSS (project unocss_config) for utilities. */

:root {
  --bg-base: #0a0912;
  --bg-elevated: #100e1d;
  --bg-surface: #16132a;
  --bg-overlay: #1e1a35;
  --brand-deep: #3b0898;
  --brand-core: #6d28d9;
  --brand-bright: #9400ff;
  --brand-soft: #a78bfa;
  --text-primary: #f0eeff;
  --text-secondary: #a09bbf;
  --text-muted: #5c566e;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-brand: rgba(109, 40, 217, 0.35);
  --green-metric: #34d399;
  --cyan-metric: #67e8f9;
  --indigo-metric: #818cf8;
}

.pn-page-body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle, rgba(109, 40, 217, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  background-repeat: repeat;
}

.pn-page-body h1,
.pn-page-body h2,
.pn-page-body h3,
.pn-page-body h4 {
  font-family: "Wix Madefor Display", system-ui, sans-serif;
}

.font-mono-dm {
  font-family: "DM Mono", ui-monospace, monospace;
}

/* Logo */
.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease;
  text-decoration: none;
}
.logo-container:hover {
  transform: scale(1.02);
}
.logo-mark {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-core), var(--brand-deep));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.logo-glow {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--brand-bright);
  filter: blur(25px);
  opacity: 0.3;
  border-radius: 50%;
  z-index: -1;
  animation: neural-pulse 4s infinite ease-in-out;
}
@keyframes neural-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.35;
  }
}
.wordmark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}
.wordmark-rapid {
  font-weight: 800;
  background: linear-gradient(to bottom, #fff, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wordmark-xm {
  font-weight: 500;
  color: var(--brand-soft);
  opacity: 0.9;
}
.ai-dot {
  width: 5px;
  height: 5px;
  background: var(--brand-bright);
  border-radius: 50%;
  margin-left: 4px;
  box-shadow: 0 0 12px var(--brand-bright);
}

.nav-link {
  color: var(--text-secondary);
  transition: color 0.2s ease;
  font-size: 0.875rem;
  font-weight: 600;
}
.nav-link:hover {
  color: var(--text-primary);
}

.hero-gradient-text {
  background: linear-gradient(135deg, #9400ff 0%, #c4b5fd 30%, #6d28d9 55%, #a78bfa 80%, #9400ff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-pan 8s ease infinite;
}
@keyframes gradient-pan {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.text-brand-soft {
  color: var(--brand-soft);
}

/* Deploy-generated post / product wrappers */
.post-detail,
.product-detail {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.post-detail .post-body,
.product-detail .product-description {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.post-detail .post-body a {
  color: var(--brand-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 139, 250, 0.3);
}
.post-detail .post-body a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.product-detail .product-checkout-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
  color: #fff;
  text-decoration: none;
}

/* Post layout: optional reading bar */
#read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-bright));
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(148, 0, 255, 0.6);
}

/* Legacy class names from section markup (matches original default.liquid) */
.glass-nav {
  background: rgba(10, 9, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.login-btn {
  border: 1px solid rgba(109, 40, 217, 0.4);
  color: #c4b5fd;
  border-radius: 9999px;
  transition: all 0.2s ease;
}
.login-btn:hover {
  background: rgba(109, 40, 217, 0.15);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(109, 40, 217, 0.1);
  color: #c4b5fd;
  border: 1px solid rgba(109, 40, 217, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cta-primary {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
  color: #fff;
  border-radius: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 30px -10px rgba(148, 0, 255, 0.5);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.card-dark {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-dark:hover {
  border-color: rgba(109, 40, 217, 0.4);
  transform: translateY(-4px);
  background: var(--bg-overlay);
}
.integration-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
}
.integration-chip:hover {
  background: rgba(109, 40, 217, 0.1);
  border-color: var(--brand-core);
}
.neural-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-core), transparent);
  width: 100%;
  margin: 2rem 0;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-soft);
  margin-bottom: 1rem;
  display: block;
}
.signals-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .signals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Post layout (themes/.../layouts/post.liquid) — article chrome + prose
   -------------------------------------------------------------------------- */

.pn-post-theme {
  font-family: "Noto Sans", system-ui, sans-serif;
}

.pn-post-layout {
  padding: 7rem 1.5rem 8rem;
}

.pn-post-inner {
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto;
}

.pn-post-layout .post-detail {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.pn-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}

.breadcrumb-link {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: var(--brand-soft);
}

.breadcrumb-sep {
  color: var(--text-muted);
  margin: 0 0.5rem;
}

.breadcrumb-current {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.pn-post-hero {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.pn-post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pn-post-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
}

.pn-post-excerpt {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}

.pn-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pn-share-cluster {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

.post-cover {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.post-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(109, 40, 217, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(148, 0, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(59, 8, 152, 0.1) 0%, transparent 50%);
}

.cover-logo {
  position: relative;
  z-index: 1;
  opacity: 0.15;
  animation: float-subtle 8s ease-in-out infinite;
}

@keyframes float-subtle {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

.post-cover-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.post-cover-glow--a {
  top: 25%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: var(--brand-core);
  opacity: 0.18;
  animation: neural-pulse 6s infinite ease-in-out;
}

.post-cover-glow--b {
  bottom: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: var(--brand-bright);
  opacity: 0.12;
  filter: blur(90px);
  animation: neural-pulse 6s 3s infinite ease-in-out;
}

.post-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  z-index: 2;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: #fff;
  flex-shrink: 0;
}

.author-avatar--lg {
  width: 52px;
  height: 52px;
  font-size: 1rem;
}

.post-detail .post-body h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.post-detail .post-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
}

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

.post-detail .post-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

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

.post-detail .post-body ul {
  list-style-type: none;
  padding-left: 0;
}

.post-detail .post-body ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.post-detail .post-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-core);
}

.post-detail .post-body ol {
  list-style-type: decimal;
}

.post-detail .post-body ol li {
  margin-bottom: 0.5rem;
}

.post-detail .post-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(109, 40, 217, 0.08);
  border-left: 3px solid var(--brand-core);
  border-radius: 0 0.75rem 0.75rem 0;
  color: var(--text-primary);
  font-style: italic;
  font-size: 1.05rem;
}

.post-detail .post-body code {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 0.15em 0.4em;
  color: var(--brand-soft);
}

.post-detail .post-body pre {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.post-detail .post-body pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.post-detail .post-body hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-core), transparent);
  margin: 2.5rem 0;
}

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

.pn-post-columns {
  display: grid;
  gap: 3rem 4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .pn-post-columns {
    grid-template-columns: 1fr 300px;
  }

  .pn-sidebar-sticky {
    position: sticky;
    top: 6rem;
  }
}

@media (max-width: 1023px) {
  .pn-sidebar-col {
    display: none;
  }
}

.pn-sidebar-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.pn-sidebar-card--accent {
  background: linear-gradient(135deg, rgba(59, 8, 152, 0.2), rgba(148, 0, 255, 0.08));
  border: 1px solid var(--border-brand);
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.2s;
}

.toc-item:last-child {
  border-bottom: none;
}

.toc-item:hover {
  color: var(--brand-soft);
}

.toc-num {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  color: var(--brand-core);
  min-width: 1.25rem;
}

.tag-pill {
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.2);
  color: var(--brand-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s;
}

.tag-pill:hover {
  background: rgba(109, 40, 217, 0.2);
  border-color: var(--brand-core);
  color: #fff;
}

.pn-tag-pill-static {
  cursor: default;
}

.pn-tag-pill-static:hover {
  background: rgba(109, 40, 217, 0.1);
  border-color: rgba(109, 40, 217, 0.2);
  color: var(--brand-soft);
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-overlay);
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  padding: 0;
}

.share-btn:hover {
  border-color: var(--brand-soft);
  color: var(--brand-soft);
  background: var(--bg-surface);
}

.pn-author-bio-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pn-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.pn-post-back {
  margin-top: 2rem;
}

.pn-post-back a {
  color: var(--brand-soft);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.pn-post-back a:hover {
  text-decoration: underline;
}

.pn-related-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pn-related-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.25rem 0 0;
}

.pn-related-all {
  color: var(--brand-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.pn-related-all:hover {
  color: #fff;
}

.pn-related-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pn-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.related-post-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-4px);
  background: var(--bg-overlay);
}

.related-post-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-post-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(109, 40, 217, 0.15) 0%, transparent 70%);
}

.related-post-body {
  padding: 1.25rem;
}

.related-post-body h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.related-post-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.pn-metric-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.pn-cta-btn {
  display: block;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.pn-cta-btn:hover {
  opacity: 0.92;
}

.pn-reading-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

#sidebarProgress {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-bright));
  border-radius: 99px;
  width: 0%;
  transition: width 0.2s;
}

/* --------------------------------------------------------------------------
   Posts index (layouts/posts.liquid)
   -------------------------------------------------------------------------- */

.pn-posts-page {
  padding: 7rem 1.5rem 5rem;
}

.pn-posts-hero {
  margin-bottom: 2.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pn-posts-hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.pn-posts-hero-lede {
  max-width: 40rem;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.pn-posts-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pn-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .pn-posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pn-posts-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  min-height: 100%;
}

.pn-posts-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.45);
}

@media (min-width: 900px) {
  .pn-posts-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
  }

  .pn-posts-card--featured .pn-posts-card-thumb {
    flex: 0 0 44%;
    max-width: 44%;
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }

  .pn-posts-card--featured .pn-posts-card-body {
    flex: 1;
    padding: 2rem 2.25rem;
    justify-content: center;
  }
}

.pn-posts-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pn-posts-card-thumb-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(109, 40, 217, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(148, 0, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.pn-posts-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pn-posts-card-thumb-logo {
  position: relative !important;
  z-index: 2 !important;
  width: auto !important;
  height: 56px !important;
  max-width: 70%;
  object-fit: contain !important;
  opacity: 0.35;
  inset: auto !important;
}

.pn-posts-card-thumb-mark {
  position: relative;
  z-index: 2;
}

.pn-posts-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
}

.pn-posts-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.pn-posts-card:hover .pn-posts-card-title {
  color: var(--brand-soft);
}

.pn-posts-card-excerpt {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 1rem;
  flex: 1;
}

.pn-posts-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
}

.pn-posts-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.pn-posts-card-tags .tag-pill {
  font-size: 0.62rem;
  padding: 0.2rem 0.55rem;
}
