/* ============================================
   SystemLaunch Blog — extends css/styles.css
   Uses the same CSS variables. Do not fork colors here.
   ============================================ */

.post-container { max-width: 780px; }

.post-meta {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

.post-body { padding-top: 56px; }
.post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 44px 0 14px;
}
.post-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 32px 0 10px;
}
.post-body p { margin: 0 0 18px; color: var(--text-secondary); font-size: 17px; line-height: 1.75; }
.post-body ul, .post-body ol { margin: 0 0 18px 22px; color: var(--text-secondary); font-size: 17px; line-height: 1.75; }
.post-body li { margin-bottom: 6px; }
.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 0 0 18px;
  color: var(--text-secondary);
}
.post-body code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-secondary);
  padding: 2px 6px;
  border-radius: 4px;
}

/* FTC disclosure — one muted line above the video */
.disclosure-line {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 10px 0 0;
}
.disclosure {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0 0 20px;
}

/* Video facade embed */
.video-embed {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  margin: 0 0 32px;
  background: var(--bg-dark);
  aspect-ratio: 16 / 9;
}
.video-embed img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: opacity .2s; }
.video-embed:hover img { opacity: 1; }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform .15s;
}
.video-embed:hover .video-play { transform: translate(-50%, -50%) scale(1.06); }
.video-frame { aspect-ratio: 16 / 9; border-radius: var(--radius-md); overflow: hidden; margin: 0 0 32px; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

/* Pricing table */
.table-wrap { overflow-x: auto; margin: 0 0 10px; -webkit-overflow-scrolling: touch; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 560px;
}
.pricing-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 10px 14px;
  border-bottom: 2px solid var(--border);
}
.pricing-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.6;
}
.pricing-table td:first-child { font-weight: 600; color: var(--text-primary); white-space: nowrap; }
.aff-mark { color: var(--accent); font-weight: 700; }
.pricing-verified { font-size: 13px; color: var(--text-tertiary); margin-bottom: 4px; }
.table-note { font-size: 13px; color: var(--text-tertiary); margin-bottom: 24px; }

/* Segmented verdicts */
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 8px 0 32px;
}
.verdict-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.verdict-segment {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 12px;
  padding: 4px 10px;
  margin-bottom: 10px;
}
.verdict-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.verdict-card p { font-size: 14.5px; margin: 0; line-height: 1.65; }

/* Not for you */
.not-for-you {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin: 8px 0 32px;
}
.not-for-you h3 { margin: 0 0 12px; }
.not-for-you ul { margin: 0 0 0 20px; }

/* Affiliate block link */
.aff-block { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 0 0 24px; }
.aff-offer { font-size: 14px; color: var(--text-tertiary); }

/* Deal Analyzer CTA */
.analyzer-cta {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  margin-top: 48px;
  text-align: center;
}
.analyzer-cta h2 { color: #fff; margin: 10px 0 12px; font-size: 1.4rem; }
.analyzer-cta p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 22px; }
.analyzer-cta .cta-note { font-size: 13px; color: rgba(255,255,255,0.4); margin: 14px 0 0; }
.cc-embed-box { max-width: 440px; margin: 0 auto; }

/* Blog index cards */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.post-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
  color: inherit;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.post-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.post-card-body { padding: 20px 22px 24px; }
.post-card-body h2 { font-size: 1.1rem; margin: 8px 0 8px; line-height: 1.4; }
.post-card-body p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 12px; }
.post-card-date { font-size: 13px; color: var(--text-tertiary); }

@media (max-width: 640px) {
  .analyzer-cta { padding: 32px 22px; }
  .post-body h2 { font-size: 1.3rem; }
}

/* fixes from visual pass */
.analyzer-cta .section-tag { color: var(--highlight); }
.post-card img { background: var(--bg-tertiary); }
