/* ==========================================================================
   Single post — modern reading layout (podcast episodes & blog articles).
   Reuses .art-* card styles (articles.css) for the "More" grid.
   ========================================================================== */
.sp { background: #fff; color: var(--rf-ink); font-family: "Plus Jakarta Sans", system-ui, sans-serif; }
.sp .container { width: min(1140px, 92%); margin-inline: auto; }

/* nav rides transparent over the dark hero (like the home page) */
body.single .rf-nav { position: fixed; }
body.single .rf-nav:not(.rf-scrolled) { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
body.single .rf-nav:not(.rf-scrolled) .rf-brand__logo { filter: brightness(0) invert(1); }
body.single .rf-nav:not(.rf-scrolled) .rf-nav__links a { color: rgba(255, 255, 255, .92); }
body.single .rf-nav:not(.rf-scrolled) .rf-nav__toggle span { background: #fff; }

/* ---------- Hero ---------- */
.sp-hero { position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: 140px 0 150px;
  background: radial-gradient(120% 120% at 80% 0%, #2f2f33 0%, #1c1c1e 55%, #141416 100%); }
.sp-hero::before { content: ""; position: absolute; top: -120px; right: -70px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(244,123,32,.5), transparent 62%); pointer-events: none; }
.sp-hero::after { content: ""; position: absolute; bottom: -140px; left: -90px; width: 360px; height: 360px;
  border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,154,61,.28), transparent 62%); pointer-events: none; }
.sp-back { position: relative; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  color: rgba(255,255,255,.7); font-weight: 600; font-size: .9rem; }
.sp-back:hover { color: var(--rf-orange-2); }
.sp-back svg { transition: transform .3s var(--rf-ease); }
.sp-back:hover svg { transform: translateX(-4px); }
.sp-eyebrow { position: relative; text-transform: uppercase; letter-spacing: .24em; font-size: .74rem;
  font-weight: 700; color: var(--rf-orange-2); margin-bottom: 16px; }
.sp-hero h1 { position: relative; font-family: "Sora", sans-serif; font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.18; letter-spacing: -.02em; max-width: 22ch; margin: 0 auto; }
.sp-meta { position: relative; margin-top: 20px; display: flex; gap: 12px; justify-content: center;
  align-items: center; color: rgba(255,255,255,.55); font-size: .88rem; }
.sp-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rf-orange); }

/* ---------- Cover (featured image, shown in full — no crop) ---------- */
.sp-cover { position: relative; max-width: 940px; margin: -110px auto 0; border-radius: 22px;
  overflow: hidden; line-height: 0; box-shadow: 0 44px 96px -38px rgba(0,0,0,.65); }
.sp-cover img { width: 100%; height: auto; display: block; }

/* ---------- Body / content ---------- */
.sp-body { padding: 64px 0 80px; }
.sp-content { max-width: 760px; margin-inline: auto; font-size: 1.06rem; line-height: 1.8; color: #34343c; }
.sp-content > * { margin-bottom: 1.35em; }
.sp-content > *:last-child { margin-bottom: 0; }
.sp-content h2 { font-family: "Sora", sans-serif; font-size: 1.6rem; line-height: 1.25; margin: 1.6em 0 .25em; color: var(--rf-ink); }
.sp-content h3 { font-family: "Sora", sans-serif; font-size: 1.3rem; margin: 1.4em 0 .25em; color: var(--rf-ink); }
.sp-content a { color: var(--rf-orange); text-decoration: underline; text-underline-offset: 3px; }
.sp-content strong { color: var(--rf-ink); }
.sp-content img { max-width: 100%; height: auto; border-radius: 14px; display: block; }
/* podcasts embed a Spotify player (short, fixed height) — keep its own height;
   video oEmbeds get a 16/9 wrapper from WP's responsive-embeds support. */
.sp-content iframe { width: 100%; max-width: 100%; border: 0; border-radius: 14px; }
.sp-content iframe[src*="spotify"] { min-height: 152px; border-radius: 14px; }
.sp-content .wp-block-embed, .sp-content figure { margin-block: 1.6em; }
.sp-content .wp-block-embed iframe { width: 100%; }
.sp-content ul, .sp-content ol { padding-left: 1.3em; }
.sp-content li { margin-bottom: .5em; }
.sp-content blockquote { border-left: 4px solid var(--rf-orange); margin: 1.6em 0; padding: 4px 0 4px 22px;
  font-style: italic; color: var(--rf-ink); font-size: 1.15rem; }

/* ---------- Share ---------- */
.sp-share { max-width: 760px; margin: 44px auto 0; display: flex; align-items: center; gap: 14px;
  border-top: 1px solid #eee; padding-top: 28px; }
.sp-share span { font-weight: 700; font-size: .85rem; color: var(--rf-muted); }
.sp-share a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: #f4f1ec; border: 1px solid rgba(0,0,0,.06); transition: background .3s, transform .3s var(--rf-ease); }
.sp-share a:hover { background: var(--rf-orange); transform: translateY(-3px); }
.sp-share a img { width: 16px; height: 16px; filter: brightness(0); opacity: .75; transition: filter .3s, opacity .3s; }
.sp-share a:hover img { filter: brightness(0) invert(1); opacity: 1; }

/* ---------- More from this category ---------- */
.sp-more { background: #f7f5f2; padding: 78px 0 96px; }
.sp-more__head { text-align: center; margin-bottom: 44px; }
.sp-more__head h2 { font-family: "Sora", sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); }

@media (max-width: 640px) {
  .sp-hero { padding: 120px 0 118px; }
  .sp-cover { margin-top: -80px; border-radius: 16px; }
  .sp-body { padding: 46px 0 60px; }
}
