/* ═══ pages.css — Inner pages: about, contact, support, legal, docs, blog listing ═══ */

/* ─── Custom Footer ─────────────────────────────────── */
.np-footer {
  background: var(--np-secondary);
  padding: 60px 0 0;
  color: var(--np-icon-muted);
}
.np-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
@media (max-width: 768px) {
  .np-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .np-footer-grid { grid-template-columns: 1fr; }
}
.np-footer h4 {
  color: var(--np-white) !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.np-footer p { font-size: 0.9rem; line-height: 1.7; color: var(--np-icon-muted); }
.np-footer-links { list-style: none; padding: 0; margin: 0; }
.np-footer-links li { margin-bottom: 0; }
.np-footer-links a {
  display: inline-block;
  padding: 8px 0;
  color: var(--np-icon-muted) !important;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.35;
  transition: color var(--np-transition);
}
.np-footer-links a:hover { color: var(--np-white) !important; }
.np-footer-links a:focus-visible {
  outline: 2px solid var(--np-primary-light, #C4B5FD);
  outline-offset: 3px;
  border-radius: 3px;
}
.np-footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--np-white) !important;
  margin-bottom: 12px;
}
.np-footer-brand span { color: var(--np-primary-light); }
.np-footer-bottom {
  border-top: 1px solid var(--np-surface-dark);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Utilities ─────────────────────────────────────── */
.np-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.np-text-center { text-align: center; }
.np-mt-0 { margin-top: 0; }

/* ─── Hide Astra default footer on front page ──────── */
.page-template-front-page .site-footer { display: none !important; }

/* ─── Inner Pages ───────────────────────────────────── */
.np-page {
  padding: 60px 0 80px;
}
.np-page-hero {
  text-align: center;
  margin-bottom: 60px;
}
.np-page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--np-secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.np-page-hero h1 span { color: var(--np-primary); }
.np-page-hero p {
  color: var(--np-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About grid */
.np-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .np-about-grid { grid-template-columns: 1fr; }
}
.np-about-card {
  padding: 32px;
  border-radius: var(--np-radius-lg);
  background: var(--np-white);
  border: 1px solid var(--np-border);
}
.np-about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--np-secondary);
  margin: 12px 0 8px;
}
.np-about-card p {
  color: var(--np-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.np-about-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--np-border);
  border-bottom: 1px solid var(--np-border);
  margin-bottom: 60px;
}
.np-about-mission {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.np-about-mission h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--np-secondary);
  margin-bottom: 16px;
}
.np-about-mission p {
  color: var(--np-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Contact grid */
.np-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .np-contact-grid { grid-template-columns: 1fr; }
}
.np-contact-card {
  padding: 32px;
  border-radius: var(--np-radius-lg);
  background: var(--np-white);
  border: 1px solid var(--np-border);
}
.np-contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--np-secondary);
  margin: 12px 0 8px;
}
.np-contact-card p {
  color: var(--np-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.np-contact-card a {
  color: var(--np-primary) !important;
  font-weight: 600;
}
.np-contact-card a:focus-visible {
  outline: 2px solid var(--np-primary);
  outline-offset: 3px;
  border-radius: 3px;
}
.np-contact-info {
  text-align: center;
  padding: 32px;
  background: var(--np-bg-alt);
  border-radius: var(--np-radius-lg);
}
.np-contact-info p {
  color: var(--np-text-muted);
  margin: 4px 0;
}

/* Support page */
.np-support-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 960px) {
  .np-support-route-grid { grid-template-columns: 1fr; }
}
.np-support-route-card,
.np-support-action-card {
  padding: 32px;
  border-radius: var(--np-radius-lg);
  background: var(--np-white);
  border: 1px solid var(--np-border);
  box-shadow: var(--np-shadow);
}
.np-support-route-card h3,
.np-support-action-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--np-secondary);
  margin: 12px 0 10px;
}
.np-support-route-card p,
.np-support-action-card p {
  color: var(--np-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.np-support-route-card a,
.np-support-action-card a {
  font-weight: 600;
}
.np-support-fast-actions {
  margin-bottom: 60px;
}
.np-support-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 960px) {
  .np-support-action-grid { grid-template-columns: 1fr; }
}
.np-support-include-box {
  margin-bottom: 60px;
  padding: 48px;
  background: var(--np-bg-alt);
  border-radius: var(--np-radius-lg);
}
@media (max-width: 640px) {
  .np-support-include-box { padding: 28px; }
}
/* Highlight the post-purchase route to keep customers oriented after sale */
.np-support-action-card--post {
  background: linear-gradient(180deg, var(--np-white) 0%, var(--np-surface-purple-soft) 100%);
  border-color: var(--np-primary-light, #C4B5FD);
}
.np-support-action-card--post h3 { color: var(--np-primary); }
.np-support-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.np-support-meta-list li {
  position: relative;
  padding: 4px 0 4px 22px;
  color: var(--np-text);
  font-size: 0.92rem;
  line-height: 1.55;
}
.np-support-meta-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--np-accent);
  font-weight: 800;
}

/* Legal pages */
.np-legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.np-legal-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--np-secondary);
  margin-bottom: 8px;
}
.np-legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--np-secondary);
  margin: 32px 0 12px;
}
.np-legal-content p, .np-legal-content li {
  color: var(--np-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.np-legal-content ul {
  padding-left: 20px;
  margin: 8px 0 16px;
}
.np-legal-content li {
  margin-bottom: 6px;
}
.np-legal-content em {
  color: var(--np-text-muted);
}
.np-legal-content strong {
  color: var(--np-text);
}

/* ─── Documentation Page ────────────────────────────── */
.np-docs { scroll-behavior: smooth; }
.np-docs-content {
  max-width: 860px;
  margin: 0 auto;
}
/* Anchor offset for fixed header */
.np-docs-content [id] {
  scroll-margin-top: 100px;
}
/* Subtle pulse when an anchor is the active :target so deep-links don't get lost */
@keyframes np-docs-target-pulse {
  0%   { box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.18); }
  100% { box-shadow: 0 0 0 6px rgba(124, 58, 237, 0); }
}
.np-docs-content article:target,
.np-docs-content [id]:target {
  animation: np-docs-target-pulse 1.4s ease-out 1;
  border-radius: var(--np-radius);
}
@media (prefers-reduced-motion: reduce) {
  .np-docs-content article:target,
  .np-docs-content [id]:target { animation: none; }
}
.np-docs-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--np-secondary);
  margin: 48px 0 16px;
  padding-top: 16px;
}
.np-docs-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--np-secondary);
  margin: 24px 0 8px;
}
.np-docs-content p, .np-docs-content li {
  color: var(--np-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.np-docs-content ul, .np-docs-content ol {
  padding-left: 20px;
  margin: 8px 0 16px;
}
.np-docs-content li { margin-bottom: 6px; }
.np-docs-content code {
  background: var(--np-bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--np-primary);
  word-break: break-all;
}
.np-docs-content pre {
  background: var(--np-secondary);
  color: #e2e8f0;
  padding: 20px 24px;
  border-radius: var(--np-radius);
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  -webkit-overflow-scrolling: touch;
}
.np-docs-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
  word-break: normal;
}
.np-docs-content hr {
  border: none;
  border-top: 1px solid var(--np-border);
  margin: 48px 0;
}

/* Docs summary */
.np-docs-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 960px) {
  .np-docs-summary-grid { grid-template-columns: 1fr; }
}
.np-docs-summary-card {
  background: var(--np-white);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-lg);
  padding: 28px;
  box-shadow: var(--np-shadow);
}
.np-docs-summary-card h3 {
  margin: 0 0 10px !important;
  font-size: 1.1rem;
}
.np-docs-summary-card p {
  margin-bottom: 18px;
}
.np-docs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* TOC */
.np-docs-toc {
  background: var(--np-bg-alt);
  border-radius: var(--np-radius-lg);
  padding: 24px 32px;
  margin-bottom: 32px;
  border: 1px solid var(--np-border);
}
.np-docs-toc h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--np-text-muted);
  margin-bottom: 12px;
}
.np-docs-toc ol {
  columns: 2;
  column-gap: 32px;
  padding-left: 20px;
  margin: 0;
}
.np-docs-toc li {
  padding: 3px 0;
  break-inside: avoid;
}
@media (max-width: 640px) { .np-docs-toc ol { columns: 1; } }
.np-docs-toc a {
  color: var(--np-primary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--np-transition);
}
.np-docs-toc a:hover {
  border-bottom-color: var(--np-primary);
}

/* Checklist */
.np-docs-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 24px;
}
@media (max-width: 640px) {
  .np-docs-checklist { grid-template-columns: 1fr; }
}
.np-docs-check {
  position: relative;
  padding: 16px 16px 16px 42px;
  background: var(--np-white);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius);
  color: var(--np-text);
  line-height: 1.6;
  font-size: 0.95rem;
}
.np-docs-check::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--np-accent);
  font-weight: 800;
}

/* Steps */
.np-docs-step {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  padding-bottom: 28px;
  align-items: flex-start;
  position: relative;
}
.np-docs-step:last-child { padding-bottom: 0; }
/* Connector line between step numbers */
.np-docs-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: var(--np-border);
}
.np-docs-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--np-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.np-docs-step h3 { margin-top: 0; }
.np-docs-step p { margin-bottom: 0; }

/* Screenshots */
.np-docs-screenshot {
  margin: 24px 0;
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-lg);
  overflow: hidden;
  background: var(--np-bg-alt);
}
.np-docs-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}
.np-docs-caption {
  display: block;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--np-text-muted);
  text-align: center;
  border-top: 1px solid var(--np-border);
  line-height: 1.5;
}

/* Screenshot gallery — 2-col grid for related screenshots */
.np-docs-screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.np-docs-screenshot-gallery .np-docs-screenshot {
  margin: 0;
}
@media (max-width: 640px) {
  .np-docs-screenshot-gallery { grid-template-columns: 1fr; }
}

/* Path decision (install vs upgrade fork) */
.np-docs-path-decision {
  text-align: center;
  padding: 24px;
  background: var(--np-bg-alt);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-lg);
  margin-bottom: 24px;
}
.np-docs-path-decision p {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--np-text);
}
.np-docs-path-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Sticky TOC on desktop */
@media (min-width: 961px) {
  .np-docs-toc {
    position: sticky;
    top: 80px;
    z-index: 10;
  }
}

/* Tips */
.np-docs-tip {
  background: var(--np-surface-purple-soft);
  border-left: 4px solid var(--np-primary);
  padding: 16px 20px 16px 44px;
  border-radius: 0 var(--np-radius) var(--np-radius) 0;
  margin: 16px 0;
  font-size: 0.9rem;
  color: var(--np-text);
  position: relative;
}
.np-docs-tip::before {
  content: '\2139';
  position: absolute;
  left: 16px;
  top: 16px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--np-primary);
  width: 20px;
  text-align: center;
}

/* Checksum verification box */
.np-docs-checksum-box {
  background: var(--np-bg-alt);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-lg);
  padding: 20px 24px;
  margin: 16px 0;
}
.np-docs-checksum-box p {
  margin: 0 0 12px;
}
.np-docs-checksum-box pre {
  margin: 12px 0;
}
.np-docs-checksum-note {
  font-size: 0.85rem;
  color: var(--np-text-muted);
  margin: 8px 0 0 !important;
}

/* Sectors */
.np-docs-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 24px;
}
.np-docs-sector {
  padding: 4px 12px;
  background: var(--np-bg-alt);
  border: 1px solid var(--np-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--np-text-muted);
}

/* FAQ */
.np-docs-faq {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--np-white);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius);
}
.np-docs-faq h3 {
  margin: 0 0 8px !important;
  font-size: 1rem;
}
.np-docs-support-box {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: var(--np-radius-lg);
  background: var(--np-secondary);
}
.np-docs-support-box p {
  margin: 0;
  color: var(--np-border-strong);
}
.np-docs-support-box strong {
  color: var(--np-white);
}
.np-docs-support-box a {
  color: var(--np-white) !important;
  text-decoration: underline;
}

/* Tables inside docs */
.np-docs-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.np-docs-content thead {
  background: var(--np-bg-alt);
}
.np-docs-content th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--np-secondary);
  border-bottom: 2px solid var(--np-border);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.np-docs-content td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--np-border);
  color: var(--np-text-muted);
  vertical-align: top;
}
.np-docs-content tbody tr:last-child td {
  border-bottom: none;
}
.np-docs-content td strong {
  color: var(--np-text);
}
@media (max-width: 640px) {
  .np-docs-content table { font-size: 0.82rem; }
  .np-docs-content th,
  .np-docs-content td { padding: 10px 12px; }
}

/* Details / Summary (troubleshooting accordions) */
.np-docs-content details {
  margin-bottom: 12px;
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius);
  overflow: hidden;
}
.np-docs-content details[open] {
  border-color: var(--np-primary-light, var(--np-border));
}
.np-docs-content summary {
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--np-secondary);
  cursor: pointer;
  background: var(--np-bg-alt);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--np-transition);
}
.np-docs-content summary::-webkit-details-marker { display: none; }
.np-docs-content summary::before {
  content: '+';
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--np-primary);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.np-docs-content details[open] > summary::before {
  content: '\2212';
}
.np-docs-content summary:hover {
  background: var(--np-white);
}
.np-docs-content summary:focus-visible {
  outline: 2px solid var(--np-primary);
  outline-offset: -2px;
}
.np-docs-content details > p,
.np-docs-content details > div {
  padding: 14px 20px 14px 50px;
  margin: 0;
}

/* ─── Docs: mobile refinements ─────────────────────── */
@media (max-width: 640px) {
  .np-docs-content { padding: 0 4px; }
  .np-docs-content h2 { font-size: 1.3rem; margin: 36px 0 12px; }
  .np-docs-content hr { margin: 36px 0; }
  /* Full-bleed screenshots on small screens */
  .np-docs-screenshot {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  /* Steps: remove connector on cramped screens */
  .np-docs-step:not(:last-child)::before { display: none; }
  .np-docs-step { padding-bottom: 20px; }
  /* Smaller button group */
  .np-btn-sm { padding: 8px 16px; font-size: 0.82rem; }
  /* Troubleshooting: larger touch targets on mobile */
  .np-docs-content summary { padding: 16px 20px; min-height: 48px; }
  /* Checksum box: tighter on mobile */
  .np-docs-checksum-box { padding: 16px; }
  .np-docs-checksum-box pre { font-size: 0.78rem; }
  /* Path decision: stack buttons on narrow screens */
  .np-docs-path-decision { padding: 20px 16px; }
}

/* ─── Docs: reading UX polish ──────────────────────── */
/* Cap the prose measure so paragraphs and lists stay easy to scan
   even though the container hosts wider screenshots and tables. */
.np-docs-content article > p,
.np-docs-content article > ul,
.np-docs-content article > ol,
.np-docs-content article > h3 + p {
  max-width: 70ch;
}
.np-docs-content p strong {
  color: var(--np-text);
}

/* Step rhythm: softer connector, gentle hover cue, breathing room */
.np-docs-step + .np-docs-step { margin-top: 4px; }
.np-docs-step:not(:last-child)::before {
  background: linear-gradient(to bottom, var(--np-border) 0, var(--np-border) 6px, transparent 6px, transparent 10px) repeat-y;
  background-size: 2px 10px;
  opacity: 0.85;
}
.np-docs-step .np-docs-step-number {
  box-shadow: 0 0 0 4px var(--np-white), 0 1px 2px rgba(15, 23, 42, 0.08);
  transition: transform var(--np-transition);
}
.np-docs-step:hover .np-docs-step-number {
  transform: scale(1.04);
}

/* Screenshot polish: aspect-ratio guard, hover lift, gentle shadow */
.np-docs-screenshot {
  transition: transform var(--np-transition), box-shadow var(--np-transition);
}
.np-docs-screenshot:hover {
  transform: translateY(-1px);
  box-shadow: var(--np-shadow-md);
}
.np-docs-screenshot img {
  background-color: var(--np-bg-alt);
  max-height: 720px;
  object-fit: contain;
  object-position: top;
}
.np-docs-caption {
  font-style: italic;
}
.np-docs-caption strong {
  font-style: normal;
  color: var(--np-text);
}

/* Tables: never blow out narrow viewports */
@media (max-width: 640px) {
  .np-docs-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .np-docs-content table tbody td,
  .np-docs-content table thead th {
    white-space: normal;
  }
}

/* Code blocks: refined scroll & inline contrast */
.np-docs-content pre {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}
.np-docs-content pre::-webkit-scrollbar { height: 8px; }
.np-docs-content pre::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.np-docs-content :not(pre) > code {
  border: 1px solid var(--np-border);
}

/* TOC: keyboard focus ring, ordered-list counter accent */
.np-docs-toc a:focus-visible {
  outline: 2px solid var(--np-primary);
  outline-offset: 3px;
  border-radius: 3px;
}
.np-docs-toc ol { list-style-position: inside; }
.np-docs-toc li::marker {
  color: var(--np-text-muted);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Print: drop chrome, keep step/checklist semantics, expand troubleshooting */
@media print {
  .np-docs-toc,
  .np-docs-summary-grid,
  .np-docs-actions,
  .np-back-to-top { display: none !important; }
  .np-docs-content {
    max-width: none;
    color: #000;
    font-size: 11pt;
  }
  .np-docs-content h2 { page-break-after: avoid; }
  .np-docs-step,
  .np-docs-screenshot,
  .np-docs-checklist { page-break-inside: avoid; }
  .np-docs-screenshot img { max-height: 360px; }
  .np-docs-content details { break-inside: avoid; }
  .np-docs-content details:not([open]) > p,
  .np-docs-content details:not([open]) > div { display: block !important; padding: 14px 20px 14px 50px; }
  .np-docs-content details > summary::before { content: ''; }
  .np-docs-content a { color: #000; text-decoration: underline; }
}

/* ─── Product Catalog Pages (PrestaShop, Products) ──── */
.np-catalog {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.np-catalog--wide {
  max-width: 1200px;
}
.np-catalog-hero {
  text-align: center;
  margin-bottom: 44px;
}
.np-catalog-eyebrow {
  display: inline-block;
  background: var(--np-surface-purple-soft);
  color: var(--np-primary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.np-catalog-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0 0 12px;
  color: var(--np-secondary);
  font-weight: 800;
  line-height: 1.2;
}
.np-catalog-hero p {
  color: var(--np-text-muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.np-catalog-section {
  margin-bottom: 52px;
  scroll-margin-top: 80px;
}
.np-catalog-section__head {
  margin: 0 0 22px;
}
.np-catalog-section__head h2 {
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: var(--np-secondary);
  font-weight: 800;
}
.np-catalog-section__head p {
  color: var(--np-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 760px;
}
.np-catalog-grid {
  display: grid;
  gap: 22px;
}
.np-catalog-grid--ready {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}
.np-catalog-grid--qa {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.np-catalog-grid--waitlist {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 18px;
}
@media (max-width: 600px) {
  .np-catalog-grid--ready,
  .np-catalog-grid--qa,
  .np-catalog-grid--waitlist {
    grid-template-columns: 1fr;
  }
}
.np-catalog-card {
  border-radius: 12px;
  padding: 26px;
  background: var(--np-white);
  display: flex;
  flex-direction: column;
  transition: all var(--np-transition);
}
.np-catalog-card--ready {
  border: 1px solid #C4B5FD;
  text-decoration: none;
  color: inherit;
}
.np-catalog-card--ready:hover {
  border-color: var(--np-primary);
  box-shadow: var(--np-shadow-md);
  transform: translateY(-2px);
  color: inherit;
}
.np-catalog-card--ready:focus-visible,
.np-catalog-card--waitlist:focus-visible {
  outline: 2px solid var(--np-primary);
  outline-offset: 3px;
}
.np-catalog-card--feature {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF5FF 100%);
  border: 1px solid var(--np-primary-light, #C4B5FD);
  box-shadow: 0 4px 14px rgba(108, 58, 237, 0.06);
}
.np-catalog-card--qa-feature {
  border: 1px solid #FCD34D;
  background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 120%);
  padding: 32px;
}
.np-catalog-card--waitlist {
  border: 1px solid #E2E8F0;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.np-catalog-card--waitlist:hover {
  border-color: var(--np-primary-light, #C4B5FD);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: inherit;
}
.np-catalog-card h3 {
  margin: 12px 0 6px;
  font-size: 1.15rem;
  color: var(--np-secondary);
}
.np-catalog-card p {
  color: var(--np-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.np-catalog-card--waitlist p {
  font-size: 0.88rem;
  line-height: 1.55;
}
.np-catalog-card__bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.np-catalog-card__bullets li {
  position: relative;
  padding: 4px 0 4px 22px;
  color: var(--np-text);
  font-size: 0.88rem;
  line-height: 1.5;
}
.np-catalog-card__bullets li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--np-accent);
  font-weight: 800;
}
.np-catalog-card__platform {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--np-surface-blue-soft, #DBEAFE);
  color: var(--np-info, #2563EB);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.np-catalog-card__platform--ps {
  background: var(--np-surface-purple-soft);
  color: var(--np-primary);
}
.np-catalog-card__platform--shopify {
  background: var(--np-surface-green-soft);
  color: var(--np-accent-dark);
}
.np-catalog-card__platform--woo {
  background: #EDE9FE;
  color: #7C3AED;
}
.np-catalog-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--np-secondary);
}
.np-catalog-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}
.np-catalog-btn {
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  transition: background var(--np-transition);
}
.np-catalog-btn--primary {
  background: var(--np-primary);
  color: var(--np-white);
}
.np-catalog-btn--primary:hover {
  background: var(--np-primary-dark, #5B21B6);
  color: var(--np-white);
}
.np-catalog-btn--qa {
  background: #92400E;
  color: var(--np-white);
}
.np-catalog-btn--qa:hover {
  background: #78350F;
  color: var(--np-white);
}
.np-catalog-btn--ghost {
  background: transparent;
  color: var(--np-secondary);
  border: 1px solid var(--np-border-strong, #CBD5E1);
}
.np-catalog-btn--ghost:hover {
  border-color: var(--np-primary);
  color: var(--np-primary);
}
.np-catalog-btn:focus-visible {
  outline: 2px solid var(--np-secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(108, 58, 237, 0.18);
}
.np-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.np-badge--ready {
  background: #EDE9FE;
  color: #6C3AED;
}
.np-badge--qa {
  background: #FEF3C7;
  color: #92400E;
}
.np-badge--waitlist {
  background: #F1F5F9;
  color: #64748B;
}
.np-badge--shopify {
  background: #D1FAE5;
  color: #059669;
}
.np-badge--woo {
  background: #EDE9FE;
  color: #7C3AED;
}

/* Release QA spotlight inside catalog pages (single highlight card) */
.np-catalog-qa {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  background: var(--np-white);
  border: 1px solid #FCD34D;
  border-left: 4px solid var(--np-warning, #F59E0B);
  border-radius: var(--np-radius-lg);
  box-shadow: 0 4px 14px rgba(146, 64, 14, 0.05);
}
@media (max-width: 800px) {
  .np-catalog-qa { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}
.np-catalog-qa__main h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--np-secondary);
  margin: 12px 0 12px;
}
.np-catalog-qa__main > p {
  color: var(--np-text-muted);
  line-height: 1.65;
  margin: 0 0 18px;
  font-size: 0.96rem;
}
.np-catalog-qa__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.np-catalog-qa__bullets li {
  position: relative;
  padding: 5px 0 5px 22px;
  color: var(--np-text);
  font-size: 0.92rem;
  line-height: 1.55;
}
.np-catalog-qa__bullets li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 5px;
  color: #92400E;
  font-weight: 800;
}
.np-catalog-qa__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.np-catalog-qa__panel {
  background: var(--np-secondary);
  border-radius: var(--np-radius-lg);
  padding: 20px;
  color: #CBD5E1;
  align-self: start;
}
.np-catalog-qa__panel-title {
  font-family: 'JetBrains Mono', 'Menlo', monospace;
  font-size: 0.78rem;
  color: var(--np-icon-muted);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--np-surface-dark-alt);
}
.np-catalog-qa__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.np-catalog-qa__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #E2E8F0;
}
.np-catalog-qa__checks li::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.np-catalog-qa__checks li.is-pass::before {
  content: '\2713';
  background: var(--np-accent);
  color: #FFFFFF;
}
.np-catalog-qa__checks li.is-progress::before {
  content: '\00B7';
  background: var(--np-warning);
  color: var(--np-secondary);
  line-height: 1;
}
.np-catalog-qa__checks li.is-progress { color: #94A3B8; }

.np-catalog-rule {
  text-align: center;
  margin-top: 24px;
  padding: 32px;
  background: var(--np-bg-alt);
  border-radius: 12px;
}
.np-catalog-rule h3 {
  margin: 0 0 12px;
  color: var(--np-secondary);
}
.np-catalog-rule p {
  color: var(--np-text-muted);
  margin: 0 auto 20px;
  max-width: 680px;
  line-height: 1.6;
}
.np-catalog-rule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Card meta row: small links under the title (e.g. "Docs · Demo") */
.np-catalog-card__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--np-text-muted);
}
.np-catalog-card__meta span { color: var(--np-text-muted); }

/* Catalog conversion rail — dark band before the release rule */
.np-catalog-rail {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--np-secondary);
  color: var(--np-icon-muted);
  border-radius: var(--np-radius-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) {
  .np-catalog-rail { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
}
.np-catalog-rail h3 {
  color: var(--np-white);
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
}
.np-catalog-rail p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}
.np-catalog-rail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 720px) {
  .np-catalog-rail-actions { justify-content: flex-start; }
}
.np-catalog-rail-btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background var(--np-transition);
  display: inline-block;
}
.np-catalog-rail-btn--primary {
  background: var(--np-primary);
  color: var(--np-white) !important;
}
.np-catalog-rail-btn--primary:hover {
  background: var(--np-primary-light, #8B5CF6);
  color: var(--np-white) !important;
}
.np-catalog-rail-btn--ghost {
  background: transparent;
  border: 1px solid var(--np-surface-dark-alt, #475569);
  color: var(--np-white) !important;
}
.np-catalog-rail-btn--ghost:hover {
  border-color: var(--np-primary-light, #C4B5FD);
  color: var(--np-primary-light, #C4B5FD) !important;
}
.np-catalog-rail-btn:focus-visible {
  outline: 2px solid var(--np-primary-light, #C4B5FD);
  outline-offset: 3px;
}

/* ─── Pricing Page ─────────────────────────────────── */
.np-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 24px;
}
.np-pricing-card {
  border-radius: 16px;
  padding: 30px;
  background: #fff;
  text-align: center;
}
.np-pricing-card--ps { border: 2px solid var(--np-primary); }
.np-pricing-card--shopify { border: 2px solid #059669; }
.np-pricing-card--woo { border: 2px solid #7C3AED; }
.np-pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.np-pricing-badge--ps { background: #EDE9FE; color: var(--np-primary); }
.np-pricing-badge--shopify { background: #D1FAE5; color: #059669; }
.np-pricing-badge--woo { background: #EDE9FE; color: #7C3AED; }
.np-pricing-card h3 {
  margin: 16px 0 8px;
  font-size: 1.28rem;
  color: var(--np-secondary);
}
.np-pricing-subtitle {
  color: var(--np-text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.np-pricing-list {
  text-align: left;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.9;
}
.np-pricing-highlight {
  font-size: 2rem;
  font-weight: 800;
  color: var(--np-secondary);
  margin-bottom: 4px;
}
.np-pricing-label {
  color: #94A3B8;
  font-size: 0.86rem;
  margin-bottom: 20px;
}
.np-pricing-cta {
  display: block;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 22px;
  color: #fff;
  transition: background 0.15s;
}
.np-pricing-cta--ps { background: var(--np-primary); }
.np-pricing-cta--ps:hover { background: #5B21B6; color: #fff; }
.np-pricing-cta--shopify { background: #059669; }
.np-pricing-cta--shopify:hover { background: #047857; color: #fff; }
.np-pricing-cta--woo { background: #7C3AED; }
.np-pricing-cta--woo:hover { background: #6D28D9; color: #fff; }
.np-pricing-cta:focus-visible {
  outline: 2px solid var(--np-secondary);
  outline-offset: 3px;
}
.np-pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}
.np-pricing-actions .np-pricing-cta { margin-top: 0; }
.np-pricing-cta--ghost {
  background: transparent;
  border: 1px solid var(--np-border-strong, #CBD5E1);
  color: var(--np-secondary) !important;
}
.np-pricing-cta--ghost:hover {
  border-color: var(--np-primary);
  background: var(--np-surface-purple-soft);
  color: var(--np-primary) !important;
}
.np-pricing-product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--np-border);
  font-size: 0.92rem;
  color: var(--np-text);
  text-align: left;
}
.np-pricing-product-row:last-child { border-bottom: none; }
.np-pricing-product-row strong {
  color: var(--np-secondary);
  font-weight: 700;
}
.np-pricing-product-row .np-pricing-row-price {
  color: var(--np-text-muted);
  font-weight: 600;
  font-size: 0.88rem;
}
.np-pricing-product-row a {
  color: var(--np-primary) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}
.np-pricing-product-row a:hover { text-decoration: underline; }
.np-pricing-note {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--np-border);
  font-size: 0.86rem;
  color: var(--np-text-muted);
}
.np-pricing-help {
  max-width: 820px;
  margin: 40px auto 0;
  padding: 32px;
  background: var(--np-bg-alt);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-lg);
  text-align: center;
}
.np-pricing-help h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--np-secondary);
}
.np-pricing-help p {
  color: var(--np-text-muted);
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.np-pricing-help-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.np-pricing-faq {
  max-width: 820px;
  margin: 54px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--np-border);
}
.np-pricing-faq h2 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 28px;
  color: var(--np-secondary);
}
.np-pricing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.np-pricing-faq details {
  background: #fff;
  border: 1px solid var(--np-border);
  border-radius: 12px;
  padding: 20px 24px;
}
.np-pricing-faq summary {
  font-weight: 700;
  color: var(--np-secondary);
  cursor: pointer;
}
.np-pricing-faq details p {
  margin-top: 14px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* ─── Hide Astra titles on pages/products (content has its own) ── */
.page .entry-header,
.single-download .entry-header,
.ast-breadcrumbs-wrapper,
.page-header,
.ast-archive-description {
  display: none !important;
}
/* Show H1 on blog posts */
.single-post .entry-header {
  display: block !important;
  max-width: 800px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.single-post .entry-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem) !important;
  font-weight: 800 !important;
  color: var(--np-secondary) !important;
  line-height: 1.25 !important;
}
.single-post .entry-meta {
  color: var(--np-text-muted) !important;
  font-size: 0.85rem !important;
  margin-top: 8px;
}
/* Blog listing */
.blog .entry-header { display: block !important; }
.blog .entry-title { font-size: 1.3rem !important; font-weight: 700 !important; }
.blog .entry-title a { color: var(--np-secondary) !important; }
.blog .entry-title a:hover { color: var(--np-primary) !important; }

/* ─── Force full-width on ALL pages ─────────────────── */
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container #primary,
.ast-separate-container .ast-container,
#primary, .site-content > .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 auto !important;
}
.ast-separate-container .ast-article-single {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}
#secondary, .ast-sidebar-layout #secondary {
  display: none !important;
}
/* Remove Astra boxed container spacing */
.ast-separate-container .site-content > .ast-container {
  max-width: 100% !important;
}

/* ─── Hide Astra clutter on EDD product pages ──────── */
.single-download .entry-header,
.single-download .ast-single-post-order .ast-blog-single-element-meta,
.single-download .ast-single-post-order .entry-meta,
.single-download .post-navigation,
.single-download .ast-breadcrumbs-wrapper,
.single-download .ast-author-box,
.single-download .edd_download_purchase_form > .edd-cart-added-alert,
.single-download .edd_download_purchase_form > p:first-child {
  display: none !important;
}
/* Style EDD Add to Cart button on product pages.
   No display rule here — let inline styles + JS control visibility of the checkout link. */
.single-download .edd-add-to-cart,
.single-download .edd-submit {
  background: var(--np-accent) !important;
  color: var(--np-white) !important;
  border: none !important;
  border-radius: var(--np-radius) !important;
  padding: 14px 32px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  align-items: center !important;
  gap: 8px !important;
}
.single-download .edd-add-to-cart:hover,
.single-download .edd-submit:hover {
  background: var(--np-accent-dark) !important;
  transform: translateY(-1px) !important;
}


/* ─── Single blog post (standard Gutenberg content) ─── */
body.single-post .entry-content,
body.single-post article .entry-content {
  max-width: 760px;
  margin: 40px auto 60px;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
}
body.single-post .entry-title {
  max-width: 760px;
  margin: 48px auto 16px;
  padding: 0 24px;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0F172A;
  text-align: left;
}
body.single-post .entry-meta {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 0 24px;
  font-size: 14px;
  color: #94A3B8;
}
body.single-post .entry-content p {
  margin: 0 0 1.2em;
}
body.single-post .entry-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0F172A;
  margin: 2.2em 0 0.8em;
}
body.single-post .entry-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1E293B;
  margin: 1.8em 0 0.6em;
}
body.single-post .entry-content ul,
body.single-post .entry-content ol {
  padding-left: 24px;
  margin: 0 0 1.2em;
}
body.single-post .entry-content li {
  margin-bottom: 0.5em;
}
body.single-post .entry-content li > strong:first-child {
  color: #0F172A;
}
body.single-post .entry-content a {
  color: #6C3AED;
  border-bottom: 1px solid rgba(108,58,237,.25);
  text-decoration: none;
  transition: border-color .15s;
}
body.single-post .entry-content a:hover {
  border-bottom-color: #6C3AED;
}
body.single-post .entry-content blockquote {
  margin: 1.5em 0;
  padding: 1em 1.4em;
  border-left: 4px solid #6C3AED;
  background: #F8FAFC;
  color: #475569;
  font-style: italic;
}
body.single-post .entry-content code {
  background: #F1F5F9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #6C3AED;
}
body.single-post .entry-content img {
  border-radius: 10px;
  margin: 1.5em 0;
}

/* Tame WordPress post-navigation arrows */
.post-navigation {
  max-width: 760px;
  margin: 60px auto 40px;
  padding: 24px;
  border-top: 1px solid #E2E8F0;
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: block;
  padding: 16px 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  color: #1E293B;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  border-color: #6C3AED;
  color: #6C3AED;
  transform: translateY(-1px);
}
.post-navigation .nav-next { text-align: right; }
.post-navigation svg { display: none !important; }

/* Comments: hide if template tries to render on posts without comments */
body.single-post .comments-area { display: none; }
