/* Fan Girls Podcast, Recap Template Styles
   Paste this into Appearance > Customize > Additional CSS
   (or a custom CSS plugin) once. Everything below is scoped
   with "body.single-post" so it ONLY applies on individual
   blog post pages, never on your Blog landing page, Home,
   About, Shop, or anywhere else on the site. */

:root{
  --pink: #ec1f79;
  --pink-soft: #fde4ee;
  --ink: #14100f;
  --muted: #6b6b6b;
  --border: #f0d3e0;
}

body.single-post .eyebrow {
  color: var(--pink);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.single-post .post-title { color: var(--ink); }

body.single-post .byline {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12.5px;
  color: var(--muted);
}

body.single-post .disclosure {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

body.single-post .intro { font-size: 16px; line-height: 1.7; }

body.single-post .listen-box {
  background: var(--pink-soft);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 24px 0;
}
body.single-post .listen-box h3 { color: var(--pink); margin-top: 0; }
body.single-post .listen-link {
  color: var(--pink);
  font-weight: 700;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-decoration: none;
}

body.single-post .point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
body.single-post .point-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-soft);
  flex-shrink: 0;
}
body.single-post .point h3 { margin: 0 0 6px 0; }
body.single-post .point p { margin: 0; }

body.single-post .sidebar-box {
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 22px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
body.single-post .sidebar-box.dark { background: var(--ink); color: #fff; }
body.single-post .sidebar-box.dark h4 { color: var(--pink); }
body.single-post .sidebar-box.light { background: var(--pink-soft); }
body.single-post .sidebar-box.light h4 { color: var(--pink); }
body.single-post .sidebar-cta {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
}

body.single-post .banner-wrap { margin-top: 20px; }
body.single-post .banner {
  background: var(--pink-soft);
  border-radius: 12px;
  padding: 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
body.single-post .banner h4 { color: var(--pink); margin-top: 0; }
body.single-post .banner-btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 700;
}