/* Shared site shell for non-home pages: background + prose + top padding */
.page-shell { padding-top: var(--nav-h); }

/* Blog / article typography */
.prose { max-width: 72ch; }
.prose p { margin: 1.1rem 0; color: var(--text-muted); }
.prose h2 { font-size: 1.7rem; margin: 2.5rem 0 0.75rem; }
.prose h3 { font-size: 1.3rem; margin: 2rem 0 0.5rem; }
.prose ul { margin: 1.1rem 0; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.5rem; margin: 0.5rem 0; color: var(--text-muted); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 2px; background: var(--grad); }
.prose blockquote { border-left: 3px solid var(--accent); padding-left: 1.25rem; margin: 1.5rem 0; color: var(--text); font-family: var(--font-display); font-size: 1.15rem; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Tag/date meta row */
.meta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; color: var(--text-dim); font-size: 0.85rem; align-items: center; }
.meta-row .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* Author box */
.author-box { display: flex; gap: 1rem; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin-top: 2.5rem; }
.author-box .avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 1.2rem; }
.author-box .role { color: var(--text-dim); font-size: 0.85rem; }

/* Table (pricing/FAQ content) */
.tbl { width: 100%; border-collapse: collapse; }
.tbl th, .tbl td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.tbl th { color: var(--text-dim); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.75rem; }
.tbl td { color: var(--text-muted); }

/* Newsletter input */
.newsletter { display: flex; gap: 0.5rem; max-width: 460px; }
.newsletter input { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid var(--line-strong); border-radius: var(--radius-pill); padding: 0.8rem 1.25rem; color: var(--white); font: inherit; }
.newsletter input:focus { outline: none; border-color: var(--accent); }