/* POST PAGE SHARED STYLES - included inline in each post */

.post-hero { padding: 80px 20px 40px; border-bottom: 1px solid var(--border); }
.post-cat-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 3px; color: var(--red); margin-bottom: 16px; }
.post-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 10vw, 72px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 20px; }
.post-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.post-meta-item { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 1px; }

.post-body { padding: 40px 20px; max-width: 680px; }
.post-body p { font-size: 15px; line-height: 1.8; color: #bbb; margin-bottom: 24px; }
.post-body p strong { color: var(--white); }
.post-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 1px; color: var(--white); margin: 40px 0 16px; line-height: 1; }
.post-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: 0.5px; color: var(--white); margin: 32px 0 12px; text-transform: uppercase; }
.post-body ul { padding-left: 0; list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.post-body ul li { font-size: 15px; line-height: 1.7; color: #bbb; padding-left: 20px; position: relative; }
.post-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--red); }
.post-body .callout { background: var(--gray); border-left: 4px solid var(--red); padding: 20px; margin: 32px 0; }
.post-body .callout p { color: var(--white); font-weight: 500; margin: 0; font-size: 16px; }

/* AFFILIATE BOX */
.affiliate-box {
  background: var(--gray);
  border: 1px solid #333;
  padding: 24px;
  margin: 40px 0;
}
.affiliate-box-label { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 3px; color: var(--muted); margin-bottom: 10px; }
.affiliate-box h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; }
.affiliate-box p { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 16px; }
.affiliate-btn { background: var(--white); color: var(--black); font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px; padding: 12px 22px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.affiliate-btn:hover { background: #ddd; }
.affiliate-disclosure { font-size: 10px; color: #444; font-family: 'Space Mono', monospace; margin-top: 10px; }

/* POST NAV */
.post-nav { padding: 32px 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; }
.post-nav a { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 2px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.post-nav a:hover { color: var(--white); }
