<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* ============================
   THE SHOW HOLE — CLEAN CSS
   (consolidated + poster fix)
============================ */

/* ============================
   DESIGN TOKENS
============================ */
:root {
  --sh-bg: #05050a;
  --sh-bg-alt: #0f1018;
  --sh-accent: #ff375f;
  --sh-text: #f5f5f7;
  --sh-muted: #a0a2b3;
  --sh-card: #151623;
  --sh-border: #27283a;
  --sh-radius: 12px;
  --sh-radius-lg: 18px;
  --sh-gap: 1.5rem;
  --sh-max-width: 1200px;
}

/* ============================
   GLOBAL RESET / BASE
============================ */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151623 0, #05050a 55%);
  color: var(--sh-text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* Layout shell */
.sh-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sh-main { flex: 1; }

.sh-container {
  max-width: var(--sh-max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================
   CUSTOM HEADER
============================ */
.sh-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(230, 0, 35, 0.25), rgba(5, 5, 10, 0.95) 70%);
  border-bottom: 4px solid #e60023;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.15);
}

/* Desktop header layout: logo | nav | search */
.sh-header-inner {
  max-width: var(--sh-max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.sh-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: start;
}

.sh-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  font-size: 0.95rem;
}

/* Header links in white with red hover underline */
.sh-header .sh-nav a {
  position: relative;
  color: #ffffff;
}

.sh-header .sh-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--sh-accent);
  transition: width 0.18s ease-out;
}

.sh-header .sh-nav a:hover { color: #ff2c2c; }
.sh-header .sh-nav a:hover::after { width: 100%; }

/* Search */
.sh-search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}

.sh-search-input {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(5, 5, 10, 0.9);
  color: #fff;
  font-size: 0.9rem;
  min-width: 170px;
}

.sh-search-input::placeholder { color: rgba(255, 255, 255, 0.6); }

.sh-search-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.95rem;
  padding: 0.3rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.sh-search-btn span { font-size: 1.1rem; color: #ffffff; }

/* Use image logo, hide any theme text logo/tagline */
.sh-header-left .sh-logo,
.sh-header-left .sh-tagline {
  display: none !important;
}

/* Logo image sizing */
.sh-logo-image img,
.custom-logo,
.custom-logo-link img,
.wp-block-site-logo img,
.wp-site-logo img,
header .site-logo img,
header .custom-logo {
  max-width: 180px !important;
  height: auto !important;
  width: auto !important;
  display: block !important;
}

/* Subtitle under menu */
.sh-header-subtitle {
  font-size: 2rem;
  font-style: italic;
  color: #ffffff;
  text-align: center;
  margin-top: -50px;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* ============================
   HERO SECTION (Homepage)
============================ */
.sh-hero { padding: 3.5rem 0 2.5rem; }

.sh-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.sh-hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-accent);
  margin-bottom: 0.4rem;
}

.sh-hero-title {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.sh-hero-subtitle {
  font-size: 1rem;
  color: var(--sh-muted);
  max-width: 32rem;
  margin-bottom: 1.3rem;
}

/* Hero CTAs */
.sh-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.sh-hero-ctas a {
  background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
  color: #000;
  border: none !important;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 700 !important;
  display: inline-block;
}

.sh-hero-ctas a + a { margin-left: 1rem; }

.sh-cta-disabled {
  cursor: default;
  opacity: 0.75;
  pointer-events: none;
}

.sh-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.8rem;
  color: var(--sh-muted);
}

.sh-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hero visual */
.sh-hero-visual {
  background: radial-gradient(circle at top, #2a2640 0, #151623 35%, #05050a 90%);
  border-radius: var(--sh-radius-lg);
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.6);
}

.sh-hero-streaming {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--sh-muted);
  margin-bottom: 0.7rem;
}

.sh-hero-streaming span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hero posters – allow real images */
.sh-hero-posters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.sh-hero-poster {
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.sh-hero-poster-image { padding: 0; overflow: hidden; position: relative; }

.sh-hero-poster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.sh-hero-poster-image span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

/* ============================
   GENERIC SECTIONS
============================ */
.sh-section { padding: 2.5rem 0; }

.sh-section-header { margin-bottom: 1.5rem; }

.sh-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.sh-section-subtitle {
  font-size: 0.95rem;
  color: var(--sh-muted);
  margin: 0;
}

/* ============================
   GRIDS + CARDS (Browse/New)
============================ */
.sh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.sh-card {
  background: var(--sh-card);
  border-radius: var(--sh-radius);
  border: 1px solid var(--sh-border);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sh-card-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #111;
}

.sh-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-card-title { font-size: 1rem; font-weight: 600; }

.sh-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--sh-muted);
}

.sh-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sh-card-vibe { font-size: 0.85rem; color: var(--sh-muted); }

.sh-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.sh-link-muted {
  font-size: 0.9rem;
  color: var(--sh-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================
   FILTER TOOLBAR (Browse/New)
============================ */
.sh-filter-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--sh-accent);
}

/* Reduce space above filter on New Releases page */
.sh-main > .sh-section:first-of-type + .sh-section .sh-filter-title {
  margin-top: -40px !important;
}

/* Toolbar layout */
.sh-browse-toolbar {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: flex-start;
}

.sh-browse-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
}

.sh-browse-sort { display: flex; align-items: flex-start; }

/* Dropdown styling */
.sh-select {
  background: rgba(5, 5, 10, 0.9);
  border-radius: 999px;
  border: 1px solid var(--sh-border);
  color: var(--sh-text);
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  outline: none;
}

/* Browse All Shows page spacing tweaks */
.page-id-9 .sh-browse-toolbar { margin-bottom: 2.5rem !important; }
.page-id-9 .sh-grid { margin-top: 1rem !important; }

/* ============================
   TWO-COLUMN EXPLAINER (About sections)
============================ */
.sh-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.sh-explainer-text {
  font-size: 0.98rem;
  color: var(--sh-muted);
  margin-bottom: 1.2rem;
}

.sh-explainer-text li strong { color: #ffffff !important; }

.sh-explainer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--sh-accent);
}

/* Explainer visual */
.sh-explainer-visual {
  border-radius: var(--sh-radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  padding: 1.2rem;
  font-size: 0.9rem;
  color: var(--sh-muted);
  text-align: center;
}

/* ============================
   FEATURED CATEGORIES
============================ */
.sh-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.sh-category-card {
  background: var(--sh-card);
  border-radius: var(--sh-radius);
  border: 1px solid var(--sh-border);
  padding: 0.9rem 0.95rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

.sh-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.6);
  border-color: var(--sh-accent);
}

.sh-category-label { font-size: 0.95rem; font-weight: 600; }
.sh-category-caption { font-size: 0.85rem; color: var(--sh-muted); }

/* ============================
   NEWSLETTER
============================ */
.sh-newsletter { padding: 2.25rem 0 2.75rem; }

.sh-newsletter-inner {
  background: linear-gradient(135deg, rgba(255, 55, 95, 0.12), rgba(120, 93, 255, 0.16));
  border-radius: var(--sh-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  align-items: center;
  justify-content: space-between;
}

.sh-newsletter-text { max-width: 26rem; }

.sh-newsletter-title {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.sh-newsletter-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--sh-muted);
}

.sh-newsletter-form { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.sh-input {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(5, 5, 10, 0.8);
  color: var(--sh-text);
  min-width: 220px;
}

.sh-input::placeholder { color: rgba(245, 245, 247, 0.55); }

/* ============================
   REVIEW DETAIL PAGES
============================ */
.sh-detail-hero { padding-top: 3rem; }

.sh-show-title,
.sh-detail-hero .sh-section-title {
  font-size: 2.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e63946;
  margin-bottom: 1.2rem;
}

/* Make any eyebrow labels white */
.sh-eyebrow,
.sh-section-eyebrow,
.sh-hero-eyebrow { color: #ffffff !important; }

/* Meta spacing under title */
.sh-detail-meta span { margin-right: 1.5rem !important; }

/* Make the score beside the show title white (if present) */
.sh-detail-hero .sh-section-title .sh-title-score { color: #ffffff !important; }

/* REVIEW: Poster with copy underneath */
.sh-review-hero { display: block; }

.sh-review-poster {
  max-width: 260px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.sh-review-poster img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.sh-review-intro { min-width: 0; max-width: none; }

/* Review Scores block (detail page) */
.sh-score-section { margin-top: 1.75rem; margin-bottom: 0.5rem; }
.sh-score-title { font-size: 2rem; font-weight: 700; margin: 0 0 0.7rem; }
.sh-score-stack { text-align: left; }
.sh-score-row { font-size: 2rem; font-weight: 600; line-height: 1.5; margin-bottom: 0.35rem; }

/* Keep review-page labels/value high contrast */
.sh-score-label,
.sh-score-value { color: #ffffff !important; }

.sh-subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #e63946;
}

/* ============================
   CUSTOM FOOTER BAR
============================ */
.sh-footer {
  background-color: #1a1a1c;
  padding: 12px 0;
  margin-top: 0;
}

.sh-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sh-footer-inner > div:first-child div {
  color: #ffffff !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  margin: 0;
}

.sh-footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }

.sh-footer-links a { color: #ffffff; font-size: 0.95rem; }
.sh-footer-links a:hover { text-decoration: underline; }

/* ============================
   CONTACT PAGE TWEAKS
============================ */
body.page-id-10 .sh-page { min-height: auto !important; }

body.page-id-10 .sh-main {
  flex: 0 0 auto !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body.page-id-10 .sh-section { padding-bottom: 1.5rem !important; }

.sh-textarea {
  border-radius: 12px !important;
  height: auto !important;
  min-height: 120px;
}

body.page-id-10 .sh-contact-form .sh-btn-primary { margin-top: 1rem !important; }

/* ============================
   RESPONSIVE ADJUSTMENTS
============================ */
@media (max-width: 900px) {
  .sh-hero-inner,
  .sh-two-col,
  .sh-grid,
  .sh-category-grid { grid-template-columns: minmax(0, 1fr); }

  .sh-hero { padding-top: 2.4rem; }

  .sh-browse-toolbar { flex-wrap: wrap; align-items: flex-start; }

  .sh-review-hero { flex-direction: column; align-items: center; }
  .sh-review-intro { max-width: 70ch; text-align: left; }
}

@media (max-width: 768px) {
  .sh-header { position: static; top: auto; }

  .sh-header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .sh-header-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .sh-logo-image img { max-width: 160px; height: auto; }

  .sh-search-form {
    width: 100%;
    max-width: none;
    order: 2;
    display: flex;
    gap: 0.5rem;
  }

  .sh-search-input { flex: 1; min-width: 0; }
  .sh-search-btn { white-space: nowrap; }

  .sh-nav {
    order: 3;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-left: 0;
    text-align: center;
    font-size: 0.9rem;
  }

  .sh-header-subtitle { margin-top: 0.5rem; }

  .sh-browse-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .sh-select { width: 100%; }

  .sh-show-title,
  .sh-detail-hero .sh-section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .sh-browse-filters { grid-template-columns: 1fr; }

  .sh-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0 1.25rem;
  }
}

/* ============================
   LINK STYLES
============================ */
.sh-link-teal {
  color: #4CC9F0;
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: 600;
}

.sh-link-teal:hover { color: #E63946; text-decoration: underline; }

.sh-link-red {
  color: #4CC9F0;
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: 600;
}

.sh-link-red:hover { color: #E63946; text-decoration: underline; }

/* ============================
   SAFETY OVERRIDES (DO NOT REMOVE)
============================ */
.wp-block-template-part,
header.wp-block-template-part,
footer.wp-block-template-part {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}

.sh-header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}

/* Hide the default WP Page Title block */
.wp-block-post-title,
.wp-block-query-title,
.entry-title,
.page-title { display: none !important; }

/* ============================
   FORM LAYOUT (stacked, with optional 2-col on desktop)
============================ */
.contact-form * { box-sizing: border-box; }

.contact-form form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.contact-form label { display: block; margin: 0 0 6px; }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="subject"],
.contact-form input,
.contact-form textarea {
  width: 100%;
  display: block;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button,
.contact-form input[type="submit"] {
  justify-self: start;
}

@media (min-width: 900px) {
  .contact-form form { grid-template-columns: 1fr 1fr; }

  .contact-form .field-subject,
  .contact-form .field-message,
  .contact-form .field-submit {
    grid-column: 1 / -1;
  }
}

/* CONTACT FORM: force clean stacking */
.sh-contact-form .sh-form-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.sh-contact-form .sh-field { min-width: 0; }
.sh-contact-form .sh-form-label { display:block; margin: 0 0 6px; }
.sh-contact-form .sh-input,
.sh-contact-form textarea { width:100%; display:block; }

.sh-contact-form .sh-textarea { min-height: 160px; resize: vertical; }

@media (min-width: 900px){
  .sh-contact-form .sh-form-grid{ grid-template-columns: 1fr 1fr; }
  .sh-contact-form .sh-field-full{ grid-column: 1 / -1; }
}

/* ============================
   FULL-BLEED HEADER/FOOTER
============================ */
.sh-header, .sh-footer { width: 100%; max-width: none; }

.sh-page,
.wp-site-blocks,
body { overflow-x: visible; }

header.sh-header,
footer.sh-footer {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

header.sh-header > .wp-block-group,
header.sh-header > .wp-block-group__inner-container,
header.sh-header > .sh-container,
footer.sh-footer > .wp-block-group,
footer.sh-footer > .wp-block-group__inner-container,
footer.sh-footer > .sh-container {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* ============================
   FIXED HEADER (desktop) + spacing
============================ */
:root { --sh-header-h: 140px; } /* adjust if needed */

@media (min-width: 900px) {
  header.sh-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: var(--sh-bg, #05050a) !important;
  }

  .sh-main { padding-top: calc(var(--sh-header-h) + 24px) !important; }
}

@media (max-width: 899px) {
  header.sh-header { position: static !important; }
  .sh-main { padding-top: 0 !important; }
}

/* ============================
   TEAL LINK HELPER
============================ */
.sh-link--teal {
  color: #4fd1c5;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sh-link--teal:hover {
  color: #7eeadf;
  text-decoration: underline;
}

/* ============================
   FIX: REVIEW POSTER WHITE SPACE / CARD-IN-CARD LOOK
============================ */
.sh-review-hero .sh-review-poster {
  width: 260px !important;
  max-width: 260px !important;
  aspect-ratio: 2 / 3 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 0 1.5rem 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 18px !important;
  flex-shrink: 0 !important;
}

.sh-review-hero .sh-review-poster > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

/* ============================
   CARD SCORES (icons + numbers only)
   - Always show all 3
   - Sorted score becomes dominant
   - Labels (Critics/Hers/His) are hidden
============================ */
.sh-card-meta{
  display:flex;
  align-items:center;
  gap:0.75rem;
  flex-wrap:wrap;
}

.sh-card-scores{
  display:flex;
  align-items:center;
  gap:0.55rem;
  flex-wrap:wrap;
}

/* Each score group */
.sh-score{
  display:inline-flex !important;
  align-items:center;
  gap:0.35rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

/* Hide card labels completely (Critics / Hers / His) */
.sh-card-scores .sh-score-label{
  display: none !important;
}

/* Value (if your markup uses .sh-score-value) */
.sh-score-value{
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
}

/* Default state: all equal */
.sh-card-scores[data-show="all"] .sh-score{
  opacity: 1;
  transform: none;
}

/* Muted baseline for non-selected in sorted modes */
.sh-card-scores[data-show="critics"] .sh-score,
.sh-card-scores[data-show="hers"] .sh-score,
.sh-card-scores[data-show="his"] .sh-score{
  opacity: 0.70;
  transform: scale(0.94);
  background: rgba(255,255,255,0.015);
  border-color: rgba(255,255,255,0.06);
}

/* Selected: pop it */
.sh-card-scores[data-show="critics"] .sh-score-critics,
.sh-card-scores[data-show="hers"] .sh-score-hers,
.sh-card-scores[data-show="his"] .sh-score-his{
  opacity: 1;
  transform: scale(1.08);
  background: rgba(255,55,95,0.12);
  border-color: rgba(255,55,95,0.55);
  box-shadow: 0 8px 18px rgba(255,55,95,0.12);
}

/* Make selected value a bit larger */
.sh-card-scores[data-show="critics"] .sh-score-critics .sh-score-value,
.sh-card-scores[data-show="hers"] .sh-score-hers .sh-score-value,
.sh-card-scores[data-show="his"] .sh-score-his .sh-score-value{
  font-size: 1.1rem;
}

/* Optional: tiny hover lift */
.sh-score:hover{
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.14);
}

/* =========================
   SEARCH DROPDOWN — anchor to header search box
========================= */
.sh-search-form{
  position: relative !important;
  z-index: 10001 !important;
}

.sh-search-results,
#sh-search-results{
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  left: auto !important;
  transform: none !important;

  width: min(420px, 92vw) !important;
  max-height: 60vh !important;
  overflow-y: auto !important;

  z-index: 10002 !important;
  background: rgba(10, 10, 14, 0.98) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 12px !important;
  box-shadow: 0 18px 50px rgba(0,0,0,0.65) !important;
}
.sh-score-legend{
  display:flex;
  align-items:center;
  gap: 0.9rem;
  margin: 0.75rem 0 1.25rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--sh-muted);
  font-size: 0.85rem;
}

.sh-score-legend-item{
  display:inline-flex;
  align-items:center;
  gap: 0.4rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
}

.sh-score-legend-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
}

.sh-score-legend-text{
  color: rgba(245,245,247,0.9);
  font-weight: 600;
}

/* Mobile: wrap cleanly */
@media (max-width: 768px){
  .sh-score-legend{
    flex-wrap: wrap;
    gap: 0.6rem;
  }
}
/* ============================
   FIX: Extra space between legend and grid
   (New Releases page only)
============================ */

/* Replace 123 with the NEW RELEASES page ID */
.page-id-31 .sh-score-legend {
  margin-bottom: 0.75rem; /* tighten space under legend */
}

.page-id-31 .sh-grid {
  margin-top: 0 !important; /* remove extra gap above cards */
}
/* ============================
   NEW RELEASES: tighten legend → grid spacing
   Page ID: 31
   (paste at VERY bottom so it wins)
============================ */
body.page-id-31 .sh-score-legend{
  margin-bottom: 0.6rem !important;   /* small, tidy */
}

/* The extra gap is usually section padding, so pull the grid up */
body.page-id-31 .sh-grid{
  margin-top: -1.50rem !important;    /* adjust: -0.75 to -1.75 if needed */
}

/* ============================
   AD SLOTS (after 12 / 24 cards)
============================ */

/* Make the injected ad block behave like a full-width row in the grid */
.sh-grid .sh-ad-slot.is-injected {
  grid-column: 1 / -1;      /* span all columns */
  width: 100%;
}

/* The visible ad box */
.sh-ad-slot {
  background: var(--sh-bg-alt);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-lg);
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Optional: subtle "Advertisement" label */
.sh-ad-slot::before {
  content: "Advertisement";
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-muted);
  margin-bottom: 0.75rem;
}

/* Inner container where your ad embed/shortcode will go */
.sh-ad-inner {
  min-height: 120px;        /* so you can see the slot even before you add an ad */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-muted);
}

/* If your ad script injects an iframe, keep it from overflowing */
.sh-ad-slot iframe,
.sh-ad-slot img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   HIDE AD SLOTS ON HOMEPAGE ONLY
============================================================ */

.home .sh-ad-slot,
.front-page .sh-ad-slot,
.page-home .sh-ad-slot {
  display: none !important;
}

/* ============================
   REVIEW SCORES — SIZE BOOST
============================ */

/* =========================================================
   REVIEW PAGE (ONLY) — BIG SCORE BLOCK
   Scope to the review header area so cards are unaffected
========================================================= */

.sh-detail-hero .sh-review-scores .sh-score-row{
  display:flex;
  align-items:center;
  gap: 1rem;
  margin-bottom: .6rem;
}

.sh-detail-hero .sh-review-scores .sh-score-label{
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--sh-text);
  min-width: 90px;
}

.sh-detail-hero .sh-review-scores .sh-score-value{
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--sh-text);
}

.sh-card-poster {
  aspect-ratio: 2 / 3;   /* Standard movie poster ratio */
  width: 100%;
  overflow: hidden;
  border-radius: 14px; /* match your card style */
}

.sh-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* crops slightly instead of distorting */
  display: block;
}

/* Force consistent poster sizing on Browse cards */
.sh-card .sh-card-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
}

/* Override inline height:auto and force fill */
.sh-card .sh-card-poster > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
/* Tighten space between poster/intro and He Said / She Said */
.sh-review-hero {
  margin-bottom: 1.5rem;
}

.sh-review-intro p:last-child {
  margin-bottom: 0.5rem;
}

.sh-verdict {
  margin-top: 0.5rem;
}

.sh-verdict h2 {
  margin-top: 0;
}

/* Section Title */
.sh-verdict h2 {
  margin-bottom: 1rem;
}

/* Individual speaker blocks */
.sh-verdict-col {
  background: rgba(255,255,255,0.03);
  padding: 1.25rem;
  border-left: 3px solid #ff3c3c;
  border-radius: 6px;
}

/* Speaker label */
.sh-speaker-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #ff3c3c;
  margin-bottom: 0.5rem;
}
.sh-speaker-label {
  color: #ffffff;
}
/* Fix h3 visibility inside review body */
.sh-detail-main h3 {
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* 2-col hero layout: poster/intro left, he/she right */
.sh-hero-split{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2.25rem;
  align-items: start;
}

/* Keep your existing poster styling */
.sh-hero-left .sh-review-poster{
  margin-bottom: 1rem;
}

/* Right column spacing */
.sh-hero-right .sh-verdict{
  margin-top: 0;
}

/* Mobile: stack nicely */
@media (max-width: 900px){
  .sh-hero-split{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Top grid: left = scores+poster+intro, right = He Said/She Said */
.sh-top-grid{
  display: grid;

  /* Make the left column narrower so the right column starts sooner */
  grid-template-columns: 360px minmax(560px, 1fr);

  /* Smaller gap pulls the He/She section closer to the poster */
  gap: 1.1rem;

  align-items: start;
  margin-top: 1.25rem;
}

/* Allow grid children to shrink properly */
.sh-top-left,
.sh-top-right{
  min-width: 0;
}

/* Move the He Said / She Said block DOWN slightly */
.sh-top-right{
  margin-top: 0.6rem;
}

/* Mobile: stack */
@media (max-width: 900px){
  .sh-top-grid{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sh-top-right{
    margin-top: 0;
  }
}

/* Mobile: stack */
@media (max-width: 900px){
  .sh-top-grid{
    grid-template-columns: 1fr;
    gap: 1.0rem;
  }
}



.sh-top-left .sh-review-scores{
  margin-top: 0;
}

.sh-top-right .sh-verdict{
  margin-top: 0;
}

/* Mobile: stack */
@media (max-width: 900px){
  .sh-top-grid{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.sh-top-left,
.sh-top-right{
  min-width: 0;
}

.sh-footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}

/* Left: social */
.sh-footer-left{
  display:flex;
  align-items:center;
}

/* Right: nav links */
.sh-footer-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

/* Social label + icons */
.sh-footer-social{
  text-align:left;
}

.sh-footer-social-label{
  font-size:0.9rem;
  color:#ff2a2a;  /* brand red */
  margin-bottom:0.6rem;
  font-weight:600;
}

.sh-footer-social-icons{
  display:flex;
  gap:1.2rem;
}

/* Icons default = white */
.sh-footer-social-icons a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  color:#fff;
  transition:color .25s ease, transform .25s ease;
}

.sh-footer-social-icons a svg{
  width:100%;
  height:100%;
}

.sh-footer-social-icons a:hover{
  transform:translateY(-3px);
}

/* Platform hover colors */
.sh-footer-social-icons a[aria-label="Instagram"]:hover{ color:#E1306C; }
.sh-footer-social-icons a[aria-label="TikTok"]:hover{ color:#FE2C55; }
.sh-footer-social-icons a[aria-label="YouTube"]:hover{ color:#FF0000; }
.sh-footer-social-icons a[aria-label="Facebook"]:hover{ color:#1877F2; }

/* Mobile: stack nicely */
@media (max-width: 700px){
  .sh-footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .sh-footer-right{
    justify-content:flex-start;
  }
}

/* Toolbar Grid */
.sh-browse-toolbar-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 15px;
  row-gap: 10px;
  align-items:end;

  grid-template-areas:
    "filterTitle filterTitle filterTitle sortTitle"
    "service     genre       length     sort";
}

/* Areas */
.sh-filter-title--span3{ grid-area: filterTitle; }
.sh-sort-title{ grid-area: sortTitle; }

.sh-filter-service{ grid-area: service; }
.sh-filter-genre{ grid-area: genre; }
.sh-filter-length{ grid-area: length; }
.sh-filter-sort{ grid-area: sort; }

/* Mobile: stack in the right order */
@media (max-width: 780px){
  .sh-browse-toolbar-grid{
    grid-template-columns: 1fr;
    row-gap: 12px;

    grid-template-areas:
      "filterTitle"
      "service"
      "genre"
      "length"
      "sortTitle"
      "sort";
  }
}
/* === FORCE toolbar grid + correct mobile order (Browse page) === */
.sh-browse-toolbar-grid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  column-gap: 15px !important;
  row-gap: 10px !important;
  align-items: end !important;

  grid-template-areas:
    "filterTitle filterTitle filterTitle sortTitle"
    "service     genre       length     sort" !important;
}

/* Titles (make sure these exact classes exist in your HTML) */
.sh-browse-toolbar-grid .sh-filter-title--span3{ grid-area: filterTitle !important; }
.sh-browse-toolbar-grid .sh-sort-title{ grid-area: sortTitle !important; }

/* Place dropdowns by ID (no extra classes needed) */
.sh-browse-toolbar-grid #filter-service{ grid-area: service !important; }
.sh-browse-toolbar-grid #filter-genre{ grid-area: genre !important; }
.sh-browse-toolbar-grid #filter-length{ grid-area: length !important; }
.sh-browse-toolbar-grid #filter-sort{ grid-area: sort !important; }

/* Mobile: stack in the right order */
@media (max-width: 780px){
  .sh-browse-toolbar-grid{
    grid-template-columns: 1fr !important;
    row-gap: 12px !important;

    grid-template-areas:
      "filterTitle"
      "service"
      "genre"
      "length"
      "sortTitle"
      "sort" !important;
  }
}
.sh-browse-toolbar-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 15px;
  row-gap: 10px;
  align-items:end;

  grid-template-areas:
    "filterTitle filterTitle filterTitle sortTitle"
    "service     genre       length     sort";
}

.sh-filter-title--span3{ grid-area: filterTitle; }
.sh-sort-title{ grid-area: sortTitle; }

.sh-filter-service{ grid-area: service; }
.sh-filter-genre{ grid-area: genre; }
.sh-filter-length{ grid-area: length; }
.sh-filter-sort{ grid-area: sort; }

@media (max-width: 780px){
  .sh-browse-toolbar-grid{
    grid-template-columns: 1fr;
    row-gap: 12px;

    grid-template-areas:
      "filterTitle"
      "service"
      "genre"
      "length"
      "sortTitle"
      "sort";
  }
}
/* Force Sort By to display on New Releases mobile */
@media (max-width: 780px){
  .sh-sort-title{
    display:block !important;
  }
}
/* Fix: Sort By title getting hidden behind selects (mobile) */
@media (max-width: 780px){

  /* Make sure the grid isn't clipping */
  .sh-browse-toolbar-wrap,
  .sh-browse-toolbar-grid{
    overflow: visible !important;
  }

  /* Put headings above form controls */
  .sh-browse-toolbar-grid .sh-filter-title{
    position: relative !important;
    z-index: 5 !important;
    margin-top: 6px !important;
    margin-bottom: 2px !important;
  }

  /* Keep selects below headings */
  .sh-browse-toolbar-grid select.sh-select{
    position: relative !important;
    z-index: 1 !important;
  }

  /* Extra: add a little breathing room before Sort By */
  .sh-browse-toolbar-grid .sh-sort-title{
    margin-top: 12px !important;
  }
}
@media (max-width: 780px){
  .sh-browse-toolbar-grid .sh-sort-title{
    margin-top: 30px !important;
  }
}

/* Guides section links */
.sh-guide-card {
  display: block;
  text-decoration: none;
  color: #14b8a6; /* your teal */
}

.sh-guide-card h3 {
  color: #14b8a6;
}

.sh-guide-card:hover h3 {
  text-decoration: underline;
}

/* Guides grid layout */
.sh-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

/* Guides grid layout */
.sh-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

/* Guide cards */
.sh-guide-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90px;	
  padding: 18px 20px;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sh-guide-card h3 {
  margin: 0;
  font-size: 16px;
  color: #4CC9F0;
  text-align: center;
}

/* Hover effect */
.sh-guide-card:hover {
  border-color: #14b8a6;
  transform: translateY(-2px);
}

.sh-review-tagline{
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 12px;
}</style>
<!-- end Simple Custom CSS and JS -->
