/* ==========================================================================
   THE BOOKS REVIEW - Visual Identity Stylesheet (Scoped)
   Version: 2.0
   Date: February 2026

   Scope: Blog single posts (body.single-post) and blog listing (body.blog, body.home).
   Does NOT affect Divi Builder pages, WP pages, or product archive pages.

   Replaces v1.0 readability-only stylesheet with full visual identity refresh.
   ========================================================================== */


/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   Global :root variables - safe because they're only consumed by scoped rules.
   ========================================================================== */

:root {
  /* Backgrounds */
  --tbr-cream:            #FDF6EC;
  --tbr-cream-deep:       #F5ECDB;
  --tbr-parchment:        #F0E6D3;
  --tbr-white:            #FFFFFF;

  /* Browns (primary) */
  --tbr-warm-brown:       #5C4033;
  --tbr-rich-brown:       #3E2723;

  /* Amber (accent) */
  --tbr-amber:            #D4930D;
  --tbr-amber-light:      #F2C94C;
  --tbr-amber-glow:       #FFF3D6;
  --tbr-amber-hover:      #C0850B;

  /* Sage (positive / book reviews) */
  --tbr-sage:             #7A8B6F;
  --tbr-sage-light:       #E8EDE5;
  --tbr-sage-deep:        #5A6B4F;

  /* Dusty Rose (caveats / anime badge) */
  --tbr-dusty-rose:       #C08B8B;
  --tbr-dusty-rose-light: #F5E8E8;

  /* Text */
  --tbr-ink:              #2C1810;
  --tbr-text:             #3D2B1F;
  --tbr-text-light:       #6B5744;
  --tbr-text-muted:       #9A8672;

  /* Borders & Shadows */
  --tbr-border:           #E0D5C5;
  --tbr-shadow:           rgba(92, 64, 51, 0.08);
  --tbr-shadow-md:        rgba(92, 64, 51, 0.12);
  --tbr-shadow-lg:        rgba(92, 64, 51, 0.16);

  /* Typography */
  --tbr-font-serif:       'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --tbr-font-sans:        'Source Sans 3', 'Segoe UI', -apple-system, sans-serif;
  --tbr-font-handwriting: 'Caveat', cursive;

  /* Spacing */
  --tbr-radius-sm:        10px;
  --tbr-radius-md:        16px;
  --tbr-radius-lg:        20px;
  --tbr-radius-pill:      20px;
}


/* ==========================================================================
   2. SINGLE POST - Page Background
   ========================================================================== */

body.single-post {
  background-color: var(--tbr-cream) !important;
}


/* ==========================================================================
   2b. NAVIGATION BAR (on single posts)
   ========================================================================== */

body.single-post #main-header {
  background: var(--tbr-white) !important;
  border-bottom: 1px solid var(--tbr-border);
  box-shadow: 0 1px 8px var(--tbr-shadow);
}

body.single-post #top-menu a {
  font-family: var(--tbr-font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tbr-text-light);
  transition: color 0.2s ease;
}

body.single-post #top-menu a:hover {
  color: var(--tbr-amber);
}

body.single-post #top-menu .current-menu-item > a,
body.single-post #top-menu .current_page_item > a {
  color: var(--tbr-amber) !important;
}


/* ==========================================================================
   3. SINGLE POST - Typography
   ========================================================================== */

/* Content area base */
body.single-post .entry-content {
  font-family: var(--tbr-font-sans);
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--tbr-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Paragraphs */
body.single-post .entry-content p {
  font-family: var(--tbr-font-sans);
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--tbr-text);
  margin-bottom: 20px;
  margin-top: 0;
}

/* List items inherit */
body.single-post .entry-content li,
body.single-post .entry-content td,
body.single-post .entry-content th {
  font-family: var(--tbr-font-sans);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* H1 - Post Title */
body.single-post h1.entry-title {
  font-family: var(--tbr-font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--tbr-ink);
  line-height: 1.25;
  margin-bottom: 16px;
}

/* H2 - Section headings with amber left border */
body.single-post .entry-content h2,
body.single-post .entry-content h2.wp-block-heading {
  font-family: var(--tbr-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tbr-warm-brown);
  line-height: 1.35;
  margin-top: 44px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--tbr-amber);
}

/* First H2 should not have excessive top margin */
body.single-post .entry-content > h2:first-child,
body.single-post .entry-content > .wp-block-heading:first-child {
  margin-top: 0.5em;
}

/* H3 - Sub-section headings */
body.single-post .entry-content h3,
body.single-post .entry-content h3.wp-block-heading {
  font-family: var(--tbr-font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tbr-text);
  line-height: 1.4;
  margin-top: 32px;
  margin-bottom: 12px;
}

/* H4 (used in product card titles) */
body.single-post .entry-content h4,
body.single-post .entry-content h4.wp-block-heading {
  font-family: var(--tbr-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tbr-ink);
  line-height: 1.35;
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}

/* Meta text (dates, categories, read time) */
body.single-post .et_post_meta_wrapper .post-meta {
  font-family: var(--tbr-font-sans);
  font-size: 0.85rem;
  color: var(--tbr-text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 1.5em;
  line-height: 1.5;
}


/* ==========================================================================
   4. SINGLE POST - Links
   ========================================================================== */

body.single-post .entry-content a:not(.product-card__title-link):not(.tbr-btn):not(.product-gallery-title):not(.product-gallery-button) {
  color: var(--tbr-warm-brown);
  text-decoration-color: var(--tbr-border);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

body.single-post .entry-content a:not(.product-card__title-link):not(.tbr-btn):not(.product-gallery-title):not(.product-gallery-button):hover {
  color: var(--tbr-amber);
}


/* ==========================================================================
   5. SINGLE POST - Lists
   ========================================================================== */

body.single-post .entry-content ul,
body.single-post .entry-content ol {
  margin-top: 1em;
  margin-bottom: 1.5em;
  padding-left: 1.75em;
  line-height: 1.8;
}

body.single-post .entry-content li {
  margin-bottom: 0.5em;
  padding-left: 0.25em;
}

body.single-post .entry-content li ul,
body.single-post .entry-content li ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

body.single-post .entry-content li li {
  margin-bottom: 0.35em;
}


/* ==========================================================================
   6. SINGLE POST - Blockquotes
   ========================================================================== */

body.single-post .entry-content blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid var(--tbr-amber);
  background: var(--tbr-amber-glow);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.7;
  border-radius: 0 var(--tbr-radius-sm) var(--tbr-radius-sm) 0;
}

body.single-post .entry-content blockquote p {
  margin-bottom: 0.75em;
  color: var(--tbr-text-light);
}

body.single-post .entry-content blockquote p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   7. SINGLE POST - HR / Separators (styled with book emoji)
   ========================================================================== */

body.single-post .entry-content hr,
body.single-post .entry-content .wp-block-separator {
  border: none;
  height: 1px;
  background: var(--tbr-border);
  margin: 36px auto;
  max-width: 100px;
  position: relative;
  overflow: visible;
}

body.single-post .entry-content hr::before,
body.single-post .entry-content .wp-block-separator::before {
  content: '\1F4D6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--tbr-cream);
  padding: 0 10px;
  font-size: 0.9rem;
}


/* ==========================================================================
   8. SINGLE POST - Images & Figures
   ========================================================================== */

body.single-post .entry-content .wp-block-image,
body.single-post .entry-content figure {
  margin-top: 2em;
  margin-bottom: 2em;
}

body.single-post .entry-content .wp-block-image figcaption,
body.single-post .entry-content figure figcaption {
  font-family: var(--tbr-font-sans);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--tbr-text-muted);
  margin-top: 0.5em;
}


/* ==========================================================================
   9. SINGLE POST - Product Cards (restyled)
   Targets the existing .product-card class from [product_by_item_id] shortcode.
   ========================================================================== */

body.single-post .product-card {
  background: var(--tbr-white);
  border-radius: var(--tbr-radius-lg);
  overflow: hidden;
  margin: 36px 0;
  border: 1px solid var(--tbr-border);
  box-shadow: 0 4px 20px var(--tbr-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 0;
  position: relative;
}

body.single-post .product-card:hover {
  box-shadow: 0 8px 36px var(--tbr-shadow-lg);
  transform: translateY(-2px);
}

/* Inner grid layout */
body.single-post .product-card .product-card__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 260px;
}

/* Image column */
body.single-post .product-card .product-card__image {
  background: var(--tbr-cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

body.single-post .product-card .product-card__image img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
  width: auto;
  height: auto;
}

/* Content column */
body.single-post .product-card .product-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

/* Badge */
body.single-post .product-card .product-badge {
  position: static;
  display: inline-block;
  background: var(--tbr-amber);
  color: var(--tbr-white);
  font-family: var(--tbr-font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--tbr-radius-pill);
  margin-bottom: 10px;
  width: fit-content;
  top: auto;
  left: auto;
  line-height: 1.4;
  z-index: auto;
}

/* Title */
body.single-post .product-card .product-card__title {
  font-family: var(--tbr-font-serif);
  font-size: 1.2rem;
  color: var(--tbr-ink);
  margin-bottom: 10px;
  line-height: 1.35;
  margin-top: 0;
  border-left: none;
  padding-left: 0;
}

body.single-post .product-card .product-card__title-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

body.single-post .product-card .product-card__title-link:hover {
  color: var(--tbr-amber);
}

/* Verdict Chips */
body.single-post .product-card .product-card__verdicts {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

body.single-post .product-card .tbr-verdict {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  border-radius: var(--tbr-radius-sm);
  font-family: var(--tbr-font-sans);
  font-size: 0.82rem;
  line-height: 1.45;
}

body.single-post .product-card .tbr-verdict--pro {
  background: var(--tbr-sage-light);
  color: var(--tbr-sage-deep);
}

body.single-post .product-card .tbr-verdict--con {
  background: var(--tbr-dusty-rose-light);
  color: #8B5E5E;
}

body.single-post .product-card .tbr-verdict__icon {
  margin-right: 4px;
  font-style: normal;
}

/* Card Footer */
body.single-post .product-card .product-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
}

/* CTA Button */
body.single-post .product-card .tbr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tbr-amber);
  color: var(--tbr-white);
  font-family: var(--tbr-font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--tbr-radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

body.single-post .product-card .tbr-btn:hover {
  background: var(--tbr-amber-hover);
  color: var(--tbr-white);
  transform: translateY(-1px);
}

body.single-post .product-card .tbr-btn svg {
  width: 14px;
  height: 14px;
}

/* Product card mobile */
@media (max-width: 640px) {
  body.single-post .product-card .product-card__inner {
    grid-template-columns: 1fr;
  }

  body.single-post .product-card .product-card__image {
    padding: 20px;
  }

  body.single-post .product-card .product-card__image img {
    max-height: 180px;
  }

  body.single-post .product-card .product-card__content {
    padding: 20px;
  }

  body.single-post .product-card .product-card__verdicts {
    flex-direction: column;
  }

  body.single-post .product-card .tbr-verdict {
    min-width: auto;
  }

  body.single-post .product-card .product-card__footer {
    justify-content: stretch;
  }

  body.single-post .product-card .tbr-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
  }
}


/* ==========================================================================
   10. SINGLE POST - Product Gallery Grid
   ========================================================================== */

body.single-post .product-gallery-grid {
  margin-top: 2em;
  margin-bottom: 2.5em;
}


/* ==========================================================================
   11. SINGLE POST - Author Trust Bar
   ========================================================================== */

body.single-post .tbr-author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tbr-border);
}

body.single-post .tbr-author-bar__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tbr-sage), var(--tbr-sage-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbr-white);
  font-family: var(--tbr-font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}

body.single-post .tbr-author-bar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.single-post .tbr-author-bar__info {
  flex: 1;
}

body.single-post .tbr-author-bar__name {
  font-family: var(--tbr-font-sans);
  font-weight: 600;
  color: var(--tbr-warm-brown);
  font-size: 0.95rem;
}

body.single-post .tbr-author-bar__tagline {
  font-size: 0.8rem;
  color: var(--tbr-text-muted);
  font-style: italic;
}

body.single-post .tbr-author-bar__date {
  font-size: 0.8rem;
  color: var(--tbr-text-muted);
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  body.single-post .tbr-author-bar {
    flex-wrap: wrap;
  }

  body.single-post .tbr-author-bar__date {
    width: 100%;
    text-align: left;
    padding-left: 64px;
    margin-top: -8px;
  }
}


/* ==========================================================================
   12. SINGLE POST - Table of Contents (pill-style)
   ========================================================================== */

body.single-post .tbr-toc {
  background: var(--tbr-white);
  border: 1px solid var(--tbr-border);
  border-radius: var(--tbr-radius-md);
  padding: 24px 28px;
  margin: 28px 0 36px;
  box-shadow: 0 2px 12px var(--tbr-shadow);
}

body.single-post .tbr-toc__title {
  font-family: var(--tbr-font-serif);
  font-size: 0.9rem;
  color: var(--tbr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

body.single-post .tbr-toc__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

body.single-post .tbr-toc__list li a {
  display: inline-block;
  font-family: var(--tbr-font-sans);
  font-size: 0.85rem;
  color: var(--tbr-warm-brown);
  text-decoration: none;
  padding: 5px 14px;
  border-radius: var(--tbr-radius-pill);
  background: var(--tbr-cream);
  border: 1px solid var(--tbr-border);
  transition: all 0.2s ease;
}

body.single-post .tbr-toc__list li a:hover {
  background: var(--tbr-amber-glow);
  border-color: var(--tbr-amber);
  color: var(--tbr-amber);
}


/* ==========================================================================
   13. SINGLE POST - Callout Box ("George's Take")
   ========================================================================== */

body.single-post .tbr-callout {
  background: var(--tbr-amber-glow);
  border-left: 4px solid var(--tbr-amber);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
  position: relative;
}

body.single-post .tbr-callout::before {
  content: attr(data-emoji);
  position: absolute;
  top: -12px;
  left: 12px;
  font-size: 1.4rem;
  background: var(--tbr-amber-glow);
  padding: 0 6px;
}

body.single-post .tbr-callout__label {
  font-family: var(--tbr-font-handwriting);
  font-size: 1.15rem;
  color: var(--tbr-amber);
  font-weight: 700;
  margin-bottom: 4px;
}

body.single-post .tbr-callout p {
  font-size: 0.98rem !important;
  margin-bottom: 0 !important;
  color: var(--tbr-text-light);
}


/* ==========================================================================
   14. SINGLE POST - FAQ Section (Yoast Schema) with Q badges
   ========================================================================== */

body.single-post .schema-faq {
  margin-top: 2.5em;
  margin-bottom: 2em;
}

body.single-post .schema-faq-section {
  padding: 16px 0;
  border-bottom: 1px solid var(--tbr-border);
}

body.single-post .schema-faq-section:first-child {
  border-top: 1px solid var(--tbr-border);
}

body.single-post .schema-faq-section:last-child {
  border-bottom: none;
}

body.single-post .schema-faq-question {
  font-family: var(--tbr-font-serif);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--tbr-ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

body.single-post .schema-faq-question::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--tbr-amber);
  color: var(--tbr-white);
  border-radius: 5px;
  font-family: var(--tbr-font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

body.single-post .schema-faq-answer {
  font-size: 0.92rem;
  color: var(--tbr-text-light);
  line-height: 1.7;
  padding-left: 32px;
}

body.single-post .schema-faq-answer p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.75em;
}

body.single-post .schema-faq-answer p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   15. SINGLE POST - Jump Links / Early UL
   ========================================================================== */

body.single-post .entry-content > ul:first-of-type {
  margin-top: 1em;
  margin-bottom: 2em;
  padding: 1.25em 1.25em 1.25em 2.5em;
  background: var(--tbr-white);
  border-radius: var(--tbr-radius-sm);
  border: 1px solid var(--tbr-border);
  border-left: 4px solid var(--tbr-amber);
}


/* ==========================================================================
   16. SINGLE POST - Tables
   ========================================================================== */

body.single-post .entry-content table {
  margin-top: 1.5em;
  margin-bottom: 2em;
  border-collapse: collapse;
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.6;
}

body.single-post .entry-content th,
body.single-post .entry-content td {
  padding: 12px 16px;
  border: 1px solid var(--tbr-border);
  text-align: left;
}

body.single-post .entry-content th {
  background: var(--tbr-cream-deep);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tbr-warm-brown);
}

body.single-post .entry-content tr:nth-child(even) {
  background: var(--tbr-cream);
}


/* ==========================================================================
   17. SINGLE POST - Content Width
   ========================================================================== */

body.single-post #left-area {
  max-width: 780px;
}

body.single-post:not(.et_right_sidebar) #left-area {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
   18. SINGLE POST - Related & Tip Boxes
   ========================================================================== */

body.single-post .related-box {
  background: var(--tbr-cream);
  padding: 20px;
  border-radius: var(--tbr-radius-sm);
  margin: 2em 0;
  border: 1px solid var(--tbr-border);
}

body.single-post .related-box h3 {
  color: var(--tbr-warm-brown);
  margin: 0 0 10px 0;
  font-family: var(--tbr-font-serif);
}

body.single-post .related-box a {
  color: var(--tbr-warm-brown);
}

body.single-post .related-box a:hover {
  color: var(--tbr-amber);
}

body.single-post .tip-box {
  background: var(--tbr-amber-glow);
  padding: 15px;
  border-radius: var(--tbr-radius-sm);
  margin: 1.75em 0;
  border-left: 3px solid var(--tbr-amber);
}

body.single-post .tip-box a {
  color: var(--tbr-warm-brown);
}


/* ==========================================================================
   19. SINGLE POST - Author Box & WP Block spacing
   ========================================================================== */

body.single-post .entry-content .wp-block-block {
  margin-top: 3em;
  margin-bottom: 2em;
}

body.single-post .entry-content .wp-block-group {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

body.single-post .entry-content .wp-block-spacer {
  min-height: 24px;
}


/* ==========================================================================
   20. SINGLE POST - Featured Image
   ========================================================================== */

body.single-post .et_post_thumbnail {
  border-radius: var(--tbr-radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px var(--tbr-shadow-md);
}

body.single-post .et_post_thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}


/* ==========================================================================
   21. MOBILE RESPONSIVE - Tablet (max-width: 980px)
   ========================================================================== */

@media (max-width: 980px) {
  body.single-post .entry-content {
    font-size: 1rem;
    line-height: 1.7;
  }

  body.single-post .entry-content p,
  body.single-post .entry-content li {
    font-size: 1rem;
  }

  body.single-post h1.entry-title {
    font-size: 1.8rem;
  }

  body.single-post .entry-content h2,
  body.single-post .entry-content h2.wp-block-heading {
    font-size: 1.35rem;
    margin-top: 2em;
  }

  body.single-post .entry-content h3,
  body.single-post .entry-content h3.wp-block-heading {
    font-size: 1.05rem;
    margin-top: 1.75em;
  }

  body.single-post #left-area {
    max-width: 100%;
  }
}


/* ==========================================================================
   22. MOBILE RESPONSIVE - Phone (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
  body.single-post .entry-content {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  body.single-post .entry-content p,
  body.single-post .entry-content li {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  body.single-post .entry-content p {
    margin-bottom: 1.25em;
  }

  body.single-post h1.entry-title {
    font-size: 1.55rem;
    line-height: 1.3;
  }

  body.single-post .entry-content h2,
  body.single-post .entry-content h2.wp-block-heading {
    font-size: 1.25rem;
    margin-top: 1.75em;
    margin-bottom: 0.6em;
  }

  body.single-post .entry-content h3,
  body.single-post .entry-content h3.wp-block-heading {
    font-size: 1.05rem;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }

  body.single-post .schema-faq-question {
    font-size: 1.05rem;
  }

  body.single-post .schema-faq-answer p {
    font-size: 0.95rem;
  }

  body.single-post .entry-content > ul:first-of-type {
    padding: 1em 1em 1em 2em;
  }

  body.single-post .entry-content blockquote {
    margin: 1.5em 0;
    padding: 0.75em 1em;
  }

  body.single-post .entry-content table {
    display: block;
    overflow-x: auto;
    font-size: 0.88rem;
  }

  body.single-post .et_post_thumbnail {
    border-radius: var(--tbr-radius-sm);
  }

  body.single-post .tbr-toc {
    padding: 18px 20px;
  }
}


/* ==========================================================================
   23. SINGLE POST - Show Section Wrapper
   ========================================================================== */

body.single-post .tbr-show {
  background: var(--tbr-white);
  border: 1px solid var(--tbr-border);
  border-radius: var(--tbr-radius-lg);
  padding: 30px 32px;
  margin: 28px 0;
  box-shadow: 0 2px 16px var(--tbr-shadow);
}

body.single-post .tbr-show__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

body.single-post .tbr-show__title {
  font-family: var(--tbr-font-serif);
  font-size: 1.3rem;
  color: var(--tbr-warm-brown);
  margin: 0;
  padding-left: 0;
  border-left: none;
  line-height: 1.3;
}

/* Age badges */
body.single-post .tbr-age {
  display: inline-flex;
  font-family: var(--tbr-font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

body.single-post .tbr-age--all {
  background: var(--tbr-sage-light);
  color: var(--tbr-sage-deep);
}

body.single-post .tbr-age--10 {
  background: #E0F0E8;
  color: #3D7A5A;
}

body.single-post .tbr-age--12 {
  background: #E3ECF6;
  color: #3E6B9E;
}

body.single-post .tbr-age--13 {
  background: var(--tbr-amber-glow);
  color: #9A6B00;
}

body.single-post .tbr-age--16 {
  background: var(--tbr-dusty-rose-light);
  color: #8B4E4E;
}

/* Nested content within show sections */
body.single-post .tbr-show p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

body.single-post .tbr-show .product-card {
  margin: 22px 0 6px;
}

@media (max-width: 640px) {
  body.single-post .tbr-show {
    padding: 22px 18px;
  }
}


/* ==========================================================================
   24. SINGLE POST - Info-Line Rows
   ========================================================================== */

body.single-post .tbr-info-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--tbr-cream);
  border-radius: var(--tbr-radius-sm);
  margin: 10px 0;
  font-family: var(--tbr-font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
}

body.single-post .tbr-info-line strong {
  color: var(--tbr-warm-brown);
  white-space: nowrap;
  min-width: 110px;
  flex-shrink: 0;
}

@media (max-width: 500px) {
  body.single-post .tbr-info-line {
    flex-direction: column;
    gap: 4px;
  }

  body.single-post .tbr-info-line strong {
    min-width: unset;
  }
}


/* ==========================================================================
   25. SINGLE POST - Warning Block
   ========================================================================== */

body.single-post .tbr-warning {
  background: #FFF5F5;
  border-left: 4px solid var(--tbr-dusty-rose);
  border-radius: 0 var(--tbr-radius-md) var(--tbr-radius-md) 0;
  padding: 18px 22px;
  margin: 24px 0;
  position: relative;
}

body.single-post .tbr-warning::before {
  content: '\26A0\FE0F';
  position: absolute;
  top: -11px;
  left: 11px;
  font-size: 1.1rem;
  background: #FFF5F5;
  padding: 0 5px;
}

body.single-post .tbr-warning__label {
  font-family: var(--tbr-font-handwriting);
  font-size: 1.05rem;
  color: var(--tbr-dusty-rose);
  font-weight: 700;
  margin-bottom: 6px;
}

body.single-post .tbr-warning p {
  font-size: 0.93rem !important;
  color: var(--tbr-text-light);
  margin-bottom: 8px !important;
}

body.single-post .tbr-warning p:last-child {
  margin-bottom: 0 !important;
}


/* ==========================================================================
   26. SINGLE POST - Cross-Link Card
   ========================================================================== */

body.single-post .tbr-xlink {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--tbr-cream-deep);
  border: 1px solid var(--tbr-border);
  border-radius: var(--tbr-radius-md);
  padding: 13px 18px;
  margin: 14px 0;
  text-decoration: none;
  transition: all 0.25s ease;
}

body.single-post .tbr-xlink:hover {
  border-color: var(--tbr-amber);
  box-shadow: 0 3px 14px var(--tbr-shadow-md);
  transform: translateY(-1px);
}

body.single-post .tbr-xlink__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

body.single-post .tbr-xlink__label {
  font-size: 0.88rem;
  color: var(--tbr-warm-brown);
  font-weight: 600;
  flex: 1;
}

body.single-post .tbr-xlink__arrow {
  color: var(--tbr-amber);
  font-size: 0.82rem;
  flex-shrink: 0;
}


/* ==========================================================================
   27. SINGLE POST - Streaming Comparison Grid
   ========================================================================== */

body.single-post .tbr-streams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}

body.single-post .tbr-stream {
  background: var(--tbr-white);
  border: 1px solid var(--tbr-border);
  border-radius: var(--tbr-radius-md);
  padding: 20px 18px;
  transition: all 0.25s ease;
}

body.single-post .tbr-stream:hover {
  border-color: var(--tbr-amber);
  box-shadow: 0 4px 16px var(--tbr-shadow-md);
}

body.single-post .tbr-stream__name {
  font-family: var(--tbr-font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

body.single-post .tbr-stream__price {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

body.single-post .tbr-stream__desc {
  font-size: 0.83rem;
  color: var(--tbr-text-light);
  line-height: 1.55;
}

@media (max-width: 640px) {
  body.single-post .tbr-streams {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   28. PRINT STYLES
   ========================================================================== */

@media print {
  body.single-post .entry-content {
    font-size: 12pt;
    line-height: 1.6;
    color: #000;
  }

  body.single-post .product-card {
    break-inside: avoid;
    border: 1px solid #999;
    box-shadow: none;
  }

  body.single-post .product-card .tbr-btn {
    display: none;
  }

  body.single-post .tbr-author-bar {
    border-bottom-color: #999;
  }

  body.single-post .tbr-show {
    box-shadow: none;
    border: 1px solid #999;
  }

  body.single-post .tbr-xlink {
    display: none;
  }

  body.single-post .tbr-streams {
    display: block;
  }

  body.single-post .tbr-stream {
    border: 1px solid #999;
    margin-bottom: 8px;
  }
}
