/*
Theme Name: Roots Rambler Hybrid
Theme URI: https://www.rootsmusicrambler.com/
Author: Roots Music Rambler
Description: Hybrid WordPress theme for Roots Music Rambler, built around a showpiece podcast homepage and WordPress-native episode URLs.
Version: 1.2.7
Text Domain: roots-rambler
*/

:root {
  color-scheme: dark;
  --rmr-night: #090a0f;
  --rmr-ink: #111827;
  --rmr-charcoal: #16120f;
  --rmr-walnut: #342018;
  --rmr-copper: #c86d3f;
  --rmr-amber: #f0b35a;
  --rmr-sage: #9cad88;
  --rmr-bone: #f6efe2;
  --rmr-paper: #fff9ee;
  --rmr-muted: #b9afa0;
  --rmr-line-dark: rgba(246, 239, 226, 0.14);
  --rmr-line-light: rgba(17, 24, 39, 0.12);
  --rmr-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --rmr-radius: 8px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--rmr-bone);
  background: var(--rmr-night);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--rmr-amber); outline-offset: 3px; }

.rmr-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.rmr-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(246, 239, 226, 0.1);
  background: rgba(9, 10, 15, 0.82);
  backdrop-filter: blur(20px);
}

.rmr-header-inner {
  min-height: 104px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
}

.rmr-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.rmr-brand:hover { opacity: 0.84; }
.rmr-brand img { width: 300px; max-width: 48vw; }

.rmr-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 420px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(246, 239, 226, 0.76);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rmr-nav a {
  position: relative;
  padding: 11px 13px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.rmr-nav a:hover {
  color: var(--rmr-bone);
  background: rgba(246, 239, 226, 0.08);
}

.rmr-social-links {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 7px;
}

.rmr-social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 239, 226, 0.16);
  border-radius: 999px;
  color: rgba(246, 239, 226, 0.76);
  background: rgba(246, 239, 226, 0.045);
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.rmr-social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.rmr-social-links a:hover {
  color: #1b100c;
  border-color: var(--rmr-amber);
  background: var(--rmr-amber);
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .rmr-header-inner {
    min-height: 92px;
    gap: 12px 16px;
  }

  .rmr-brand img {
    width: 240px;
    max-width: 34vw;
  }

  .rmr-nav {
    flex-basis: 360px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .rmr-nav a {
    padding: 9px 10px;
  }

  .rmr-social-links a {
    width: 34px;
    height: 34px;
  }

  .rmr-social-links svg {
    width: 15px;
    height: 15px;
  }
}

.rmr-button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.rmr-button:hover {
  transform: translateY(-1px);
}

.rmr-button--primary {
  color: #1b100c;
  border-color: var(--rmr-amber);
  background: linear-gradient(135deg, var(--rmr-amber), var(--rmr-copper));
  box-shadow: 0 16px 38px rgba(200, 109, 63, 0.26);
}

.rmr-button--primary:hover {
  box-shadow: 0 18px 44px rgba(200, 109, 63, 0.36);
}

.rmr-button--light {
  color: var(--rmr-bone);
  border-color: rgba(246, 239, 226, 0.28);
  background: rgba(246, 239, 226, 0.06);
}

.rmr-button--light:hover {
  border-color: rgba(246, 239, 226, 0.46);
  background: rgba(246, 239, 226, 0.11);
}

.rmr-eyebrow {
  color: var(--rmr-amber);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rmr-hero {
  position: relative;
  overflow: hidden;
  min-height: min(820px, calc(100svh - 104px));
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(9, 10, 15, 0.96) 0%, rgba(9, 10, 15, 0.78) 48%, rgba(9, 10, 15, 0.6) 100%),
    url("assets/roots_music_rambler_hero.jpg") center 38% / cover;
}

.rmr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background:
    radial-gradient(circle at 16% 20%, rgba(240, 179, 90, 0.22), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(156, 173, 136, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 70%, var(--rmr-night));
}

.rmr-hero::after,
.rmr-podcast-hero::after,
.rmr-single-hero::after,
.rmr-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(240, 179, 90, 0.52), transparent);
}

.rmr-hero-grid {
  min-height: min(820px, calc(100svh - 104px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.76fr);
  gap: 58px;
  align-items: center;
  padding: 64px 0 84px;
}

.rmr-hero h1,
.rmr-page-hero h1 {
  max-width: 850px;
  margin: 14px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.1rem, 8.8vw, 8.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 0.86;
}

.rmr-hero-copy {
  max-width: 690px;
  margin: 0;
  color: rgba(246, 239, 226, 0.78);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
}

.rmr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.rmr-subscribe-block {
  margin-top: 30px;
}

.rmr-subscribe-block .rmr-eyebrow {
  margin-bottom: 12px;
}

.rmr-subscribe-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
}

.rmr-subscribe-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(246, 239, 226, 0.82);
  background: rgba(246, 239, 226, 0.065);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.rmr-subscribe-links a:hover {
  transform: translateY(-1px);
  color: var(--rmr-bone);
  border-color: rgba(240, 179, 90, 0.55);
  background: rgba(240, 179, 90, 0.14);
}

.rmr-subscribe-links--light a {
  color: var(--rmr-ink);
  border-color: rgba(17, 24, 39, 0.14);
  background: rgba(17, 24, 39, 0.04);
}

.rmr-subscribe-links--light a:hover {
  color: #1b100c;
  border-color: var(--rmr-amber);
  background: var(--rmr-amber);
}

/* .rmr-panel is a light cream surface (#fffaf1), but the default subscribe
   chips and --light button are bone-on-transparent for dark backgrounds, which
   renders them near-invisible here. Reuse the same treatment as the --light
   variants above so sidebar panels stay legible. */
.rmr-panel .rmr-subscribe-links a,
.rmr-panel .rmr-button--light {
  color: var(--rmr-ink);
  border-color: rgba(17, 24, 39, 0.14);
  background: rgba(17, 24, 39, 0.04);
}

.rmr-panel .rmr-subscribe-links a:hover,
.rmr-panel .rmr-button--light:hover {
  color: #1b100c;
  border-color: var(--rmr-amber);
  background: var(--rmr-amber);
}

.rmr-hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.16);
  border-radius: var(--rmr-radius);
  background: linear-gradient(180deg, rgba(246, 239, 226, 0.13), rgba(246, 239, 226, 0.05));
  box-shadow: var(--rmr-shadow);
}

.rmr-hero-panel__image {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--rmr-charcoal);
}

.rmr-hero-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background:
    radial-gradient(circle at 20% 10%, rgba(240, 179, 90, 0.16), transparent 30%),
    linear-gradient(135deg, #15110e, #08090d);
}

.rmr-hero-panel > .rmr-eyebrow,
.rmr-hero-panel h2,
.rmr-hero-panel p,
.rmr-episode-link {
  margin-left: 22px;
  margin-right: 22px;
}

.rmr-hero-panel > .rmr-eyebrow { margin-top: 22px; }

.rmr-hero-panel h2 {
  margin-top: 12px;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1;
}

.rmr-hero-panel h2 a { text-decoration: none; }
.rmr-hero-panel p { margin-top: 0; color: rgba(246, 239, 226, 0.76); }

.rmr-episode-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  margin-bottom: 24px;
  color: var(--rmr-amber);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rmr-episode-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.rmr-episode-link:hover::after {
  width: 48px;
}

.rmr-section {
  padding: 86px 0;
}

.rmr-section--white {
  color: var(--rmr-ink);
  background:
    linear-gradient(180deg, var(--rmr-paper), #f1e4d0);
}

.rmr-section--ink {
  color: var(--rmr-bone);
  background:
    radial-gradient(circle at 84% 22%, rgba(200, 109, 63, 0.22), transparent 26%),
    linear-gradient(135deg, #0a0b10, #1d1712 72%, #2d1a13);
}

.rmr-section--subscribe {
  padding: 44px 0;
  color: var(--rmr-bone);
  border-top: 1px solid rgba(246, 239, 226, 0.1);
  border-bottom: 1px solid rgba(246, 239, 226, 0.1);
  background: #0d0e13;
}

.rmr-subscribe-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.rmr-subscribe-band h2 {
  margin: 8px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1;
}

.rmr-listen-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 48px;
  align-items: end;
}

.rmr-listen-band__copy {
  position: relative;
  max-width: 730px;
}

.rmr-listen-band__copy::before {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rmr-amber), var(--rmr-copper));
}

.rmr-listen-band h2 {
  margin: 12px 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
}

.rmr-listen-band__copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(246, 239, 226, 0.73);
  font-size: 1.08rem;
}

.rmr-listen-band__grid {
  display: grid;
  gap: 12px;
}

.rmr-listen-band__grid div {
  border: 1px solid rgba(246, 239, 226, 0.12);
  border-radius: var(--rmr-radius);
  padding: 18px;
  background: rgba(246, 239, 226, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.rmr-listen-band__grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rmr-amber);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.rmr-listen-band__grid strong {
  display: block;
  color: var(--rmr-bone);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.34rem;
  line-height: 1.05;
}

.rmr-listen-band__grid p {
  margin: 8px 0 0;
  color: rgba(246, 239, 226, 0.66);
  font-size: 0.94rem;
}

.rmr-section--white .rmr-listen-band__copy p {
  color: #62584c;
}

.rmr-section--white .rmr-listen-band__grid div {
  border-color: var(--rmr-line-light);
  background: #fffaf1;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.rmr-section--white .rmr-listen-band__grid strong {
  color: var(--rmr-ink);
}

.rmr-section--white .rmr-listen-band__grid p {
  color: #62584c;
}

.rmr-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.rmr-section-head h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.55rem, 5.4vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.01em;
}

.rmr-section-head p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #62584c;
  font-size: 1.02rem;
}

.rmr-section--ink .rmr-section-head p {
  color: rgba(246, 239, 226, 0.72);
}

.rmr-app {
  min-height: 360px;
}

.rmr-episode-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 210px) minmax(160px, 210px);
  gap: 12px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid var(--rmr-line-light);
  border-radius: 999px;
  background: rgba(255, 249, 238, 0.72);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.rmr-episode-toolbar input,
.rmr-episode-toolbar select {
  min-height: 44px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--rmr-ink);
  background: rgba(255, 255, 255, 0.76);
}

.rmr-episode-toolbar input:focus,
.rmr-episode-toolbar select:focus {
  border-color: var(--rmr-copper);
}

.rmr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rmr-card {
  overflow: hidden;
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  background: #fffaf1;
  box-shadow: 0 20px 55px rgba(17, 24, 39, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rmr-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.rmr-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 109, 63, 0.38);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.16);
}

.rmr-card__media {
  cursor: pointer;
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  color: var(--rmr-bone);
  background: var(--rmr-charcoal);
  text-decoration: none;
}

.rmr-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background:
    radial-gradient(circle at 24% 14%, rgba(240, 179, 90, 0.14), transparent 28%),
    linear-gradient(135deg, #17120f, #06070b);
  transition: transform 240ms ease, filter 240ms ease;
}

.rmr-card:hover .rmr-card__media img {
  transform: scale(1.018);
  filter: saturate(1.05) contrast(1.03);
}

.rmr-play-pill {
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  color: #1b100c;
  background: var(--rmr-amber);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rmr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  justify-content: space-between;
}

.rmr-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 22px;
}

.rmr-card time {
  color: var(--rmr-copper);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rmr-card h3 {
  margin: 8px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.rmr-card h3 a {
  text-decoration: none;
  transition: color 180ms ease;
}

.rmr-card h3 a:hover { color: var(--rmr-copper); }

.rmr-card p {
  flex: 1;
  margin: 0 0 16px;
  min-height: 4.55em;
  color: #62584c;
  font-size: 0.95rem;
}

.rmr-card .rmr-button--light {
  color: var(--rmr-ink);
  border-color: rgba(17, 24, 39, 0.18);
  background: transparent;
}

.rmr-card .rmr-button--light:hover {
  color: #1b100c;
  border-color: var(--rmr-amber);
  background: var(--rmr-amber);
}

.rmr-card .rmr-button {
  align-self: flex-start;
}

.rmr-load-more {
  margin: 30px auto 0;
  display: flex;
}

.rmr-single-hero,
.rmr-page-hero,
.rmr-podcast-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: var(--rmr-bone);
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 179, 90, 0.18), transparent 30%),
    linear-gradient(135deg, #090a0f, #1b1713 64%, #3b2117);
}

.rmr-archive-hero .rmr-archive-description {
  max-width: 720px;
  color: rgba(246, 239, 226, 0.74);
  font-size: 1.08rem;
}

.rmr-archive-hero .rmr-archive-description p {
  margin: 10px 0 0;
}

.rmr-podcast-hero {
  padding: 86px 0 94px;
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.86) 0%, rgba(12, 14, 18, 0.60) 65%, rgba(12, 14, 18, 0.35) 100%),
    url("assets/podcast_hero_bg.jpg") center 40% / cover;
}

.rmr-about-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 96px;
  color: var(--rmr-bone);
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.84) 0%, rgba(12, 14, 18, 0.58) 60%, rgba(12, 14, 18, 0.30) 100%),
    url("assets/about_hero_bg.jpg") center 50% / cover;
}

.rmr-about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(240, 179, 90, 0.52), transparent);
}

.rmr-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.48fr);
  gap: 56px;
  align-items: end;
}

.rmr-about-hero h1 {
  max-width: 900px;
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.6rem, 8vw, 8rem);
  line-height: 0.88;
}

.rmr-about-hero__note {
  border-left: 1px solid rgba(240, 179, 90, 0.55);
  padding-left: 24px;
}

.rmr-about-hero__note p {
  margin: 0;
  color: rgba(246, 239, 226, 0.78);
  font-size: 1.12rem;
}

.rmr-about-origin {
  padding-top: 60px;
  padding-bottom: 60px;
}

.rmr-about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.rmr-about-story-card {
  background: #fffaf1;
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
  display: flex;
  flex-direction: column;
}

.rmr-about-story-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  line-height: 1.1;
  margin: 8px 0 16px;
  color: var(--rmr-ink);
}

.rmr-about-story-card p {
  font-size: 1.02rem;
  line-height: 1.68;
  color: #4a4135;
  margin-bottom: 14px;
}

.rmr-about-story-card p:last-child {
  margin-bottom: 0;
}

.rmr-about-hosts {
  padding: 70px 0;
}

.rmr-section-head--center {
  display: block;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.rmr-section-head--center .rmr-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}

.rmr-section-head--center h2 {
  color: var(--rmr-bone);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 14px;
  max-width: 100%;
}

.rmr-section-head--center p {
  color: rgba(246, 239, 226, 0.78);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.rmr-hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.rmr-host-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 239, 226, 0.12);
  border-radius: var(--rmr-radius);
  padding: 24px;
  box-shadow: var(--rmr-shadow);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.rmr-host-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 109, 63, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.rmr-host-card__portrait {
  width: 120px;
  height: 135px;
  min-width: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(240, 179, 90, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: #000;
  flex-shrink: 0;
}

.rmr-host-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rmr-host-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rmr-host-card__header {
  margin-bottom: 8px;
}

.rmr-host-card__tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rmr-amber);
  margin-bottom: 3px;
}

.rmr-host-card__header h3 {
  color: var(--rmr-bone);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.15;
}

.rmr-host-card__nickname {
  color: rgba(246, 239, 226, 0.55);
  font-style: italic;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 400;
  margin-left: 4px;
}

.rmr-host-card__content p {
  color: rgba(246, 239, 226, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 14px;
}

.rmr-host-card__links {
  margin-top: auto;
}

.rmr-section--sand {
  background: #fbf6ec;
  border-top: 1px solid var(--rmr-line-light);
}

.rmr-section--sand .rmr-button--light,
.rmr-section--sand .rmr-button {
  color: #141414;
  border-color: rgba(20, 20, 20, 0.25);
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.rmr-section--sand .rmr-button--light:hover,
.rmr-section--sand .rmr-button:hover {
  background: #141414;
  color: #ffffff;
  border-color: #141414;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.rmr-about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rmr-about-values > div {
  border-top: 1px solid rgba(246, 239, 226, 0.2);
  padding-top: 22px;
}

.rmr-about-values span {
  color: var(--rmr-amber);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.rmr-about-values h2 {
  margin: 14px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.rmr-about-values p {
  margin: 0;
  color: rgba(246, 239, 226, 0.7);
}

.rmr-about-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.rmr-podcast-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.62fr);
  gap: 50px;
  align-items: center;
}

.rmr-podcast-hero h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.3rem, 6.7vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.015em;
}

.rmr-podcast-feature {
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.16);
  border-radius: var(--rmr-radius);
  background: rgba(246, 239, 226, 0.07);
  box-shadow: var(--rmr-shadow);
}

.rmr-podcast-feature__body {
  padding: 22px;
}

.rmr-podcast-feature time {
  color: var(--rmr-amber);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rmr-podcast-feature h2 {
  margin: 8px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1;
}

.rmr-podcast-feature h2 a {
  text-decoration: none;
}

.rmr-podcast-feature p {
  color: rgba(246, 239, 226, 0.74);
}

.rmr-podcast-guide {
  border: 1px solid rgba(246, 239, 226, 0.16);
  border-radius: var(--rmr-radius);
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(246, 239, 226, 0.1), rgba(246, 239, 226, 0.045)),
    rgba(9, 10, 15, 0.28);
  box-shadow: var(--rmr-shadow);
}

.rmr-podcast-guide__top {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(246, 239, 226, 0.14);
  padding-bottom: 18px;
}

.rmr-podcast-guide__top span,
.rmr-podcast-guide__top a {
  color: var(--rmr-amber);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rmr-podcast-guide__top a {
  color: var(--rmr-bone);
  text-decoration: none;
}

.rmr-podcast-guide__list {
  display: grid;
  gap: 18px;
  padding-top: 20px;
}

.rmr-podcast-guide__list div {
  display: grid;
  gap: 6px;
}

.rmr-podcast-guide__list strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.rmr-podcast-guide__list p {
  margin: 0;
  color: rgba(246, 239, 226, 0.72);
}

.rmr-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 46px;
  align-items: center;
}

.rmr-single h1 {
  margin: 12px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.9rem, 6vw, 5.9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.rmr-meta {
  color: rgba(246, 239, 226, 0.7);
  font-weight: 800;
}

.rmr-single-header--video {
  max-width: 900px;
  margin-bottom: 24px;
}

.rmr-video-showcase {
  width: 100%;
  max-width: 1000px;
  margin: 0 0 28px;
}

.rmr-video-showcase .rmr-video {
  width: 100%;
  margin-top: 0;
  border-radius: var(--rmr-radius);
  overflow: hidden;
  box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(246, 239, 226, 0.14);
}

.rmr-video-showcase .rmr-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.rmr-video,
.rmr-audio-panel {
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.16);
  border-radius: var(--rmr-radius);
  background: #050609;
  box-shadow: var(--rmr-shadow);
}

img.rmr-video {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  padding: 14px;
}

.rmr-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.rmr-video--episode {
  margin-top: 24px;
}

.rmr-audio-panel {
  margin-bottom: 28px;
  padding: 18px;
  border-color: var(--rmr-line-light);
  background: #fffaf1;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.1);
}

.rmr-audio-panel audio { width: 100%; }

.rmr-audio-panel--embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.rmr-audio-panel--hero {
  margin-top: 20px;
  margin-bottom: 0;
  border-color: rgba(246, 239, 226, 0.16);
  background: rgba(5, 6, 9, 0.72);
  box-shadow: var(--rmr-shadow);
}

.rmr-audio-panel--wide {
  max-width: 1000px;
}

.rmr-muskox-ad {
  margin: 32px 0 28px;
  text-align: center;
}

.rmr-muskox-ad a {
  display: inline-block;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rmr-muskox-ad a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.18);
}

.rmr-muskox-ad img {
  display: block;
  width: 100%;
  max-width: 728px;
  height: auto;
  margin: 0 auto;
}

.rmr-muskox-banner {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(200, 109, 63, 0.32);
  border-radius: var(--rmr-radius);
  background:
    linear-gradient(135deg, rgba(36, 43, 39, 0.96), rgba(13, 15, 17, 0.98)),
    #121416;
  color: var(--rmr-bone);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.16);
}

.rmr-muskox-banner span {
  display: block;
  margin-bottom: 8px;
  color: var(--rmr-amber);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rmr-muskox-banner strong {
  display: block;
  max-width: 620px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.rmr-muskox-banner p {
  margin: 10px 0 0;
  color: rgba(246, 239, 226, 0.78);
}

.rmr-episode-subscribe {
  margin-bottom: 28px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  background: #fffaf1;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
}

.rmr-episode-subscribe h2 {
  margin: 8px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--rmr-ink);
}

.rmr-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.rmr-page-shell,
.rmr-subscribe-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

.rmr-page-body {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  background: #fffaf1;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
}

.rmr-page-side,
.rmr-subscribe-page-panel {
  position: sticky;
  top: 124px;
}

.rmr-video-hero {
  background:
    linear-gradient(90deg, rgba(9, 10, 15, 0.95), rgba(9, 10, 15, 0.68)),
    url("assets/roots_music_rambler_hero.jpg") center 40% / cover;
}

.rmr-subscribe-page-hero {
  padding: 94px 0 86px;
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.85) 0%, rgba(12, 14, 18, 0.60) 65%, rgba(12, 14, 18, 0.32) 100%),
    url("assets/subscribe_hero_bg.jpg") center 45% / cover;
}

.rmr-contact-hero {
  position: relative;
  padding: 100px 0 84px;
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.84) 0%, rgba(12, 14, 18, 0.60) 60%, rgba(12, 14, 18, 0.35) 100%),
    url("assets/contact_hero_bg.jpg") center 42% / cover;
}

.rmr-store-hero {
  padding: 94px 0 86px;
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.85) 0%, rgba(12, 14, 18, 0.58) 60%, rgba(12, 14, 18, 0.30) 100%),
    url("assets/store_hero_bg.jpg") center 45% / cover;
}

.rmr-eyebrow--gold {
  color: #f0b35a !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.rmr-contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.rmr-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--rmr-bone);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.rmr-badge-item svg {
  color: var(--rmr-amber);
}

/* Contact Page Polished Styles */
.rmr-contact-section {
  padding-top: 64px;
  padding-bottom: 90px;
  background: #fbf8f2;
}

.rmr-contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.44fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.rmr-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rmr-contact-card {
  background: #ffffff;
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rmr-contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 109, 63, 0.5);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.rmr-contact-card__icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(200, 109, 63, 0.12);
  color: var(--rmr-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.rmr-contact-card__text h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--rmr-ink);
}

.rmr-contact-card__text p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #554b3e;
}

.rmr-contact-social-card {
  background:
    radial-gradient(circle at 85% 15%, rgba(200, 109, 63, 0.15), transparent 45%),
    #11141a;
  border: 1px solid rgba(246, 239, 226, 0.12);
  border-radius: var(--rmr-radius);
  padding: 26px;
  color: var(--rmr-bone);
  box-shadow: var(--rmr-shadow);
}

.rmr-contact-social-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  margin: 4px 0 8px;
  color: var(--rmr-bone);
}

.rmr-contact-social-card p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(246, 239, 226, 0.72);
}

.rmr-contact-form-card {
  background: #ffffff;
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  padding: clamp(30px, 4.5vw, 48px);
  box-shadow: 0 16px 50px rgba(17, 24, 39, 0.07);
}

.rmr-form-card-head {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rmr-line-light);
}

.rmr-form-card-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.08;
  margin: 4px 0 8px;
  color: var(--rmr-ink);
}

.rmr-form-card-head p {
  margin: 0;
  color: #62584c;
  font-size: 0.98rem;
}

.rmr-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rmr-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.rmr-form-label {
  font-size: 0.8rem;
  font-weight: 850;
  color: var(--rmr-ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rmr-required {
  color: #c86d3f;
}

.rmr-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--rmr-ink);
  background: #fffdf9;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.rmr-input:focus {
  background: #ffffff;
  border-color: var(--rmr-terracotta);
  box-shadow: 0 0 0 3px rgba(200, 109, 63, 0.18);
}

.rmr-select {
  cursor: pointer;
  appearance: auto;
}

.rmr-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.rmr-form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

.rmr-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.98rem;
  font-weight: 850;
  cursor: pointer;
  border: 0;
}

.rmr-form-note {
  font-size: 0.82rem;
  color: #7d7265;
}

.rmr-form-status {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.rmr-status-icon {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.rmr-form-status strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
}

.rmr-form-status p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.rmr-form-status--success {
  background: #eef8ee;
  border: 1px solid #bce2bc;
  color: #175217;
}

.rmr-form-status--error {
  background: #fdf1ef;
  border: 1px solid #f3c4bc;
  color: #8c2612;
}

.rmr-store-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 36px;
  align-items: flex-start;
}

.rmr-store-embed,
.rmr-store-preview {
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  padding: clamp(22px, 3vw, 32px);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
}

.rmr-store-embed .vc_row.vc_inner {
  display: flex !important;
  flex-wrap: wrap !important;
  margin: -12px !important;
}

.rmr-store-embed .vc_column_container.vc_col-sm-4 {
  display: flex !important;
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
  padding: 12px !important;
  box-sizing: border-box !important;
}

.rmr-store-embed .vc_column-inner {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
}

.rmr-store-embed .wpb_wrapper {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  width: 100% !important;
}

.rmr-store-embed [id^="product-component-"] {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  min-height: 480px;
}

.rmr-store-embed iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 460px !important;
}

/* Compact Mini Shorts Section (Subtle Sub-Row) */
.rmr-section--compact-shorts {
  padding: 42px 0 46px;
  background: #f7f2e8;
  border-top: 1px solid var(--rmr-line-light);
  border-bottom: 1px solid var(--rmr-line-light);
}

.rmr-mini-shorts-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
}

.rmr-mini-shorts-header h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  margin: 4px 0 0;
  color: var(--rmr-ink);
}

.rmr-mini-shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rmr-mini-short {
  background: #ffffff;
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  padding: 10px;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.rmr-mini-short:hover {
  transform: translateY(-2px);
  border-color: var(--rmr-amber);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

.rmr-mini-short__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  margin-bottom: 9px;
}

.rmr-mini-short__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.rmr-mini-short:hover .rmr-mini-short__thumb img {
  transform: scale(1.05);
}

.rmr-mini-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(220, 38, 38, 0.92);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 850;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.rmr-mini-short h4 {
  margin: 0;
  font-family: inherit;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 700;
  flex: 1;
}

.rmr-mini-short h4 a {
  color: var(--rmr-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rmr-mini-short h4 a:hover {
  color: var(--rmr-amber);
}

.rmr-mini-shorts-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rmr-series-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #eedccb;
  color: #8c3007;
  border: 1px solid rgba(140, 48, 7, 0.35);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rmr-meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(240, 179, 90, 0.18);
  border: 1px solid rgba(240, 179, 90, 0.4);
  color: var(--rmr-amber);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rmr-content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rmr-line-light);
}

.rmr-tag-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #f4ede1;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  color: #62584c;
}

.rmr-sidebar-episodes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.rmr-mini-episode {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.rmr-mini-episode:hover {
  background: rgba(200, 109, 63, 0.08);
}

.rmr-mini-episode__thumb {
  width: 68px;
  height: 48px;
  min-width: 68px;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.rmr-mini-episode__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rmr-mini-episode__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rmr-mini-episode__date {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--rmr-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rmr-mini-episode h4 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.92rem;
  line-height: 1.2;
  color: var(--rmr-ink);
}

/* Dedicated Shorts & Video Page */
.rmr-shorts-page-section {
  padding: 50px 0 80px;
  background: #fbf8f2;
}

.rmr-shorts-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding: 18px 24px;
  background: #ffffff;
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.04);
}

.rmr-filter-label {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7d7265;
}

.rmr-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.rmr-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: #f4ede1;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
  color: var(--rmr-ink);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.rmr-filter-pill:hover {
  background: #eadecd;
  border-color: rgba(200, 109, 63, 0.4);
  transform: translateY(-1px);
}

.rmr-filter-pill.is-active {
  background: var(--rmr-ink);
  color: var(--rmr-bone);
  border-color: var(--rmr-ink);
}

.rmr-filter-pill.is-active .rmr-pill-count {
  color: var(--rmr-amber);
}

.rmr-pill-count {
  font-size: 0.78rem;
  color: #7d7265;
  font-weight: 700;
}

.rmr-shorts-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rmr-video-card {
  background: #ffffff;
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rmr-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 109, 63, 0.45);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.1);
}

.rmr-video-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.rmr-video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.rmr-video-card:hover .rmr-video-card__media img {
  transform: scale(1.05);
}

.rmr-video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rmr-video-card__play svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(220, 38, 38, 0.9);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.rmr-video-card:hover .rmr-video-card__play svg {
  transform: scale(1.12);
  background: #dc2626;
}

.rmr-video-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--rmr-bone);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rmr-video-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rmr-video-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.rmr-video-card__meta time {
  font-size: 0.72rem;
  font-weight: 800;
  color: #7d7265;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rmr-artist-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(200, 109, 63, 0.12);
  color: var(--rmr-terracotta);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.rmr-video-card__body h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.22;
}

.rmr-video-card__body h3 a {
  color: var(--rmr-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rmr-video-card__body h3 a:hover {
  color: var(--rmr-terracotta);
}

.rmr-video-card__body p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #554b3e;
  flex: 1;
}

.rmr-button--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  align-self: flex-start;
}

.rmr-video-card .rmr-button--light {
  color: #141414;
  border-color: rgba(20, 20, 20, 0.2);
  background: transparent;
}

.rmr-video-card .rmr-button--light:hover {
  background: #141414;
  color: #ffffff;
  border-color: #141414;
}

/* Shorts & Weekly Clips Section */
.rmr-section--shorts {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(200, 109, 63, 0.16), transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(44, 74, 114, 0.22), transparent 50%),
    #0c0e12;
  border-top: 1px solid rgba(246, 239, 226, 0.1);
  border-bottom: 1px solid rgba(246, 239, 226, 0.1);
  padding: 50px 0 54px;
  overflow: hidden;
}

.rmr-shorts-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}

.rmr-shorts-head h2 {
  color: var(--rmr-bone);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.05;
  margin: 4px 0 8px;
}

.rmr-shorts-head p {
  color: rgba(246, 239, 226, 0.72);
  margin: 0;
  max-width: 580px;
  font-size: 0.96rem;
}

.rmr-eyebrow--amber {
  color: var(--rmr-amber) !important;
}

.rmr-bolt-icon {
  display: inline-block;
  color: #ff9800;
  margin-right: 2px;
}

.rmr-shorts-track-wrapper {
  position: relative;
  margin: 0 -16px;
  padding: 6px 16px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 109, 63, 0.4) transparent;
}

.rmr-shorts-track-wrapper::-webkit-scrollbar {
  height: 5px;
}

.rmr-shorts-track-wrapper::-webkit-scrollbar-thumb {
  background: rgba(200, 109, 63, 0.4);
  border-radius: 3px;
}

.rmr-shorts-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.rmr-short-card {
  width: 190px;
  flex: 0 0 190px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 239, 226, 0.12);
  border-radius: var(--rmr-radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rmr-short-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 109, 63, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 16px rgba(200, 109, 63, 0.2);
}

.rmr-short-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.rmr-short-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.rmr-short-card:hover .rmr-short-card__media img {
  transform: scale(1.06);
}

.rmr-short-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  background: rgba(220, 38, 38, 0.92);
  color: #fff;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.rmr-short-date {
  position: absolute;
  bottom: 6px;
  right: 6px;
  padding: 2px 5px;
  background: rgba(0, 0, 0, 0.75);
  color: rgba(246, 239, 226, 0.9);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
}

.rmr-short-card__body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rmr-short-card__body h3 {
  margin: 0;
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 700;
}

.rmr-short-card__body h3 a {
  color: var(--rmr-bone);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rmr-short-card__body h3 a:hover {
  color: var(--rmr-amber);
}

.rmr-store-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rmr-store-preview article {
  min-height: 180px;
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  padding: 18px;
  background: #fff;
}

.rmr-store-preview strong,
.rmr-store-preview span {
  display: block;
}

.rmr-store-preview strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.rmr-store-preview span {
  margin-top: 10px;
  color: #62584c;
}

.rmr-content {
  color: var(--rmr-ink);
  font-size: 1.08rem;
}

.rmr-content--dark {
  color: var(--rmr-bone);
}

.rmr-content--dark p {
  color: rgba(246, 239, 226, 0.72);
}

.rmr-content > *:first-child { margin-top: 0; }
.rmr-content > *:last-child { margin-bottom: 0; }

.rmr-content h2,
.rmr-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

.rmr-content a { color: #8e452b; font-weight: 700; }

.rmr-content iframe {
  max-width: 100%;
}

.rmr-content img {
  border-radius: var(--rmr-radius);
}

.rmr-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 16px;
}

.rmr-panel {
  border: 1px solid var(--rmr-line-light);
  border-radius: var(--rmr-radius);
  padding: 22px;
  background: #fffaf1;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.rmr-panel h2,
.rmr-panel h3 {
  margin: 0 0 9px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
}

.rmr-panel p {
  color: #62584c;
}

.navigation.pagination {
  margin-top: 34px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rmr-line-light);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--rmr-ink);
  background: rgba(255, 250, 241, 0.72);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
}

.page-numbers.current {
  color: #1b100c;
  border-color: var(--rmr-amber);
  background: var(--rmr-amber);
}

.rmr-footer {
  padding: 46px 0;
  color: rgba(246, 239, 226, 0.68);
  border-top: 1px solid rgba(246, 239, 226, 0.1);
  background:
    linear-gradient(90deg, rgba(240, 179, 90, 0.06), transparent 42%),
    #07080c;
}

.rmr-footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  gap: 36px;
}

.rmr-footer-brand a {
  display: inline-flex;
  max-width: min(220px, 70vw);
}

.rmr-footer-brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.26));
}

.rmr-footer p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(246, 239, 226, 0.74);
  font-size: 0.98rem;
}

.rmr-footer a { color: var(--rmr-bone); }

.rmr-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  max-width: 620px;
}

.rmr-footer-subscribe {
  margin-bottom: 20px;
}

.rmr-footer-subscribe .rmr-subscribe-links {
  margin-top: 12px;
}

.rmr-footer-nav a {
  color: rgba(246, 239, 226, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.rmr-footer-nav a:hover {
  color: var(--rmr-amber);
}

@media (max-width: 940px) {
  .rmr-header-inner,
  .rmr-section-head {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .rmr-header-inner { flex-direction: column; padding: 18px 0; }
  .rmr-brand img { width: 280px; max-width: 74vw; }
  .rmr-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .rmr-hero-grid,
  .rmr-single-grid,
  .rmr-podcast-hero__grid,
  .rmr-about-hero__grid,
  .rmr-about-story-grid,
  .rmr-hosts-grid,
  .rmr-content-wrap,
  .rmr-page-shell,
  .rmr-subscribe-page-grid,
  .rmr-contact-grid,
  .rmr-store-layout,
  .rmr-listen-band,
  .rmr-footer-inner {
    grid-template-columns: 1fr;
  }

  .rmr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rmr-about-values { grid-template-columns: 1fr; }
  .rmr-about-cta { align-items: flex-start; flex-direction: column; }
  .rmr-sidebar { position: static; }
  .rmr-page-side,
  .rmr-subscribe-page-panel { position: static; }
  .rmr-muskox-banner { align-items: flex-start; flex-direction: column; }
  .rmr-episode-toolbar { grid-template-columns: 1fr; border-radius: var(--rmr-radius); }
  .rmr-subscribe-band { grid-template-columns: 1fr; }
  .rmr-footer-brand img { width: 200px; }
  .rmr-mini-shorts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rmr-shorts-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .rmr-container { width: min(100% - 28px, 1180px); }
  .rmr-hero { min-height: auto; }
  .rmr-hero-grid { min-height: auto; padding: 44px 0 64px; }
  .rmr-hero h1,
  .rmr-page-hero h1,
  .rmr-podcast-hero h1,
  .rmr-single h1 {
    font-size: clamp(3rem, 16vw, 4rem);
    line-height: 0.92;
  }
  .rmr-grid { grid-template-columns: 1fr; }
  .rmr-mini-shorts-grid { grid-template-columns: 1fr; }
  .rmr-shorts-page-grid { grid-template-columns: 1fr; }
  .rmr-host-card { flex-direction: column; text-align: left; }
  .rmr-section { padding: 62px 0; }
  .rmr-brand img { width: 250px; max-width: 82vw; }
  .rmr-hero-panel > .rmr-eyebrow { margin-top: 18px; }
  .rmr-nav a { padding: 9px 10px; }
  .rmr-store-preview { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
