/* Generated from tools/build-pages.js. Do not edit this file directly. */

/* Source: shared/styles/base/variables.css */
:root {
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-right: env(safe-area-inset-right, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-left: env(safe-area-inset-left, 0px);
  --visual-viewport-height: 100vh;
  --visual-viewport-offset-top: 0px;
  --keyboard-inset: 0px;
}

@supports (height: 100dvh) {
  :root {
    --visual-viewport-height: 100dvh;
  }
}

/* Source: shared/styles/base/global.css */
/* Source: shared/styles/base/global/01-foundation.css */
/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #191B1C;
  color: #333;
  line-height: 1.6;
}

/* Header styling */
header {
  background: #262727;
  color: #fff;
  padding: 5px;
  text-align: center;
}

header img {
  width: 550px;
}

header h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

/* Search container */
.search-container {
  position: sticky;
  top: 0;
  background-color: #1F2122;
  padding: 10px 0;
  z-index: 1000;
  border-bottom: 1px solid #3E4446;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

#search {
  color: rgb(43, 43, 43);
  background-color: #121212;
  border-color: #4d4d4d;
  color: white;
}

input[type="text"] {
  padding: 10px;
  width: 80%;
  max-width: 400px;
  margin-right: 15px;
  border: 2px solid #313537;
  border-radius: 5px;
  font-size: 1rem;
}

input:not([type="hidden"]):focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
select:focus-visible {
  outline: 2px solid #8a8a8a;
  outline-offset: 2px;
}

/* Podcast grid */
#podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px;
}

.podcast-card {
  background-color: #1d1d1d;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  text-decoration: none;

  /* Added */
  border-bottom: 2px solid transparent;
  transition: transform 0.3s ease-in-out, border-color 0.3s ease;
}

.podcast-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 2px solid #35393B;
}

.podcast-card h2 {
  font-size: 1.3rem;
  padding: 10px;
  color: #ccc;
}

.podcast-card .tags {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.podcast-card .rating {
  font-weight: bold;
  color: #ccc;
}

.podcast-card:hover {
  transform: translateY(-5px);
  border-bottom-color: #4d4d4d; /* Changed from full border to just the color */
}


.podcast-detail {
  max-width: none;
  margin: 0;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: inherit;
  color: #ccc;
}

.podcast-header {
  text-align: center;
}

.podcast-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.cover {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.summary-item {
  font-size: 1.2rem;
  margin: 10px 0;
}

.rating-item {
  font-size: 1.2rem;
  margin: 5px 0;
}

.quote {
  font-size: 1.4rem;
  font-style: italic;
  margin: 20px 0;
  border-left: 5px solid #7A1A2F;
  padding-left: 20px;
}

.summary-text h3 {
  font-size: 1.8rem;
  margin-top: 20px;
}

.community-review-panel {
  position: relative;
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(var(--community-accent-rgb, 122, 26, 47), 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(18, 20, 22, 0.92));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.community-review-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--community-accent-rgb, 201, 91, 110), 0.92), transparent);
  opacity: 0.8;
}

.community-review-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a4adb0;
}

.community-review-panel h2 {
  color: #f2f2f2;
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  line-height: 1.1;
}

.community-review-summary {
  max-width: 48ch;
  color: #d7dbdd;
  font-size: 1rem;
  line-height: 1.6;
}

.community-review-buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.community-review-button,
.community-review-clear {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 14, 16, 0.82);
  color: #f3f4f5;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, color 160ms ease;
}

.community-review-button:hover,
.community-review-button:focus-visible,
.community-review-clear:hover,
.community-review-clear:focus-visible {
  border-color: rgba(var(--community-accent-rgb, 122, 26, 47), 0.6);
  background: rgba(var(--community-accent-rgb, 122, 26, 47), 0.2);
  transform: translateY(-1px);
}

.community-review-button.is-active {
  border-color: rgba(var(--community-accent-rgb, 122, 26, 47), 0.85);
  background:
    linear-gradient(
      180deg,
      rgba(var(--community-accent-rgb, 122, 26, 47), 0.46),
      rgba(var(--community-accent-rgb, 122, 26, 47), 0.3)
    );
  color: #fff;
}

.community-review-button:disabled,
.community-review-clear:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.community-review-clear {
  justify-self: start;
  padding: 0 18px;
}

.community-review-distribution {
  display: grid;
  gap: 12px;
}

.community-distribution-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 14px;
}

.community-distribution-label,
.community-distribution-count {
  color: #d7dbdd;
  font-size: 0.92rem;
}

.community-distribution-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.35);
}

.community-distribution-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(var(--community-accent-rgb, 122, 26, 47), 0.78),
      rgba(var(--community-accent-rgb, 201, 91, 110), 0.96)
    );
  transition: width 180ms ease;
}



.episode-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.episode-info span {
  flex-grow: 1;  /* Makes the text grow and take available space */
}

.cta {
  margin-left: 10px;  /* Space between the episode details and the button */
}


.podcast-detail a.back {
  display: inline-block;
  margin-bottom: 30px;
  color: #ccc;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #4d4d4d;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.episodes {
  margin-top: 30px;
}

.season-selector {
  margin-bottom: 15px;
}
/* Source: shared/styles/base/global/02-layout.css */
#season-select {
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
}

.episode-list ul {
  list-style-type: none;
  padding: 0;
}

.episode-list li {
  font-size: 1.2rem;
  margin: 8px 0;
  padding: 0px;
  background-color: #1f1f1f;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: white;
}

.episode-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease-in-out
}

.episode-logo {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 5px;
}

.episode-list a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
}

.episode-list a:hover {
  color: #979797;

}

.episode-list li span {
  font-size: 1em;
}



.episode-list li:hover {
  transform: translateY(-5px);

}

.episode-list li[style="display: none;"] {
  display: none;
}


/* Tags styling */
.tag {
  display: inline-block;
  background-color: #313537;
  color: #ccc;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 20px;
  margin: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.tag:hover {
  background-color: #535353;
  transform: scale(1.05);
}

.tag:active {
  transform: scale(1);
}

/* Back to top button */
#backToTop {
  position: fixed;
  bottom: 100px;
  right: 20px;
  padding: 10px 15px;
  font-size: 1rem;
  background-color: #47474790;
  color: #fff;
  border: none;
  border-radius: 5px;
  display: none;
  cursor: pointer;
  z-index: 1000;
}

/* Footer styling */
footer {
  background-color: #151515;
  color: white;
  padding: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  text-align: center;
}

@media (max-width: 720px) {
  .community-review-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-review-panel {
    padding: 20px;
  }

  .community-review-summary {
    max-width: none;
  }

  .community-review-clear {
    width: 100%;
    justify-self: stretch;
  }
}

.left-content {
  display: flex;
  align-items: center;
  justify-content: start;
}

.left-content img {
  height: 50px;
  width: 50px;
  margin-right: 10px;
}

.center-content {
  flex-grow: 1;
  text-align: center;
}

footer a {
  color: #007bff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('/shared/styles/base/global/your-hero-image.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-text .logo {
  width: 150px;
  margin: 20px 0;
}

.hero-text .cta-button {
  background-color: #888888;
  color: white;
  padding: 10px 20px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
}

.hero-text .cta-button:hover {
  background-color: #ff0000;
}
/* Basic styles for the filter container */
.filter-container {
  position: relative;
  display: inline-block;
  margin-left: 15px; /* Optional: To space it out from other elements */
  margin-right: 15px;
}

/* Initially hide the dropdown */
#filterDropdown.hidden {
  display: none;
}

/* Dropdown container styles */
#filterDropdown {
  position: absolute;
  top: 110%; /* Adjusted for spacing */
  left: 0;
  background-color: #181A1B;
  border: 1px solid #3A3E41;
  padding: 15px;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 200px; /* Adjust the width to your preference */
  max-height: 300px; /* Add a max height for better scrolling behavior */
  overflow-y: auto; /* Enable scrolling if needed */
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}

/* Optionally, style for the toggle button */
#filterToggle {
  padding: 8px 12px;
  font-size: 14px;
  background-color: #1F2122;
  border: 1px solid #3E4446;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effect for the filter button */
#filterToggle:hover {
  background-color: #2A2D2F;
}

/* Checkbox styling inside the dropdown */
#filterDropdown input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #646464; /* Custom checkbox color */
}

/* Checkbox label style */
#filterDropdown label {
  display: block;
  padding: 5px 0;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s ease;
  color: #ccc;
}

/* Hover effect on the labels */
#filterDropdown label:hover {
  color: #909090; /* Highlight on hover */
}

/* Basic styling for tags */
#filterDropdown .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#filterDropdown .tags .tag {
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 5px 12px;
  font-size: 12px;
  color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effect on tags */
#filterDropdown .tags .tag:hover {
  background-color: #ddd;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  /* Adjusting filter button */
  #filterToggle {
    padding: 10px;
    font-size: 16px;
  }

  /* Adjust the dropdown width and padding for mobile */
  #filterDropdown {
    width: 100%; /* Take full width */
    padding: 10px;
  }

  /* Stack the checkboxes on mobile */
  #filterDropdown label {
    padding: 8px 0;
  }
}

footer .right-content img {
  max-width: 50px;  /* Adjust this value based on what looks best */
  height: auto;     /* Keeps the aspect ratio of the images intact */
  margin-right: 10px; /* Adds some space between the images */
}


.similar-to img {
  width: 100px;
}
.similar-to {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Source: shared/styles/base/global/04-loading.css */
.archive-skeleton-card {
  position: relative;
  display: grid;
  gap: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(5, 8, 11, 0.96)),
    rgba(5, 8, 11, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.archive-skeleton-copy {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.archive-skeleton-block {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.archive-skeleton-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: archive-skeleton-shimmer 1.3s ease-in-out infinite;
}

.archive-skeleton-cover,
.detail-skeleton-cover {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.archive-skeleton-title {
  height: 1.15rem;
  width: 68%;
}

.archive-skeleton-heading {
  height: clamp(2rem, 4vw, 3.2rem);
  width: min(100%, 24rem);
  border-radius: 22px;
}

.archive-skeleton-line {
  height: 0.88rem;
  width: 100%;
}

.archive-skeleton-line-short {
  width: 56%;
}

.archive-skeleton-rating {
  height: 0.96rem;
  width: 48%;
}

.archive-skeleton-chip {
  height: 0.9rem;
  width: 7rem;
}

.detail-loading-shell,
.detail-loading-card {
  min-width: 0;
}

.detail-loading-card {
  display: grid;
  gap: 14px;
}

.search-highlight {
  display: inline-block;
  padding: 0 0.12em;
  border-radius: 0.32em;
  background: rgba(229, 72, 56, 0.18);
  color: #fff7f0;
}

.detail-copy-status,
.collection-copy-status {
  min-height: 1.2rem;
  color: rgba(240, 238, 233, 0.68);
  font-size: 0.82rem;
  line-height: 1.4;
}

img.is-image-fallback {
  object-fit: contain !important;
  background:
    radial-gradient(circle at 50% 28%, rgba(229, 72, 56, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(10, 13, 17, 0.96), rgba(4, 6, 9, 1));
}

@keyframes archive-skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .archive-skeleton-block::after {
    animation: none !important;
    transform: none !important;
    opacity: 0.18;
  }
}
/* Source: shared/styles/base/global/05-toast.css */
.archive-toast-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1600;
  width: min(calc(100vw - 32px), 360px);
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.archive-toast-live {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.archive-toast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(8, 11, 15, 0.96);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  pointer-events: auto;
}

.archive-toast[data-tone="success"] {
  border-color: rgba(118, 214, 90, 0.32);
  background:
    radial-gradient(circle at top left, rgba(118, 214, 90, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(8, 11, 15, 0.96);
}

.archive-toast[data-tone="error"] {
  border-color: rgba(239, 89, 67, 0.34);
  background:
    radial-gradient(circle at top left, rgba(239, 89, 67, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(8, 11, 15, 0.96);
}

.archive-toast-content {
  display: grid;
  gap: 4px;
}

.archive-toast-label {
  color: rgba(247, 247, 243, 0.62);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-toast-message {
  color: var(--text-primary);
  font-size: 0.93rem;
  line-height: 1.45;
}

.archive-toast-dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(247, 247, 243, 0.78);
  cursor: pointer;
}

.archive-toast-dismiss:hover,
.archive-toast-dismiss:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.archive-toast-dismiss svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 560px) {
  .archive-toast-stack {
    left: max(12px, var(--safe-area-left));
    right: max(12px, var(--safe-area-right));
    bottom: max(12px, var(--safe-area-bottom));
    width: auto;
  }
}

/* Source: shared/styles/base/header-footer.css */
/* Header and footer overrides remain in the imported legacy stylesheet for parity. */

/* Source: shared/styles/home/cards/01-surface.css */
.home-page {
  --page-bg: #06080b;
  --surface: rgba(10, 13, 16, 0.88);
  --surface-strong: #0d1014;
  --surface-soft: rgba(255, 255, 255, 0.05);
  --surface-border: rgba(255, 255, 255, 0.16);
  --surface-border-strong: rgba(255, 255, 255, 0.24);
  --text-primary: #f7f7f3;
  --text-secondary: rgba(247, 247, 243, 0.72);
  --text-muted: rgba(247, 247, 243, 0.52);
  --accent: #e54838;
  --accent-soft: rgba(229, 72, 56, 0.14);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 18px 38px rgba(0, 0, 0, 0.32);
  --shell-max-width: 1480px;
  --shell-inline-padding: 24px;
  --shell-inline-padding-tablet: 12px;
  --shell-inline-padding-phone: 10px;
  --floating-edge: 18px;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 22%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.025), transparent 18%),
    linear-gradient(180deg, #040507 0%, #07090c 48%, #050608 100%);
  color: var(--text-primary);
  font-family: "Helvetica Neue", "Avenir Next", "Segoe UI", sans-serif;
}

.home-page {
  scroll-padding-top: calc(88px + var(--safe-area-top));
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 90%);
  opacity: 0.28;
}

.home-page img {
  display: block;
}

.home-page.site-nav-open {
  overflow: hidden;
}

@media (max-width: 959px) {
  .home-page.chat-panel-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}

.home-page a {
  color: inherit;
}

.home-page button,
.home-page input {
  font: inherit;
}

.home-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(239, 89, 67, 0.32);
  border-radius: 8px;
  background: rgba(7, 10, 13, 0.9);
  color: rgba(247, 247, 243, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transform: translateY(-145%);
  opacity: 0;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease, color 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  border-color: rgba(239, 89, 67, 0.54);
  color: var(--text-primary);
}

.home-main,
#site-footer {
  position: relative;
  z-index: 1;
}

.home-page header {
  background: transparent;
  padding: 0;
  text-align: left;
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(var(--shell-max-width), calc(100% - (var(--shell-inline-padding) * 2)));
  margin: 0 auto;
  padding: 28px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.site-brand {
  display: block;
  width: clamp(250px, 21vw, 356px);
  /* Preserve the original header height now that the SVG has no transparent canvas. */
  aspect-ratio: 977 / 255;
  justify-self: start;
}

.site-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: left center;
}

.site-nav-toggle,
.site-nav-close {
  display: none;
}

.site-nav-shell,
.site-nav-drawer {
  display: contents;
}

.site-nav-backdrop,
.site-nav-drawer-head {
  display: none;
}

.site-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.site-nav a,
.site-nav button {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1;
  padding: 8px 0;
  border: 0;
  background: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-nav a::after,
.site-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav button:hover,
.site-nav button:focus-visible {
  color: var(--text-primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.site-nav button:hover::after,
.site-nav button:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  position: relative;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-self: end;
}

.site-nav-kicker,
.site-nav-drawer-copy {
  margin: 0;
}

.site-nav-link-body {
  display: block;
}

.site-nav-link-label {
  display: block;
}

.site-nav-link-detail,
.site-nav-link-arrow {
  display: none;
}

.site-nav-toggle {
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 10, 13, 0.9);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav-toggle-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav-toggle-icon {
  display: inline-grid;
  gap: 4px;
}

.site-nav-toggle-icon span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav-close {
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 247, 243, 0.92);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav-close svg {
  width: 18px;
  height: 18px;
}

.profile-button {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.92);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.profile-avatar {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
}

.profile-avatar svg {
  width: 22px;
  height: 22px;
}

.profile-button:hover,
.profile-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--surface-border-strong);
}

.home-page #chat-toggle.chat-toggle-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background: linear-gradient(135deg, rgba(14, 19, 25, 0.96), rgba(35, 42, 52, 0.96));
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    opacity 140ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear;
}

.home-page.chat-panel-open #chat-toggle.chat-toggle-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.72);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    opacity 120ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 320ms;
}

.chat-toggle-button.is-delayed-mobile-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.88);
}

.home-page #chat-toggle.chat-toggle-button span {
  display: none;
}

.chat-toggle-button svg,
.chat-close-button svg,
#backToTop svg,
.search-icon svg,
#stickySearchToggle svg,
#filterToggle svg,
#stickyFilterToggle svg {
  width: 20px;
  height: 20px;
}

.chat-toggle-button:hover,
.chat-toggle-button:focus-visible,
.chat-close-button:hover,
.chat-close-button:focus-visible,
#stickySearchToggle:hover,
#stickySearchToggle:focus-visible,
#filterToggle:hover,
#filterToggle:focus-visible,
#stickyFilterToggle:hover,
#stickyFilterToggle:focus-visible,
.browse-mode-button:hover,
.browse-mode-button:focus-visible,
.collection-action:hover,
.collection-action:focus-visible,
#sendMessageButton:hover,
#sendMessageButton:focus-visible,
#backToTop:hover,
#backToTop:focus-visible {
  transform: translateY(-1px);
  border-color: var(--surface-border-strong);
}

.home-main {
  width: min(var(--shell-max-width), calc(100% - (var(--shell-inline-padding) * 2)));
  margin: 0 auto;
  padding-bottom: 64px;
}

/* Source: shared/styles/home/cards/02-hero-search.css */
.hero-shell {
  margin-bottom: 26px;
  position: relative;
  z-index: 3;
}

.hero-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.98) 0%, rgba(4, 6, 9, 0.95) 36%, rgba(5, 8, 11, 0.58) 64%, rgba(6, 8, 11, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.02) 52%, rgba(3, 5, 8, 0.42) 74%, rgba(3, 5, 8, 0.82) 100%),
    url("/images/hero-archive-dish.webp") right center / cover no-repeat,
    #05070a;
  box-shadow: var(--shadow-lg);
  padding: 38px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
  opacity: 0.26;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 54% 70%, rgba(229, 72, 56, 0.18), transparent 10%),
    radial-gradient(circle at 80% 24%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, transparent 66%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.archive-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
  width: 100%;
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.archive-trust-item {
  margin: 0;
  color: rgba(247, 247, 243, 0.88);
  font-size: 0.92rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center;
}

.archive-trust-item strong,
.archive-trust-item span {
  font: inherit;
}

.archive-trust-item strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-copy {
  max-width: 820px;
  padding-top: 8px;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(2.95rem, 4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

.hero-copy p {
  max-width: 42ch;
  font-size: clamp(1.03rem, 1.12vw, 1.2rem);
  line-height: 1.34;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-hero-route {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 12px 18px 13px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 11, 14, 0.84);
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-hero-route-kicker {
  color: rgba(247, 247, 243, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero-route-label {
  color: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.08;
  white-space: nowrap;
}

.home-hero-route:hover,
.home-hero-route:focus-visible {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(15, 18, 24, 0.94);
  transform: translateY(-1px);
  outline: none;
}

.home-hero-route.is-primary {
  color: #fff7f4;
  border-color: rgba(239, 89, 67, 0.82);
  background: linear-gradient(135deg, rgba(255, 108, 77, 0.92), rgba(202, 61, 44, 0.92));
  box-shadow:
    0 18px 30px rgba(114, 27, 19, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-hero-route.is-primary .home-hero-route-kicker {
  color: rgba(255, 240, 235, 0.74);
}

.home-hero-route.is-primary:hover,
.home-hero-route.is-primary:focus-visible {
  border-color: rgba(255, 197, 182, 0.82);
  background: linear-gradient(135deg, rgba(255, 123, 94, 0.96), rgba(214, 73, 55, 0.96));
}

.home-page .search-container {
  position: relative;
  top: auto;
  z-index: 2;
  justify-content: initial;
  color: inherit;
  border-bottom: 0;
  background: transparent;
  display: grid;
  grid-template-columns: minmax(460px, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-top: auto;
  margin-bottom: -6px;
  padding: 0;
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(7, 10, 13, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.search-icon {
  position: absolute;
  left: 20px;
  color: var(--text-secondary);
}

.home-page #search,
.home-page #stickySearch {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--text-primary);
}

.home-page #search {
  min-height: 56px;
  padding: 13px 18px 13px 58px;
  font-size: 1.02rem;
}

.home-page #search::placeholder,
.home-page #stickySearch::placeholder,
.home-page #userInput::placeholder {
  color: rgba(247, 247, 243, 0.44);
}

.home-page #search:focus,
.home-page #stickySearch:focus,
.home-page #userInput:focus {
  outline: none;
}

.search-actions {
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

@media (max-width: 979px) {
  .home-page .search-container {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .search-actions {
    flex-wrap: wrap;
    width: 100%;
  }
}

.filter-container {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  z-index: 4;
}

#filterToggle,
#stickyFilterToggle,
.sticky-search-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 10, 13, 0.88);
  color: var(--text-primary);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

#filterToggle {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
}

#stickyFilterToggle,
.sticky-search-toggle {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
}

#filterToggle[aria-expanded="true"],
#stickyFilterToggle[aria-expanded="true"] {
  border-color: rgba(229, 72, 56, 0.45);
  background: rgba(13, 16, 21, 0.96);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sticky-search-toggle[aria-expanded="true"] {
  border-color: rgba(229, 72, 56, 0.32);
  background: rgba(11, 14, 19, 0.94);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Source: shared/styles/home/cards/07-archive-cards.css */
.podcast-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
  padding: 0;
}

#podcast-grid {
  --archive-card-gap: 24px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px var(--archive-card-gap);
  align-items: stretch;
  padding: 0;
}

.home-page .podcast-card {
  --editorial-corner-width: clamp(38px, 18%, 44px);
  --editorial-corner-top: clamp(-8px, -0.3vw, -4px);
  --editorial-corner-left: clamp(8px, 3.6%, 12px);
  --editorial-ribbon-width: clamp(132px, 60%, 146px);
  --editorial-ribbon-height: clamp(25px, 9%, 29px);
  --editorial-ribbon-top: 61px;
  --editorial-ribbon-right: -25px;
  --editorial-ribbon-angle: 39deg;
  --editorial-ribbon-tail-width: clamp(38px, 17%, 44px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  overflow: visible;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(4, 6, 9, 0.98)),
    rgba(4, 6, 9, 0.98);
  text-align: left;
  text-decoration: none;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.home-page .podcast-card[hidden] {
  display: none !important;
}

.home-page .editorial-badges {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.home-page .editorial-badge {
  position: absolute;
  overflow: hidden;
}

.home-page .editorial-badge-artwork {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .editorial-badge-corner {
  top: var(--editorial-corner-top);
  left: var(--editorial-corner-left);
  z-index: 3;
  width: var(--editorial-corner-width);
}

.home-page .editorial-badge-ribbon {
  top: var(--editorial-ribbon-top);
  right: var(--editorial-ribbon-right);
  z-index: 2;
  width: var(--editorial-ribbon-width);
  height: var(--editorial-ribbon-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
  transform: rotate(var(--editorial-ribbon-angle));
  transform-origin: top right;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
}

.home-page .editorial-badge-ribbon::before,
.home-page .editorial-badge-ribbon::after {
  content: "";
  position: absolute;
}

.home-page .editorial-badge-ribbon::before {
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.3) 100%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, #22262d 0%, #13171d 56%, #090b10 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(5, 7, 10, 0.45);
}

.home-page .editorial-badge-ribbon::after {
  top: 3px;
  right: calc(var(--editorial-ribbon-tail-width) * -0.7);
  bottom: 3px;
  width: var(--editorial-ribbon-tail-width);
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, #1c2026 0%, #0f1318 100%);
  clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
}

.home-page .editorial-badge-ribbon-label {
  position: relative;
  z-index: 2;
  padding: 0 18px 0 14px;
  color: #f7f1e8;
  font-family: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", sans-serif;
  font-size: clamp(0.62rem, 0.72vw, 0.74rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42);
}

.home-page .podcast-card:hover,
.home-page .podcast-card:focus-visible {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
}

.home-page .podcast-card.is-disabled {
  cursor: default;
}

.home-page .podcast-card.is-disabled:hover,
.home-page .podcast-card.is-disabled:focus-visible {
  transform: none;
  box-shadow: var(--shadow-md);
}

.home-page .podcast-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.home-page .podcast-card .editorial-badge-artwork {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border-bottom: 0;
}

.home-page .podcast-card h2,
.home-page .podcast-card .tags,
.home-page .podcast-card .rating {
  padding-left: 16px;
  padding-right: 16px;
}

.home-page .podcast-card h2 {
  padding-top: 14px;
  padding-bottom: 12px;
  font-size: 1.06rem;
  line-height: 1.12;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .podcast-card .tags {
  margin: 0;
  min-height: 1.2em;
  color: rgba(240, 238, 233, 0.72);
  font-size: 0.84rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .podcast-card .tags[data-search-presentation="true"] {
  color: rgba(255, 214, 202, 0.86);
}

.home-page .podcast-card h2 .search-highlight,
.home-page .podcast-card .tags .search-highlight {
  padding: 0 0.1em;
}

.home-page .tag {
  margin: 0;
  min-width: 0;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-secondary);
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.home-page .tag:hover,
.home-page .tag:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  transform: none;
}

.home-page .podcast-card .rating {
  margin-top: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 16px;
  color: #f0eee9;
  font-size: 1rem;
}

.home-page .podcast-card .rating::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.home-page .archive-inline-score {
  display: grid;
  gap: 6px;
  flex: 0 0 auto;
  color: #f0eee9;
  min-width: 0;
  justify-items: center;
  text-align: center;
}

.home-page .community-inline-score {
  display: grid;
  gap: 6px;
  flex: 0 0 auto;
  color: #f0eee9;
  min-width: 0;
  justify-items: center;
  text-align: center;
}

.home-page .community-inline-score[hidden] {
  display: none !important;
}

.home-page .rating-divider {
  flex: 0 0 1px;
  align-self: center;
  width: 1px;
  height: 30px;
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.home-page .inline-score-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.home-page .inline-score-icon,
.home-page .community-inline-score svg {
  flex: 0 0 auto;
}

.home-page .archive-score-icon {
  color: #E54838;
  font-size: 1.08rem;
  line-height: 1;
}

.home-page .community-inline-score svg {
  width: 1.08rem;
  height: 0.96rem;
  fill: #63d81d;
}

.home-page .inline-score-value,
.home-page .community-inline-score-value {
  min-width: 0;
  white-space: nowrap;
}

.home-page .inline-score-label {
  color: rgba(240, 238, 233, 0.44);
  font-size: 0.58rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.home-page .community-card-widget {
  display: none;
}

#noResultsMsg {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--surface-border);
  background: rgba(10, 13, 17, 0.86);
  color: var(--text-secondary);
}

/* Source: shared/styles/home/cards/08-footer.css */
#site-footer {
  width: 100%;
  margin: 0;
  padding: clamp(28px, 2.6vw, 36px) clamp(20px, 2.8vw, 34px) clamp(24px, 2.4vw, 32px);
  display: grid;
  grid-template-columns: minmax(400px, 1.08fr) minmax(0, 1.72fr) minmax(280px, 0.96fr);
  gap: clamp(24px, 2.4vw, 34px);
  align-items: start;
  border: 0;
  border-top: 1px solid rgba(229, 72, 56, 0.24);
  background:
    radial-gradient(circle at top left, rgba(229, 72, 56, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(10, 13, 17, 0.96), rgba(5, 7, 10, 0.99));
  color: var(--text-secondary);
  position: relative;
  isolation: isolate;
  overflow: clip;
}

#site-footer a {
  color: var(--text-primary);
  text-decoration: none;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.footer-brand,
.footer-links,
.footer-support-panel {
  min-width: 0;
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

#site-footer a:hover,
#site-footer a:focus-visible {
  color: #ffffff;
}

#site-footer a:focus-visible {
  outline: 2px solid rgba(229, 72, 56, 0.52);
  outline-offset: 3px;
}

.footer-brand-mark {
  display: inline-flex;
  align-self: start;
  justify-self: center;
  width: min(100%, 400px);
  max-width: 400px;
}

.footer-brand-mark img {
  width: 100%;
  height: auto;
}

.footer-brand-note,
.footer-meta-row,
.footer-brand-subnote,
.footer-meta,
.footer-support-body,
.footer-support-copy,
.footer-link-heading {
  margin: 0;
}

.footer-brand-note {
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-secondary);
  margin-inline: auto;
  text-wrap: pretty;
}

.footer-meta-row {
  display: grid;
  gap: 10px;
  width: min(100%, 30ch);
  justify-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-subnote,
.footer-meta {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-meta a {
  color: var(--text-secondary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 14px clamp(18px, 2vw, 28px);
  align-content: start;
  justify-items: center;
  padding-top: 6px;
}

.footer-link-group {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.footer-link-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-link-group a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-secondary);
  transition: color 180ms ease;
}

#site-footer .footer-link-group a:hover,
#site-footer .footer-link-group a:focus-visible {
  color: rgba(229, 72, 56, 0.96);
}

.footer-support-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-support-kicker {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  text-align: center;
  text-wrap: balance;
}

.footer-support-body {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.footer-support-copy {
  max-width: 28ch;
  margin-inline: auto;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.footer-support-actions {
  display: grid;
  gap: 10px;
}

.footer-support-primary,
.footer-support-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-support-primary {
  background: rgba(229, 72, 56, 0.12);
  border-color: rgba(229, 72, 56, 0.28);
}

.footer-support-primary:hover,
.footer-support-primary:focus-visible {
  background: rgba(229, 72, 56, 0.2);
  border-color: rgba(229, 72, 56, 0.38);
}

.footer-support-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
}

.footer-support-secondary:hover,
.footer-support-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.footer-support-secondary img {
  width: 18px;
  height: 18px;
}

/* Source: shared/styles/home/cards/11-community-rating.css */
.community-card-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  position: absolute;
  top: calc(100% - 6px);
  left: -1px;
  right: -1px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(229, 72, 56, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(18, 22, 28, 0.98), rgba(9, 11, 15, 0.98)),
    rgba(9, 11, 15, 0.96);
  box-shadow: 0 26px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.community-card-controls::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 28px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(229, 72, 56, 0.22);
  border-left: 1px solid rgba(229, 72, 56, 0.22);
  background: rgba(18, 22, 28, 0.98);
  transform: rotate(45deg);
}

.community-rating-select,
.community-card-button,
.community-card-clear {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 6, 9, 0.7);
  color: var(--text-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, color 180ms ease;
}

.community-rating-select {
  appearance: none;
  padding: 0 40px 0 14px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(247, 247, 243, 0.7) 50%),
    linear-gradient(135deg, rgba(247, 247, 243, 0.7) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.community-card-button,
.community-card-clear {
  padding: 0 16px;
  cursor: pointer;
}

.community-card-button {
  background: linear-gradient(180deg, rgba(229, 72, 56, 0.3), rgba(229, 72, 56, 0.18));
  border-color: rgba(229, 72, 56, 0.42);
}

.community-card-clear {
  color: var(--text-secondary);
}

.community-rating-select:hover,
.community-rating-select:focus-visible,
.community-card-button:hover,
.community-card-button:focus-visible,
.community-card-clear:hover,
.community-card-clear:focus-visible,
.community-card-toggle:hover .community-card-action,
.community-card-toggle:focus-visible .community-card-action {
  border-color: rgba(229, 72, 56, 0.45);
  background: rgba(229, 72, 56, 0.16);
  color: var(--text-primary);
}

.community-card-button:hover,
.community-card-button:focus-visible,
.community-card-clear:hover,
.community-card-clear:focus-visible {
  transform: translateY(-1px);
}

.community-card-widget[open] .community-card-action {
  background: rgba(229, 72, 56, 0.14);
  color: var(--text-primary);
}

.community-card-widget[open] .community-card-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.community-card-widget.is-busy {
  opacity: 0.8;
}

.community-card-button:disabled,
.community-card-clear:disabled,
.community-rating-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#chat-container {
  --chat-floating-edge: 18px;
  --chat-floating-gap: 14px;
  --chat-launcher-size: 56px;
  --chat-panel-radius: 22px;
  --chat-morph-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: fixed;
  top: auto;
  right: var(--chat-floating-edge);
  bottom: 18px;
  z-index: 80;
  width: min(420px, calc(100vw - (var(--chat-floating-edge) * 2)));
  height: min(74vh, 684px);
  max-height: none;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: var(--chat-panel-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(229, 72, 56, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(12, 15, 20, 0.995), rgba(6, 8, 12, 0.995));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(
    calc(100% - var(--chat-launcher-size))
    0
    0
    calc(100% - var(--chat-launcher-size))
    round 999px
  );
  transform: translateZ(0);
  transform-origin: bottom right;
  will-change: clip-path, opacity;
  transition:
    clip-path 420ms var(--chat-morph-ease),
    opacity 120ms ease 220ms,
    visibility 0s linear 420ms,
    box-shadow 420ms var(--chat-morph-ease);
}

#chat-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%);
  pointer-events: none;
}

#chat-container > * {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 150ms ease,
    transform 260ms var(--chat-morph-ease);
}

#chat-container.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 round var(--chat-panel-radius));
  transition:
    clip-path 420ms var(--chat-morph-ease),
    opacity 80ms ease,
    box-shadow 420ms var(--chat-morph-ease);
}

#chat-container.is-open > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 120ms;
}

/* Source: shared/styles/home/cards/13-chat-about-base.css */
.chat-suggestion-region {
  display: grid;
  gap: 8px;
}

.chat-suggestion-region[hidden] {
  display: none;
}

.chat-suggestion-label {
  margin: 0;
  padding: 0 2px;
  color: var(--text-secondary);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.chat-suggestions {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 8px;
  padding: 2px 2px 2px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-gutter: stable both-edges;
}

.chat-suggestion {
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 100%),
    rgba(18, 22, 27, 0.82);
  color: var(--text-primary);
  font-size: 0.76rem;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.chat-suggestion:hover,
.chat-suggestion:focus-visible,
.chat-secondary-button:hover,
.chat-secondary-button:focus-visible {
  border-color: rgba(229, 72, 56, 0.45);
  background: rgba(229, 72, 56, 0.12);
  transform: translateY(-1px);
}

.chat-input-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(18, 22, 27, 0.86);
}

#userInput {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 0 13px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 14, 0.78);
  color: var(--text-primary);
}

#userInput::placeholder {
  color: rgba(238, 234, 229, 0.45);
}

#userInput:focus {
  outline: none;
  border-color: rgba(229, 72, 56, 0.38);
  box-shadow: 0 0 0 3px rgba(229, 72, 56, 0.14);
}

#userInput:disabled,
#sendMessageButton:disabled,
.chat-suggestion:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#sendMessageButton {
  min-width: 90px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(229, 72, 56, 0.35);
  background: linear-gradient(135deg, rgba(229, 72, 56, 0.88), rgba(178, 52, 40, 0.95));
  color: var(--text-primary);
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(229, 72, 56, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

#sendMessageButton:hover,
#sendMessageButton:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 32px rgba(229, 72, 56, 0.22);
}

.chat-footnote {
  padding: 0 4px 2px;
  font-size: 0.76rem;
  line-height: 1.45;
}

#chat-container.has-history {
  gap: 8px;
}

#chat-container.has-history .chat-panel-header {
  padding: 14px;
}

#chat-container.has-history .chat-stage {
  gap: 8px;
}

#chat-container.has-history #chatLog {
  padding: 10px;
}

#backToTop {
  width: 52px;
  height: 52px;
  position: fixed;
  right: 86px;
  bottom: 18px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(8, 11, 15, 0.84);
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition:
    right 420ms var(--chat-morph-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.home-page.chat-panel-open #backToTop {
  right: var(--back-to-top-chat-open-right, min(calc(100vw - 70px), 454px));
  z-index: 90;
}

.loader {
  display: flex;
  align-items: center;
}

.bar {
  display: inline-block;
  width: 3px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  animation: scale-up4 1s linear infinite;
}

.bar:nth-child(2) {
  height: 30px;
  margin: 0 5px;
  animation-delay: 0.25s;
}

.bar:nth-child(3) {
  animation-delay: 0.5s;
}

.page-main {
  display: grid;
  gap: 26px;
}

.page-panel {
  min-height: 280px;
}

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

.page-stack {
  display: grid;
  gap: 18px;
}

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

.collection-directory-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 6px 0 2px;
  color: var(--text-muted);
}

.collection-directory-divider::before,
.collection-directory-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.collection-directory-divider-label {
  flex: 0 0 auto;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 100%),
    rgba(9, 12, 16, 0.86);
  box-shadow: var(--shadow-md);
}

.page-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.page-card p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.stat-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-card-kicker {
  color: rgba(229, 72, 56, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-card strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--text-primary);
}

.about-main,
.supporters-main {
  gap: 16px;
}

.about-hero-panel,
.supporters-hero-panel {
  justify-content: center;
  padding: 34px 28px 24px;
  border-color: rgba(255, 255, 255, 0.14);
}

/* Source: shared/styles/home/cards/16-empty-tablet.css */
.empty-state-card {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 100%),
    rgba(9, 12, 16, 0.86);
  box-shadow: var(--shadow-md);
}

.empty-state-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.home-creator-spotlight {
  padding: 24px;
}

.empty-state-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-similar-reason {
  margin-bottom: 10px;
  color: rgba(229, 72, 56, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1240px) {
  #site-footer {
    grid-template-columns: minmax(250px, 1fr) minmax(0, 1.6fr);
  }

  .footer-support-panel {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.15fr) auto;
    align-items: center;
    gap: 18px 24px;
  }

  .footer-support-copy {
    max-width: none;
  }

  .footer-support-actions {
    width: min(100%, 470px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: end;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding-right: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .site-nav,
  .header-actions {
    justify-content: center;
  }

  .header-actions {
    position: static;
  }

  .hero-panel {
    min-height: 390px;
    gap: 20px;
    padding: 28px;
  }

  .page-panel {
    min-height: 280px;
  }

  .podcast-card-grid,
  #podcast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-split-card,
  .about-two-column,
  .supporters-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-split-card,
  .about-page .about-two-column {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .about-split-media {
    min-height: 210px;
  }

  .about-page .about-split-media {
    height: clamp(230px, 34vw, 300px);
    min-height: 230px;
    max-height: 300px;
    padding: 0;
    justify-content: center;
  }

  .about-page .about-split-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    transform: none;
    object-fit: cover;
    object-position: 58% 44%;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.84) 16%, #000 38%, #000 82%, transparent 100%);
  }

  .about-founder-card,
  .about-continental-card,
  .supporters-band {
    padding-right: 210px;
  }

  .archive-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .collection-directory-grid {
    grid-template-columns: 1fr;
  }
}

/* Source: shared/styles/home/cards/17-responsive-780-a.css */
@media (max-width: 959px) {
  .site-header,
  .home-main,
  .sticky-browse-bar {
    width: min(
      100%,
      calc(100% - max(var(--shell-inline-padding-tablet), var(--safe-area-left)) - max(var(--shell-inline-padding-tablet), var(--safe-area-right)))
    );
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 18px;
    gap: 16px;
  }

  .site-brand {
    width: min(100%, 265px);
  }

  .site-brand img {
    transform: scale(1.14);
  }

  .site-nav-toggle,
  .site-nav-close {
    display: inline-flex;
  }

  .site-nav-toggle {
    justify-self: end;
  }

  .site-nav-shell {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: block;
    visibility: hidden;
    pointer-events: none;
  }

  .site-nav-shell[data-state="open"] {
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav-backdrop {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(3, 5, 8, 0.78);
    opacity: 0;
    transition: opacity 180ms ease;
  }

  .site-nav-shell[data-state="open"] .site-nav-backdrop {
    opacity: 1;
  }

  .site-nav-drawer {
    position: absolute;
    top: calc(var(--visual-viewport-offset-top) + max(12px, var(--safe-area-top)));
    right: max(var(--shell-inline-padding-tablet), var(--safe-area-right));
    left: max(var(--shell-inline-padding-tablet), var(--safe-area-left));
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(229, 72, 56, 0.16), transparent 30%),
      linear-gradient(180deg, rgba(17, 21, 27, 0.98), rgba(6, 9, 12, 0.98));
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.44);
    max-height: calc(var(--visual-viewport-height) - max(24px, var(--safe-area-top)) - max(24px, var(--safe-area-bottom)));
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-14px) scale(0.985);
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav-shell[data-state="open"] .site-nav-drawer {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .site-nav-drawer-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
  }

  .site-nav-kicker {
    color: rgba(247, 247, 243, 0.48);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .site-nav-drawer-copy {
    margin-top: 6px;
    max-width: 28ch;
    color: rgba(247, 247, 243, 0.7);
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .site-nav {
    display: grid;
    gap: 10px;
    justify-self: stretch;
  }

  .site-nav a,
  .site-nav button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 72px;
    padding: 14px 16px 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
      rgba(8, 12, 16, 0.78);
    color: rgba(247, 247, 243, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
      border-color 180ms ease,
      background 180ms ease,
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  .site-nav a::after,
  .site-nav button::after {
    display: none;
  }

  .site-nav-link-body {
    display: grid;
    gap: 6px;
    min-width: 0;
  }

  .site-nav-link-label {
    color: inherit;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .site-nav-link-detail {
    display: block;
    color: rgba(247, 247, 243, 0.56);
    font-size: 0.78rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }

  .site-nav-link-arrow {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(247, 247, 243, 0.62);
  }

  .site-nav-link-arrow::before {
    content: ">";
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    transform: translateX(0.5px);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav button:hover,
  .site-nav button:focus-visible {
    border-color: rgba(255, 255, 255, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028)),
      rgba(11, 15, 20, 0.84);
    transform: translateY(-1px);
  }

  .site-nav a:hover .site-nav-link-detail,
  .site-nav a:focus-visible .site-nav-link-detail,
  .site-nav button:hover .site-nav-link-detail,
  .site-nav button:focus-visible .site-nav-link-detail {
    color: rgba(247, 247, 243, 0.74);
  }

  .site-nav a.is-active {
    border-color: rgba(229, 72, 56, 0.48);
    background:
      linear-gradient(180deg, rgba(229, 72, 56, 0.18), rgba(229, 72, 56, 0.08)),
      rgba(35, 11, 10, 0.88);
    color: #fff7f3;
    box-shadow:
      inset 0 1px 0 rgba(255, 244, 239, 0.08),
      0 0 0 1px rgba(229, 72, 56, 0.12);
  }

  .site-nav a.is-active .site-nav-link-detail {
    color: rgba(255, 233, 224, 0.8);
  }

  .site-nav a.is-active .site-nav-link-arrow {
    border-color: rgba(255, 178, 162, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 240, 235, 0.88);
  }

  .site-nav .header-actions,
  .site-nav-shell .header-actions {
    justify-content: flex-end;
  }

  .site-nav-shell .header-actions {
    padding-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav-shell .profile-button {
    width: auto;
    min-height: 48px;
    padding: 0 14px 0 8px;
    border-radius: 999px;
    gap: 10px;
  }

  .site-nav-shell .profile-button::after {
    content: "Profile";
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
  }

  .hero-panel {
    min-height: 0;
    padding: 22px;
    background-position: center;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 11vw, 3.9rem);
    white-space: normal;
  }

  .hero-copy p {
    max-width: 24rem;
    font-size: 1rem;
  }

  .home-page #chat-toggle.chat-toggle-button {
    right: max(12px, var(--safe-area-right));
    bottom: max(16px, var(--safe-area-bottom));
    width: 54px;
    height: 54px;
  }

  .home-page .search-container {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .sticky-browse-bar {
    top: calc(var(--visual-viewport-offset-top) + max(10px, var(--safe-area-top)));
  }

  .sticky-browse-bar-inner {
    gap: 10px;
    padding: 10px;
  }

  .search-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: stretch;
  }

  .browse-modes,
  .quick-filters {
    width: 100%;
  }

  .search-field,
  #filterToggle,
  #stickyFilterToggle,
  .sticky-search-toggle {
    min-height: 56px;
  }

  .home-page #search,
  .home-page #stickySearch {
    min-height: 54px;
    padding: 14px 12px 14px 44px;
    font-size: 1rem;
  }

  .search-icon {
    left: 14px;
  }

  #filterDropdown,
  #stickyFilterDropdown {
    position: fixed;
    top: calc(var(--visual-viewport-offset-top) + max(12px, var(--safe-area-top)));
    right: max(var(--shell-inline-padding-tablet), var(--safe-area-right));
    left: max(var(--shell-inline-padding-tablet), var(--safe-area-left));
    width: auto;
    height: min(
      600px,
      calc(var(--visual-viewport-height) - max(24px, var(--safe-area-top)) - max(24px, var(--safe-area-bottom)))
    );
    max-height: calc(var(--visual-viewport-height) - max(24px, var(--safe-area-top)) - max(24px, var(--safe-area-bottom)));
    border-radius: 24px;
    transform: translateY(14px) scale(0.985);
  }

  #filterDropdown::before,
  #stickyFilterDropdown::before {
    display: none;
  }

  .section-heading,
  .podcast-card-grid,
  .chat-input-area,
  footer {
    grid-template-columns: 1fr;
  }

  #podcast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .section-link {
    font-size: 0.88rem;
  }

  .results-summary {
    white-space: normal;
  }

  .results-heading-meta {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .results-rating-note {
    flex-wrap: wrap;
  }

  .active-browse-state {
    align-items: flex-start;
  }

  .home-page .podcast-card {
    --editorial-corner-width: 34px;
    --editorial-corner-top: -6px;
    --editorial-corner-left: 6px;
    --editorial-ribbon-width: 126px;
    --editorial-ribbon-height: 24px;
    --editorial-ribbon-top: 65px;
    --editorial-ribbon-right: -30px;
    --editorial-ribbon-tail-width: 36px;
  }

  .home-page .editorial-badge-corner {
    left: var(--editorial-corner-left);
  }

  .home-page .popular-card-body {
    padding: 16px;
    gap: 12px;
  }

  .home-page .popular-card-title {
    font-size: clamp(1.28rem, 4vw, 1.5rem);
  }

  .home-page .home-card-preview {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "content"
      "footer";
    grid-template-rows: auto auto auto;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
  }

  .home-page .home-card-preview-content {
    gap: 10px;
  }

  .home-page .home-card-preview-copy {
    gap: 14px;
  }

  .home-page .home-card-preview-copy-body {
    gap: 10px;
  }

  .home-page .home-card-preview-title {
    font-size: clamp(1.48rem, 4.6vw, 1.88rem);
  }

  .home-page .home-card-preview-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .home-page .home-card-preview-ratings {
    width: auto;
    justify-content: flex-start;
  }

  .home-page .preview-open-link {
    min-width: 0;
    width: auto;
  }

  .home-page .preview-close-button {
    top: 10px;
    right: 10px;
  }

  .home-page .preview-good-for {
    font-size: 0.86rem;
  }

  .home-page .preview-take {
    max-width: none;
    padding-top: 12px;
    font-size: 0.8rem;
  }

  .archive-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    padding: 16px 4px 2px;
  }

  .quick-filters {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
  }

  .browse-modes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-filters .quick-filter {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .filter-group-options {
    grid-template-columns: 1fr;
  }

  #site-footer {
    padding: 20px max(16px, var(--safe-area-right)) calc(22px + var(--safe-area-bottom)) max(16px, var(--safe-area-left));
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    padding-top: 0;
  }

  .footer-brand-mark {
    max-width: min(100%, 360px);
  }

  .footer-brand-mark img {
    width: min(100%, 360px);
  }

  .footer-brand-note {
    max-width: none;
  }

  .footer-meta-row {
    gap: 8px;
  }

  .footer-support-panel {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }

}

/* Source: shared/styles/home/cards/18-responsive-780-b.css */
@media (max-width: 959px) {
  .footer-support-actions {
    width: 100%;
    grid-template-columns: 1fr;
    justify-self: stretch;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .about-main,
  .supporters-main {
    gap: 16px;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-card {
    min-height: 0;
    padding: 18px 20px;
  }

  .about-page .about-stat-card {
    padding: 18px 20px;
  }

  .about-cta,
  .page-hero-actions,
  .about-support-actions,
  .supporters-actions {
    width: 100%;
  }

  .page-hero-actions,
  .about-support-actions,
  .supporters-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-page .about-support-actions {
    grid-template-columns: 1fr;
  }

  .about-cta {
    justify-content: space-between;
  }

  .about-page .about-support-card .about-cta {
    justify-content: space-between;
  }

  .about-founder-card,
  .about-continental-card,
  .supporters-band {
    grid-template-columns: 1fr;
    padding-right: 24px;
    padding-bottom: 104px;
  }

  .about-page .about-continental-card {
    grid-template-columns: 1fr;
    padding: 24px;
    padding-bottom: 108px;
  }

  .about-founder-portrait {
    width: 96px;
    height: 96px;
  }

  .about-continental-icon {
    width: 88px;
    height: 88px;
  }

  .about-story-orbit img {
    width: min(70vw, 220px);
  }

  .about-page .about-continental-card .about-story-orbit-wide img {
    width: min(70vw, 240px);
  }

  .about-story-emblem {
    right: 12px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .collection-carousel::before,
  .collection-carousel::after {
    width: 52px;
  }

  .collection-carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .collection-carousel-arrow-prev {
    left: 10px;
  }

  .collection-carousel-arrow-next {
    right: 10px;
  }

  .submit-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .empty-state-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #chat-container {
    --chat-floating-edge: 12px;
    --chat-launcher-size: 54px;
    top: calc(var(--visual-viewport-offset-top) + max(12px, var(--safe-area-top)));
    right: var(--chat-floating-edge);
    bottom: auto;
    width: calc(100vw - (var(--chat-floating-edge) * 2));
    height: min(640px, calc(var(--visual-viewport-height) - max(24px, var(--safe-area-top)) - max(24px, var(--safe-area-bottom))));
  }
}

/* Source: shared/styles/home/cards/19-responsive-560.css */
@media (max-width: 560px) {
  .site-header,
  .home-main,
  .sticky-browse-bar {
    width: min(
      100%,
      calc(100% - max(var(--shell-inline-padding-phone), var(--safe-area-left)) - max(var(--shell-inline-padding-phone), var(--safe-area-right)))
    );
  }

  .site-header {
    padding-top: max(14px, var(--safe-area-top));
    gap: 12px;
  }

  .site-brand {
    width: min(100%, 214px);
  }

  .site-brand img {
    transform: scale(1.08);
  }

  .site-nav-toggle {
    min-height: 44px;
    padding: 0 13px;
    gap: 10px;
  }

  .site-nav-toggle-label {
    font-size: 0.76rem;
  }

  .site-nav-drawer {
    top: calc(var(--visual-viewport-offset-top) + max(10px, var(--safe-area-top)));
    right: max(var(--shell-inline-padding-phone), var(--safe-area-right));
    left: max(var(--shell-inline-padding-phone), var(--safe-area-left));
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .site-nav-drawer-copy {
    max-width: none;
    font-size: 0.88rem;
  }

  .site-nav a,
  .site-nav button,
  .site-nav-shell .profile-button {
    min-height: 68px;
  }

  .site-nav a,
  .site-nav button {
    padding: 13px 14px 13px 16px;
    border-radius: 16px;
  }

  .site-nav-link-body {
    gap: 5px;
  }

  .site-nav-link-label {
    font-size: 1rem;
  }

  .site-nav-link-detail {
    font-size: 0.75rem;
  }

  .site-nav-link-arrow {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .site-nav-shell .profile-button {
    width: 100%;
    justify-content: flex-start;
  }

  .sticky-browse-bar {
    top: calc(var(--visual-viewport-offset-top) + max(8px, var(--safe-area-top)));
  }

  .sticky-browse-bar-inner {
    gap: 8px;
    padding: 8px;
  }

  .sticky-search-toggle {
    padding: 0 14px;
  }

  .hero-panel {
    gap: 18px;
  }

  .home-hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
    max-width: 100%;
    margin: 22px 0 0;
    padding: 0 4px 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-hero-actions::-webkit-scrollbar {
    display: none;
  }

  .home-hero-route {
    flex: 0 0 auto;
    min-height: 54px;
    padding: 10px 14px 11px;
  }

  .search-actions {
    gap: 12px;
  }

  .quick-filters {
    display: flex;
    overflow-x: auto;
  }

  .browse-modes {
    grid-template-columns: 1fr;
  }

  .active-browse-state {
    gap: 10px;
  }

  .active-browse-chips {
    flex-basis: 100%;
  }

  .active-browse-clear {
    padding: 0;
  }

  .popular-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
  }

  .home-page .popular-card {
    min-width: 0;
  }

  #podcast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .podcast-card {
    --editorial-ribbon-width: 124px;
    --editorial-ribbon-right: -20px;
    --editorial-ribbon-tail-width: 36px;
  }

  .home-page .podcast-card .rating {
    gap: 14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-page .inline-score-topline {
    gap: 6px;
    font-size: 0.8rem;
  }

  .home-page .home-card-preview {
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .home-page .home-card-preview-copy {
    gap: 12px;
  }

  .home-page .home-card-preview-title {
    font-size: 1.4rem;
  }

  .home-page .home-card-preview-ratings {
    width: auto;
    gap: 10px;
  }

  .home-page .home-card-preview-ratings .rating-divider {
    display: none;
  }

  .home-page .preview-open-link {
    min-width: 0;
    padding: 0;
  }

  .home-page .preview-close-button {
    top: 9px;
    right: 9px;
    width: 28px;
    height: 28px;
  }

  .podcast-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-card {
    flex-basis: min(82vw, 300px);
    min-height: 196px;
  }

  .collection-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .home-page .popular-card-ratings {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .home-page .popular-card-ratings .rating-divider {
    display: none;
  }

  .filter-container,
  #filterToggle,
  .collection-action,
  #sendMessageButton {
    width: 100%;
  }

  #filterDropdown,
  #stickyFilterDropdown {
    top: calc(var(--visual-viewport-offset-top) + max(10px, var(--safe-area-top)));
    right: max(var(--shell-inline-padding-phone), var(--safe-area-right));
    left: max(var(--shell-inline-padding-phone), var(--safe-area-left));
    width: auto;
    height: calc(var(--visual-viewport-height) - max(20px, var(--safe-area-top)) - max(20px, var(--safe-area-bottom)));
    max-height: calc(var(--visual-viewport-height) - max(20px, var(--safe-area-top)) - max(20px, var(--safe-area-bottom)));
    padding: 16px;
    border-radius: 20px;
  }

  .sticky-browse-bar .filter-container,
  .sticky-browse-bar #stickyFilterToggle,
  .sticky-browse-bar .sticky-search-toggle {
    width: auto;
  }

  .sticky-browse-bar[data-mode="collapsed"] .sticky-browse-bar-inner,
  .sticky-browse-bar-inner {
    width: 100%;
    gap: 8px;
    margin: 0;
    padding: 8px;
    border-radius: 16px;
  }

  .sticky-browse-bar[data-mode="collapsed"] .sticky-search-shell,
  .sticky-search-shell {
    flex: 1 1 auto;
    min-width: 0;
  }

  .sticky-browse-bar .sticky-search-toggle {
    display: none;
  }

  .sticky-browse-bar[data-mode="collapsed"] .sticky-search-field,
  .sticky-browse-bar .sticky-search-field {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 56px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(7, 10, 13, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .sticky-browse-bar[data-mode="collapsed"] #stickySearch,
  .sticky-browse-bar #stickySearch {
    min-height: 54px;
    padding: 14px 12px 14px 44px;
    opacity: 1;
  }

  .sticky-browse-bar .filter-container,
  .sticky-browse-bar #stickyFilterToggle {
    width: 56px;
  }

  .sticky-browse-bar #stickyFilterToggle {
    justify-content: center;
    padding: 0;
  }

  .sticky-browse-bar #stickyFilterToggle .filter-toggle-label {
    display: none;
  }

  .filter-dropdown-header {
    grid-template-columns: 1fr;
  }

  .filter-detail-toolbar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .filter-bucket-card {
    padding: 14px;
  }

  .filter-bucket-meta {
    justify-items: start;
  }

  .filter-group-options {
    grid-template-columns: 1fr;
  }

  .chat-input-area {
    grid-template-columns: 1fr;
  }

  .chat-suggestions {
    grid-auto-columns: minmax(168px, 82%);
  }

  .chat-panel-header {
    flex-direction: column;
    align-items: stretch;
  }

  .chat-panel-actions {
    justify-content: space-between;
  }

  #chat-container {
    --chat-floating-edge: 12px;
    --chat-launcher-size: 54px;
    top: calc(var(--visual-viewport-offset-top) + max(8px, var(--safe-area-top)));
    left: max(12px, var(--safe-area-left));
    right: max(12px, var(--safe-area-right));
    bottom: auto;
    width: auto;
    height: min(640px, calc(var(--visual-viewport-height) - max(16px, var(--safe-area-top)) - max(16px, var(--safe-area-bottom))));
    padding: 12px;
    border-radius: 22px;
  }

  #chat-toggle.chat-toggle-button {
    right: max(8px, var(--safe-area-right));
    bottom: max(12px, var(--safe-area-bottom));
    width: clamp(46px, 14vw, 50px);
    height: clamp(46px, 14vw, 50px);
  }

  .community-card-controls {
    grid-template-columns: 1fr;
    top: calc(100% - 2px);
  }

  .community-card-widget {
    margin-left: 10px;
    margin-right: 10px;
  }

  .community-card-toggle {
    grid-template-columns: 1fr;
  }

  .community-card-summary {
    max-width: none;
  }

  .community-card-action {
    justify-self: start;
  }

  .community-card-controls::before {
    right: auto;
    left: 24px;
  }

  #backToTop {
    right: calc(max(12px, var(--safe-area-right)) + 60px);
    bottom: max(16px, var(--safe-area-bottom));
  }

  .home-page.chat-panel-open .chat-footnote {
    min-height: 52px;
    padding-left: 64px;
  }

  .about-page .about-hero-panel {
    min-height: 0;
    padding: 24px 20px;
  }

  .about-page .about-hero-panel .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .about-page .about-hero-signal {
    align-items: flex-start;
    font-size: 0.92rem;
  }

  .about-page .about-split-copy,
  .about-page .about-feature-section,
  .about-page .about-ratings-card,
  .about-page .about-support-card,
  .about-page .about-continental-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-problem-list li {
    padding: 10px 11px 10px 13px;
  }

  .about-page .about-split-media {
    height: clamp(200px, 52vw, 240px);
    min-height: 200px;
    max-height: 240px;
  }

  .about-page .about-split-media img {
    object-position: 56% 44%;
  }

  .about-page .about-feature-tile {
    min-height: 0;
  }
}

@media (max-width: 959px) and (max-height: 500px) {
  #chat-container {
    gap: 6px;
    padding: 8px;
  }

  .chat-panel-header {
    flex-direction: row;
    align-items: center;
    padding: 8px 10px;
  }

  .chat-status,
  .chat-suggestion-region,
  .chat-footnote {
    display: none;
  }

  .chat-input-area {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px;
  }

  #chatLog {
    min-height: 64px;
  }
}

/* Source: shared/styles/home/cards/20-motion.css */
/* Grid motion stays on the shell so card hover/preview transforms can keep their own layer. */
#podcast-grid {
  position: relative;
}

.home-page .podcast-card-shell.is-grid-entering,
.home-page .podcast-card-shell.is-grid-exiting,
.home-page .podcast-card-shell.is-grid-flipping {
  will-change: transform, opacity;
}

.home-page .podcast-card-shell.is-grid-exiting {
  pointer-events: none;
}

@media (max-width: 359px) {
  #site-footer {
    padding: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-support-primary,
  .footer-support-secondary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .podcast-card,
  .home-page .podcast-card-shell,
  .home-page .home-card-preview,
  .home-page .home-card-preview-stage,
  .home-page .home-card-preview-layer,
  .home-page .home-card-preview-media-art,
  .home-page .preview-close-button,
  .home-page .preview-open-link,
  .home-page .collection-carousel::before,
  .home-page .collection-carousel::after,
  .home-page .collection-carousel-arrow,
  .home-page .collection-carousel-arrow span,
  .home-page .collection-card,
  .home-page .collection-card::before,
  .home-page .collection-card::after,
  .home-page #chat-container,
  .home-page #chat-container > *,
  .home-page #chat-toggle.chat-toggle-button,
  .home-page #backToTop,
  .sticky-browse-bar,
  .sticky-browse-bar-inner,
  .sticky-search-toggle,
  .sticky-search-toggle-arrow,
  .sticky-search-field,
  .home-page #stickySearch {
    transition-duration: 1ms !important;
  }

  .home-page .home-card-preview,
  .home-page .podcast-card-shell,
  .home-page .podcast-card-shell.is-grid-entering,
  .home-page .podcast-card-shell.is-grid-exiting,
  .home-page .podcast-card-shell.is-grid-flipping,
  .home-page .podcast-card-shell.is-preview-expanded .home-card-preview,
  .home-page .podcast-card-shell.is-preview-closing .home-card-preview,
  .home-page .home-card-preview-stage,
  .home-page .home-card-preview-media-art,
  .home-page .podcast-card:hover,
  .home-page .podcast-card:focus-visible,
  .home-page .podcast-card-shell.preview-source-active .podcast-card,
  .home-page .collection-carousel::before,
  .home-page .collection-carousel::after,
  .home-page .collection-carousel-arrow,
  .home-page .collection-carousel-arrow span,
  .home-page .collection-card,
  .home-page .collection-card:hover,
  .home-page .collection-card:focus-visible,
  .home-page .collection-card.is-interaction-boosted,
  .home-page .collection-card::before,
  .home-page.chat-panel-open #chat-toggle.chat-toggle-button {
    transform: none !important;
  }
}

/* Source: shared/styles/home/public-heroes.css */
/* Canonical public hero contract derived from the browse page hero. */

.info-hero-panel,
.about-page .about-hero-panel,
.supporters-hero-panel,
.creators-hero-panel,
.creator-standards-hero-panel,
.submit-hero-panel,
.collections-hero-panel,
.collection-detail-hero-panel {
  overflow: hidden;
  padding: 34px 28px 26px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.info-hero-copy h1,
.about-page .about-hero-panel .hero-copy h1,
.supporters-hero-panel .hero-copy h1,
.creators-hero-panel .hero-copy h1,
.creator-standards-hero-panel .hero-copy h1,
.submit-hero-copy h1,
.collections-hero-copy h1,
.collection-detail-hero-copy h1,
.help-center-page .help-center-hero-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(2.95rem, 4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.info-hero-copy p,
.about-page .about-hero-lede,
.supporters-hero-panel .hero-copy p,
.creators-hero-copy p,
.creator-standards-hero-copy p,
.submit-hero-copy p,
.collections-hero-copy p,
.collection-detail-hero-copy p,
.help-center-page .help-center-hero-copy p {
  max-width: 42ch;
  font-size: clamp(1.03rem, 1.12vw, 1.2rem);
  line-height: 1.34;
}

.info-hero-copy h1,
.about-page .about-hero-panel .hero-copy h1,
.supporters-hero-panel .hero-copy h1,
.creator-standards-hero-panel .hero-copy h1,
.submit-hero-copy h1,
.collections-hero-copy h1,
.help-center-page .help-center-hero-copy h1 {
  max-width: none;
  white-space: nowrap;
}

.creators-hero-panel .hero-copy h1 {
  max-width: none;
  white-space: nowrap;
}

.collection-detail-hero-copy h1 {
  max-width: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.creators-hero-copy p,
.creator-standards-hero-copy p {
  max-width: 32ch;
}

.creators-hero-copy {
  max-width: 48rem;
}

.collections-hero-copy p {
  max-width: 31ch;
}

.collection-detail-hero-copy p {
  max-width: 40ch;
}

.help-center-page .help-center-hero-copy p {
  max-width: 33ch;
}

@media (max-width: 979px) {
  .creators-hero-panel .hero-copy h1,
  .creator-standards-hero-panel .hero-copy h1 {
    max-width: 12ch;
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 780px) {
  .info-hero-panel,
  .about-page .about-hero-panel,
  .supporters-hero-panel,
  .creators-hero-panel,
  .creator-standards-hero-panel,
  .submit-hero-panel,
  .collections-hero-panel {
    min-height: 0;
    padding: 22px;
    background-position: center;
  }

  .info-hero-copy h1,
  .about-page .about-hero-panel .hero-copy h1,
  .supporters-hero-panel .hero-copy h1,
  .creators-hero-panel .hero-copy h1,
  .creator-standards-hero-panel .hero-copy h1,
  .submit-hero-copy h1,
  .collections-hero-copy h1,
  .help-center-page .help-center-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 11vw, 3.9rem);
    white-space: normal;
  }

  .info-hero-copy p,
  .about-page .about-hero-lede,
  .supporters-hero-panel .hero-copy p,
  .creators-hero-copy p,
  .creator-standards-hero-copy p,
  .submit-hero-copy p,
  .collections-hero-copy p,
  .help-center-page .help-center-hero-copy p {
    max-width: 24rem;
    font-size: 1rem;
  }
}

@media (max-width: 860px) {
  .collection-detail-hero-panel {
    padding: 30px 22px;
  }

  .collection-detail-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 8vw, 3.65rem);
    white-space: normal;
    text-overflow: clip;
  }
}

@media (max-width: 560px) {
  .collection-detail-hero-panel {
    padding: 20px 18px 16px;
  }
}
