/* Podcast single page — MREA-style layout + dark mode (data-theme="dark") */

.podcast-show-mrea {
  --mrea-orange: #f57c20;
  --mrea-orange-light: #fff3e8;
  --mrea-orange-border: #f5d0a9;
  --mrea-dark-band: #1a1a2e;
  --mrea-gray-900: #212121;
  --mrea-gray-700: #555;
  --mrea-gray-500: #888;
  --mrea-gray-300: #ccc;
  --mrea-gray-200: #e5e5e5;
  --mrea-gray-100: #f5f5f5;
  --mrea-white: #fff;
  --mrea-radius: 12px;
  --mrea-radius-sm: 8px;
  padding-bottom: 0;
}

.podcast-show-mrea__page {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--mrea-white);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
  color: var(--mrea-gray-900);
}

.podcast-show-mrea .mrea-tag {
  display: inline-block;
  background: var(--mrea-orange-light);
  color: var(--mrea-orange);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 4px 4px 4px 0;
}

.podcast-show-mrea .mrea-btn-primary {
  background: var(--mrea-orange);
  color: var(--mrea-white);
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--mrea-radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.podcast-show-mrea .mrea-btn-primary:hover {
  background: #e06a10;
  color: var(--mrea-white);
}

.podcast-show-mrea .mrea-btn-secondary {
  background: transparent;
  color: var(--mrea-orange);
  border: 2px solid var(--mrea-orange);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--mrea-radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.podcast-show-mrea .mrea-btn-secondary:hover {
  background: var(--mrea-orange-light);
  color: var(--mrea-orange);
}

.podcast-show-mrea .mrea-breadcrumb {
  padding: 12px 40px;
  font-size: 13px;
  color: var(--mrea-gray-500);
  background: var(--mrea-gray-100);
  border-bottom: 1px solid var(--mrea-gray-200);
}

.podcast-show-mrea .mrea-breadcrumb a {
  color: var(--mrea-orange);
  text-decoration: none;
}

.podcast-show-mrea .mrea-breadcrumb span.sep {
  margin: 0 6px;
}

.podcast-show-mrea .mrea-hero {
  padding: 48px 40px 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: linear-gradient(180deg, var(--mrea-gray-100) 0%, var(--mrea-white) 100%);
}

.podcast-show-mrea .mrea-hero-cover {
  width: 320px;
  height: 320px;
  min-width: 320px;
  border-radius: var(--mrea-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.podcast-show-mrea .mrea-hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-show-mrea .mrea-cover-placeholder {
  color: var(--mrea-white);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  padding: 20px;
}

.podcast-show-mrea .mrea-cover-placeholder .big {
  font-size: 22px;
  font-weight: 800;
  color: var(--mrea-orange);
  display: block;
  margin-bottom: 8px;
}

.podcast-show-mrea .mrea-hero-content {
  flex: 1;
  min-width: 0;
  position: relative;
}

.podcast-show-mrea .mrea-hero-content h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--mrea-gray-900);
  margin-bottom: 8px;
}

.podcast-show-mrea .mrea-hero-host {
  font-size: 18px;
  color: var(--mrea-gray-700);
  margin-bottom: 6px;
}

.podcast-show-mrea .mrea-hero-host a {
  color: var(--mrea-orange);
  text-decoration: none;
  font-weight: 600;
}

.podcast-show-mrea .mrea-hero-tagline {
  font-size: 15px;
  color: var(--mrea-gray-500);
  margin-bottom: 20px;
  font-style: italic;
}

.podcast-show-mrea .mrea-stats-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.podcast-show-mrea .mrea-mini-stat {
  background: var(--mrea-white);
  border: 1px solid var(--mrea-gray-200);
  border-radius: var(--mrea-radius-sm);
  padding: 10px 18px;
  text-align: center;
}

.podcast-show-mrea .mrea-mini-stat .val {
  font-size: 20px;
  font-weight: 800;
  color: var(--mrea-orange);
  display: block;
}

.podcast-show-mrea .mrea-mini-stat .lbl {
  font-size: 11px;
  color: var(--mrea-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.podcast-show-mrea .mrea-hero-actions-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.podcast-show-mrea .mrea-action-block {
  text-align: center;
}

.podcast-show-mrea .mrea-action-label {
  font-size: 11px;
  color: var(--mrea-gray-500);
  margin-top: 2px;
}

.podcast-show-mrea .mrea-hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.podcast-show-mrea .mrea-icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--mrea-radius-sm);
  border: 1px solid var(--mrea-gray-200);
  background: var(--mrea-white);
  color: var(--mrea-gray-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.podcast-show-mrea .mrea-icon-btn:hover {
  background: var(--mrea-orange-light);
  border-color: var(--mrea-orange-border);
  color: var(--mrea-orange);
}

.podcast-show-mrea .mrea-icon-btn.bookmarked {
  color: var(--mrea-orange);
  border-color: var(--mrea-orange-border);
  background: var(--mrea-orange-light);
}

.podcast-show-mrea .mrea-listen-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.podcast-show-mrea .mrea-listen-icons > span {
  font-size: 13px;
  color: var(--mrea-gray-500);
  margin-right: 4px;
}

.podcast-show-mrea .mrea-listen-icon {
  height: 32px;
  padding: 0 12px;
  background: var(--mrea-gray-100);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--mrea-gray-700);
  font-weight: 600;
  border: 1px solid var(--mrea-gray-200);
  text-decoration: none;
  gap: 4px;
}

.podcast-show-mrea .mrea-listen-icon i {
  font-size: 14px;
}

.podcast-show-mrea .mrea-listen-icon:hover {
  background: var(--mrea-orange-light);
  color: var(--mrea-orange);
  border-color: var(--mrea-orange-border);
}

.podcast-show-mrea .mrea-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.podcast-show-mrea .mrea-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: var(--mrea-gray-900);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.podcast-show-mrea .mrea-about-section {
  padding: 48px 40px;
  border-top: 1px solid var(--mrea-gray-200);
}

.podcast-show-mrea .mrea-about-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.podcast-show-mrea .mrea-about-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mrea-gray-700);
  margin-bottom: 20px;
  max-width: 800px;
}

.podcast-show-mrea .mrea-about-text p:last-child {
  margin-bottom: 0;
}

.podcast-show-mrea .mrea-topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 28px;
}

.podcast-show-mrea .mrea-topic-pill {
  background: var(--mrea-gray-100);
  border: 1px solid var(--mrea-gray-200);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  color: var(--mrea-gray-700);
  font-weight: 500;
}

.podcast-show-mrea .mrea-embedded-player {
  background: var(--mrea-gray-100);
  border: 2px dashed var(--mrea-gray-300);
  border-radius: var(--mrea-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  text-decoration: none;
  color: inherit;
}

.podcast-show-mrea .mrea-embedded-player:hover {
  border-color: var(--mrea-orange-border);
  background: var(--mrea-orange-light);
}

.podcast-show-mrea .mrea-play-btn {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--mrea-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mrea-white);
  font-size: 22px;
  border: none;
  cursor: pointer;
}

.podcast-show-mrea .mrea-player-meta {
  flex: 1;
  min-width: 0;
}

.podcast-show-mrea .mrea-player-meta .ep-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--mrea-gray-900);
}

.podcast-show-mrea .mrea-player-meta .ep-sub {
  font-size: 13px;
  color: var(--mrea-gray-500);
  margin-top: 2px;
}

.podcast-show-mrea .mrea-player-bar {
  height: 6px;
  background: var(--mrea-gray-200);
  border-radius: 3px;
  margin-top: 10px;
  position: relative;
}

.podcast-show-mrea .mrea-player-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12%;
  height: 100%;
  background: var(--mrea-orange);
  border-radius: 3px;
}

.podcast-show-mrea .mrea-host-section {
  padding: 48px 40px;
  background: var(--mrea-gray-100);
  border-top: 1px solid var(--mrea-gray-200);
  border-bottom: 1px solid var(--mrea-gray-200);
}

.podcast-show-mrea .mrea-host-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.podcast-show-mrea .mrea-host-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--mrea-white);
  border-radius: var(--mrea-radius);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.podcast-show-mrea .mrea-host-photo {
  width: 180px;
  height: 180px;
  min-width: 180px;
  border-radius: var(--mrea-radius);
  background: var(--mrea-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mrea-gray-500);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  overflow: hidden;
}

.podcast-show-mrea .mrea-host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-show-mrea .mrea-host-info {
  flex: 1;
  min-width: 0;
}

.podcast-show-mrea .mrea-host-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.podcast-show-mrea .mrea-host-title {
  font-size: 14px;
  color: var(--mrea-gray-500);
  margin-bottom: 12px;
}

.podcast-show-mrea .mrea-host-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mrea-gray-700);
  margin-bottom: 16px;
}

.podcast-show-mrea .mrea-host-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.podcast-show-mrea .mrea-credential-badge {
  background: var(--mrea-orange-light);
  border: 1px solid var(--mrea-orange-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mrea-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.podcast-show-mrea .mrea-host-socials {
  display: block;
  margin-bottom: 0;
}

.podcast-show-mrea .mrea-host-socials .gp-social-row {
  justify-content: flex-start;
}

.podcast-show-mrea .mrea-social-icon {
  width: 36px;
  height: 36px;
  background: var(--mrea-gray-100);
  border: 1px solid var(--mrea-gray-200);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--mrea-gray-500);
  text-decoration: none;
}

.podcast-show-mrea .mrea-social-icon:hover {
  background: var(--mrea-orange-light);
  color: var(--mrea-orange);
  border-color: var(--mrea-orange-border);
}

.podcast-show-mrea .mrea-booking-section {
  padding: 48px 40px;
  border-bottom: 1px solid var(--mrea-gray-200);
}

.podcast-show-mrea .mrea-booking-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.podcast-show-mrea .mrea-booking-section .mrea-subtitle {
  font-size: 15px;
  color: var(--mrea-gray-500);
  margin-bottom: 28px;
  max-width: 900px;
}

.podcast-show-mrea .mrea-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.podcast-show-mrea .mrea-requirements-box {
  background: var(--mrea-gray-100);
  border-radius: var(--mrea-radius);
  padding: 28px;
}

.podcast-show-mrea .mrea-requirements-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.podcast-show-mrea .mrea-req-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--mrea-gray-700);
  line-height: 1.5;
}

.podcast-show-mrea .mrea-req-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--mrea-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mrea-orange);
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.podcast-show-mrea .mrea-steps-box {
  background: var(--mrea-orange-light);
  border-radius: var(--mrea-radius);
  padding: 28px;
}

.podcast-show-mrea .mrea-steps-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.podcast-show-mrea .mrea-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.podcast-show-mrea .mrea-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--mrea-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mrea-white);
  font-size: 14px;
  font-weight: 800;
}

.podcast-show-mrea .mrea-step-text {
  font-size: 14px;
  color: var(--mrea-gray-700);
  line-height: 1.5;
}

.podcast-show-mrea .mrea-step-text strong {
  color: var(--mrea-gray-900);
  display: block;
  margin-bottom: 2px;
}

.podcast-show-mrea .mrea-trust-signal {
  font-size: 13px;
  color: var(--mrea-gray-500);
  text-align: center;
  margin-top: 12px;
}

.podcast-show-mrea .mrea-guest-seeking {
  margin-top: 32px;
  padding: 24px;
  background: var(--mrea-gray-100);
  border-radius: var(--mrea-radius);
  border: 1px solid var(--mrea-gray-200);
}

.podcast-show-mrea .mrea-guest-seeking h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.podcast-show-mrea .mrea-booking-cta {
  margin-top: 28px;
}

.podcast-show-mrea .mrea-episodes-section {
  padding: 48px 40px;
  border-bottom: 1px solid var(--mrea-gray-200);
}

.podcast-show-mrea .mrea-episodes-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.podcast-show-mrea .mrea-episode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.podcast-show-mrea .mrea-episode-card {
  border: 1px solid var(--mrea-gray-200);
  border-radius: var(--mrea-radius);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.podcast-show-mrea .mrea-episode-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.podcast-show-mrea .mrea-episode-card .ep-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}

.podcast-show-mrea .mrea-episode-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--mrea-gray-900);
  line-height: 1.3;
  flex: 1;
  margin: 0;
}

.podcast-show-mrea .mrea-episode-card .ep-num {
  font-size: 12px;
  color: var(--mrea-gray-500);
  background: var(--mrea-gray-100);
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.podcast-show-mrea .mrea-episode-card .ep-guest {
  font-size: 14px;
  color: var(--mrea-orange);
  font-weight: 600;
  margin-bottom: 8px;
}

.podcast-show-mrea .mrea-episode-card .ep-guest a {
  color: var(--mrea-orange);
  text-decoration: none;
}

.podcast-show-mrea .mrea-episode-card .ep-desc {
  font-size: 13px;
  color: var(--mrea-gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}

.podcast-show-mrea .mrea-episode-card .ep-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.podcast-show-mrea .mrea-episode-card .ep-date {
  font-size: 12px;
  color: var(--mrea-gray-500);
}

.podcast-show-mrea .mrea-mini-play {
  width: 36px;
  height: 36px;
  background: var(--mrea-orange-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mrea-orange);
  font-size: 14px;
  border: 1px solid var(--mrea-orange-border);
  text-decoration: none;
}

.podcast-show-mrea .mrea-view-all-link {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.podcast-show-mrea .mrea-view-all-link a {
  color: var(--mrea-orange);
  text-decoration: none;
}

.podcast-show-mrea .mrea-stats-section {
  padding: 48px 40px;
  background: var(--mrea-dark-band);
  color: var(--mrea-white);
}

.podcast-show-mrea .mrea-stats-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}

.podcast-show-mrea .mrea-stats-grid {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.podcast-show-mrea .mrea-stat-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mrea-radius);
  padding: 24px;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.podcast-show-mrea .mrea-stat-card-dark .number {
  font-size: 32px;
  font-weight: 800;
  color: var(--mrea-orange);
}

.podcast-show-mrea .mrea-stat-card-dark .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.podcast-show-mrea .mrea-notable-guests {
  margin-bottom: 28px;
}

.podcast-show-mrea .mrea-notable-guests h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  text-align: center;
}

.podcast-show-mrea .mrea-guest-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.podcast-show-mrea .mrea-guest-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.podcast-show-mrea .mrea-reviews-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.podcast-show-mrea .mrea-review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mrea-radius-sm);
  padding: 20px;
  max-width: 340px;
  text-align: center;
}

.podcast-show-mrea .mrea-review-card .stars {
  color: var(--mrea-orange);
  font-size: 16px;
  margin-bottom: 8px;
}

.podcast-show-mrea .mrea-review-card .quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}

.podcast-show-mrea .mrea-review-card .source {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.podcast-show-mrea .mrea-related-section {
  padding: 48px 40px;
  background: var(--mrea-gray-100);
  border-top: 1px solid var(--mrea-gray-200);
}

.podcast-show-mrea .mrea-related-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.podcast-show-mrea .mrea-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.podcast-show-mrea .mrea-related-card {
  background: var(--mrea-white);
  border-radius: var(--mrea-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--mrea-gray-200);
}

.podcast-show-mrea .mrea-related-cover {
  width: 100%;
  height: 160px;
  background: var(--mrea-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mrea-gray-500);
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
}

.podcast-show-mrea .mrea-related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-show-mrea .mrea-related-info {
  padding: 16px;
}

.podcast-show-mrea .mrea-related-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.podcast-show-mrea .mrea-related-info .r-host {
  font-size: 13px;
  color: var(--mrea-orange);
  margin-bottom: 6px;
}

.podcast-show-mrea .mrea-related-info .r-desc {
  font-size: 12px;
  color: var(--mrea-gray-500);
  line-height: 1.4;
  margin-bottom: 10px;
}

.podcast-show-mrea .mrea-related-info a {
  font-size: 13px;
  color: var(--mrea-orange);
  text-decoration: none;
  font-weight: 600;
}

.podcast-show-mrea .mrea-final-cta {
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--mrea-orange) 0%, #e8650a 100%);
  text-align: center;
  color: var(--mrea-white);
}

.podcast-show-mrea .mrea-final-cta h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.podcast-show-mrea .mrea-final-cta .mrea-subtitle {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-show-mrea .mrea-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.podcast-show-mrea .mrea-btn-white {
  background: var(--mrea-white);
  color: var(--mrea-orange);
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--mrea-radius-sm);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.podcast-show-mrea .mrea-btn-outline-white {
  background: transparent;
  color: var(--mrea-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--mrea-radius-sm);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.podcast-show-mrea .mrea-final-cta .trust {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}

.podcast-show-mrea .mrea-media-section {
  padding: 48px 40px;
  border-bottom: 1px solid var(--mrea-gray-200);
}

.podcast-show-mrea .mrea-media-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.podcast-show-mrea .mrea-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.podcast-show-mrea .mrea-media-item {
  position: relative;
  border-radius: var(--mrea-radius-sm);
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 10;
}

.podcast-show-mrea .mrea-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .podcast-show-mrea .mrea-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
  }

  .podcast-show-mrea .mrea-hero-cover {
    width: 280px;
    height: 280px;
    min-width: 280px;
  }

  .podcast-show-mrea .mrea-hero-actions-top {
    justify-content: center;
    width: 100%;
    position: static;
    margin-bottom: 12px;
  }

  .podcast-show-mrea .mrea-hero-ctas {
    justify-content: center;
  }

  .podcast-show-mrea .mrea-listen-icons {
    justify-content: center;
  }

  .podcast-show-mrea .mrea-tags-row {
    justify-content: center;
  }

  .podcast-show-mrea .mrea-stats-row {
    justify-content: center;
  }

  .podcast-show-mrea .mrea-booking-grid {
    grid-template-columns: 1fr;
  }

  .podcast-show-mrea .mrea-episode-grid {
    grid-template-columns: 1fr;
  }

  .podcast-show-mrea .mrea-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .podcast-show-mrea .mrea-host-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .podcast-show-mrea .mrea-host-credentials {
    justify-content: center;
  }

  .podcast-show-mrea .mrea-host-socials .gp-social-row {
    justify-content: center;
  }

  .podcast-show-mrea .mrea-breadcrumb,
  .podcast-show-mrea .mrea-about-section,
  .podcast-show-mrea .mrea-host-section,
  .podcast-show-mrea .mrea-booking-section,
  .podcast-show-mrea .mrea-episodes-section,
  .podcast-show-mrea .mrea-stats-section,
  .podcast-show-mrea .mrea-related-section,
  .podcast-show-mrea .mrea-final-cta,
  .podcast-show-mrea .mrea-media-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .podcast-show-mrea .mrea-related-grid {
    grid-template-columns: 1fr;
  }

  .podcast-show-mrea .mrea-hero-content h1 {
    font-size: 26px;
  }
}

/* ——— Dark mode ——— */
[data-theme="dark"] .podcast-show-mrea {
  --mrea-gray-900: var(--text-primary);
  --mrea-gray-700: var(--text-secondary, #94a3b8);
  --mrea-gray-500: rgba(248, 250, 252, 0.55);
  --mrea-gray-300: rgba(248, 250, 252, 0.2);
  --mrea-gray-200: rgba(248, 250, 252, 0.12);
  --mrea-gray-100: rgba(248, 250, 252, 0.06);
  --mrea-white: var(--card-background, #293549);
}

[data-theme="dark"] .podcast-show-mrea__page {
  background: var(--card-background, #293549);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .podcast-show-mrea .mrea-hero {
  background: linear-gradient(
    180deg,
    var(--background-color, #1e293b) 0%,
    var(--card-background, #293549) 100%
  );
}

[data-theme="dark"] .podcast-show-mrea .mrea-mini-stat {
  background: var(--card-background, #293549);
}

[data-theme="dark"] .podcast-show-mrea .mrea-icon-btn {
  background: var(--card-background, #293549);
  color: var(--text-primary);
  border-color: rgba(248, 250, 252, 0.15);
}

[data-theme="dark"] .podcast-show-mrea .mrea-host-card {
  background: var(--background-color, #1e293b);
  box-shadow: none;
}

[data-theme="dark"] .podcast-show-mrea .mrea-related-card {
  background: var(--card-background, #293549);
}

[data-theme="dark"] .podcast-show-mrea .mrea-related-section {
  background: var(--background-color, #1e293b);
}

[data-theme="dark"] .podcast-show-mrea .mrea-host-section {
  background: var(--background-color, #1e293b);
}

[data-theme="dark"] .podcast-show-mrea .mrea-requirements-box,
[data-theme="dark"] .podcast-show-mrea .mrea-embedded-player {
  background: rgba(248, 250, 252, 0.05);
}

[data-theme="dark"] .podcast-show-mrea .mrea-steps-box {
  background: rgba(245, 124, 32, 0.15);
}

[data-theme="dark"] .podcast-show-mrea .mrea-guest-seeking {
  background: rgba(248, 250, 252, 0.05);
}

[data-theme="dark"] .podcast-show-mrea .mrea-episode-card {
  background: var(--card-background, #293549);
}

[data-theme="dark"] .podcast-show-mrea .mrea-episode-card .ep-num {
  background: rgba(248, 250, 252, 0.08);
}

[data-theme="dark"] .podcast-show-mrea .mrea-stats-section {
  background: #12121f;
}

[data-theme="dark"] .podcast-show-mrea .mrea-award-badge {
  color: var(--mrea-gray-900);
}

[data-theme="dark"] #guestApplicationModal .modal-content {
  background-color: var(--card-background) !important;
  background: var(--card-background) !important;
  color: var(--text-primary) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] #guestApplicationModal .modal-header {
  background-color: var(--card-background) !important;
  background: var(--card-background) !important;
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] #guestApplicationModal .modal-title {
  color: var(--text-primary) !important;
}

[data-theme="dark"] #guestApplicationModal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}

[data-theme="dark"] #guestApplicationModal .btn-close:hover {
  opacity: 1;
}

[data-theme="dark"] #guestApplicationModal .modal-body {
  background-color: var(--card-background) !important;
  background: var(--card-background) !important;
  color: var(--text-primary) !important;
}

[data-theme="dark"] #guestApplicationModal .modal-body::-webkit-scrollbar-track {
  background: var(--background-color) !important;
}

[data-theme="dark"] #guestApplicationModal .modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] #guestApplicationModal .form-label,
[data-theme="dark"] #guestApplicationModal label {
  color: var(--text-primary) !important;
}

[data-theme="dark"] #guestApplicationModal .form-control {
  background: var(--background-color) !important;
  color: var(--text-primary) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] #guestApplicationModal .form-control::placeholder {
  color: var(--text-secondary) !important;
  opacity: 0.6;
}

[data-theme="dark"] #guestApplicationModal .form-control:focus {
  background: var(--background-color) !important;
  color: var(--text-primary) !important;
  border-color: var(--primary-color) !important;
}

[data-theme="dark"] #guestApplicationModal textarea.form-control {
  background: var(--background-color) !important;
  color: var(--text-primary) !important;
}

[data-theme="dark"] #guestApplicationModal .border {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] #guestApplicationModal h5,
[data-theme="dark"] #guestApplicationModal strong {
  color: var(--text-primary) !important;
}

[data-theme="dark"] #guestApplicationModal p,
[data-theme="dark"] #guestApplicationModal span {
  color: var(--text-secondary) !important;
}

[data-theme="dark"] #guestApplicationModal a {
  color: var(--primary-color) !important;
}

[data-theme="dark"] #guestApplicationModal .one-sheet-section {
  background: var(--background-color) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] #guestApplicationModal .btn-primary {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-on-primary) !important;
}

[data-theme="dark"] #guestApplicationModal .btn-primary:hover {
  opacity: 0.9;
}

[data-theme="dark"] #guestApplicationModal .text-info {
  color: var(--info-color) !important;
}

[data-theme="dark"] #guestApplicationModal .text-warning {
  color: var(--warning-color) !important;
}

[data-theme="dark"] #guestApplicationModal .dropzone,
[data-theme="dark"] #guestApplicationModal .dz-message {
  background: var(--background-color) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-secondary) !important;
}

[data-theme="dark"] #guestApplicationModal .dz-preview {
  background: var(--card-background) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.mrea-embed-shell {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: var(--embed-height, 180px);
  background: rgba(15, 23, 42, 0.04);
  isolation: isolate;
}

[data-theme="dark"] .mrea-embed-shell {
  background: rgba(148, 163, 184, 0.14);
}

.mrea-embed-shell__skeleton,
.mrea-embed-shell__spinner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mrea-embed-shell__skeleton {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.08) 50%, rgba(15, 23, 42, 0.04) 100%);
  background-size: 220% 100%;
  animation: mrea-embed-shimmer 1.35s linear infinite;
}

[data-theme="dark"] .mrea-embed-shell__skeleton {
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.12) 0%, rgba(148, 163, 184, 0.22) 50%, rgba(148, 163, 184, 0.12) 100%);
  background-size: 220% 100%;
}

.mrea-embed-shell__spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mrea-embed-shell__spinner-dot {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(15, 23, 42, 0.15);
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: mrea-embed-spin 0.9s linear infinite;
}

[data-theme="dark"] .mrea-embed-shell__spinner-dot {
  border-color: rgba(148, 163, 184, 0.2);
  border-top-color: #60a5fa;
}

.mrea-embed-shell__frame {
  position: relative;
  opacity: 0;
  transition: opacity 260ms ease;
}

.mrea-embed-shell.is-loaded .mrea-embed-shell__frame {
  opacity: 1;
}

.mrea-embed-shell.is-loaded .mrea-embed-shell__skeleton,
.mrea-embed-shell.is-loaded .mrea-embed-shell__spinner,
.mrea-embed-shell.has-error .mrea-embed-shell__spinner {
  opacity: 0;
}

@keyframes mrea-embed-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

@keyframes mrea-embed-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Host section — social row (match guest profile gp-social-* pills; lives under bio) */
.podcast-show-mrea .gp-social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.podcast-show-mrea .gp-social-icon {
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  width: auto;
  box-sizing: border-box;
  background: var(--mrea-gray-100);
  border: 1px solid var(--mrea-gray-300);
  border-radius: var(--mrea-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mrea-gray-700);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.podcast-show-mrea .gp-social-icon__text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: inherit;
}

.podcast-show-mrea .gp-social-icon:hover {
  background: var(--mrea-orange-light);
  color: var(--mrea-orange);
  border-color: var(--mrea-orange-border);
}

[data-theme="dark"] .podcast-show-mrea .gp-social-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] .podcast-show-mrea .gp-social-icon:hover {
  background: rgba(245, 124, 32, 0.2);
  color: var(--mrea-orange);
  border-color: rgba(245, 124, 32, 0.45);
}
