:root {
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "WenQuanYi Micro Hei", "Source Han Sans SC", sans-serif;
  font-size: 0.875rem;
  background-color: #f5f5f5;
  color: #111111;
}

@media (min-width: 1600px) {
  :root {
    font-size: 0.9375rem;
  }
}

@media (min-width: 2000px) {
  :root {
    font-size: 0.85rem;
  }
}

@media (max-width: 1200px) {
  :root {
    font-size: 0.8125rem;
  }
}

@media (max-width: 900px) {
  :root {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  :root {
    font-size: 0.6875rem;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #ffffff;
}

body.loading {
  overflow: hidden;
}

body.sidebar-open {
  overflow: hidden;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 18.5714rem;
  width: calc(100% - 18.5714rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.55);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.loading-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.loading-overlay,
.loading-card {
  pointer-events: none;
}

.loading-overlay.visible,
.loading-card.visible {
  pointer-events: auto;
}

.loading-card {
  width: 11.4286rem;
  height: 11.4286rem;
  background: linear-gradient(135deg, #ffffff, #eef2ff);
  color: #23293c;
  border-radius: 1.4286rem;
  box-shadow: 0 1.2857rem 2.2857rem rgba(23, 31, 68, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.loading-spinner {
  width: 3.4286rem;
  height: 3.4286rem;
  border-radius: 50%;
  border: 0.2857rem solid rgba(94, 104, 188, 0.25);
  border-top-color: #5665ff;
  animation: loading-spin 0.9s linear infinite;
}

.loading-overlay p {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: #2c3146;
  letter-spacing: 0.08em;
}

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

.app-shell {
  display: grid;
  grid-template-columns: 18.5714rem 1fr;
  min-height: 100vh;
}

.mobile-header {
  grid-column: 1 / -1;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 0.0714rem solid #ececf1;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-header .logo {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.menu-toggle {
  border: none;
  background: none;
  padding: 0.4rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 1.5rem;
  height: 0.1429rem;
  background-color: #202840;
  border-radius: 0.2857rem;
}

.sidebar-overlay {
  display: none;
  grid-column: 1 / -1;
}

.sidebar {
  background-color: #f6f6f6;
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #222222;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu a {
  text-decoration: none;
  color: #333333;
  padding: 0.6rem 0.8rem;
  border-radius: 0.2857rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0.0714rem solid transparent;
}

.menu a i {
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}

.menu a.active {
  background-color: #ffffff;
  color: #111111;
  border-color: transparent;
}

.main-area {
  padding: 2rem 3rem 4rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-y: auto;
}

.search-pane {
  max-width: 53.5714rem;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  min-height: calc(100vh - 18.5714rem);
  padding: 3rem 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-pane.has-results {
  margin: 2rem auto 0;
  align-self: flex-start;
  padding: 2rem 0 4rem;
  min-height: auto;
  display: block;
}

.search-pane h1 {
  margin: 0 0 3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 2.2rem;
  color: #34322d;
}


.search-pane > p {
  margin: 0 0 1.5rem;
  color: #666666;
  font-size: 1.1rem;
}

.search-box {
  border: 0.0714rem solid #e6e6e6;
  border-radius: 0.8571rem;
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  background-color: #ffffff;
  max-width: 53.5714rem;
  width: 100%;
  margin: 0 auto 1.75rem;
  box-shadow: 0 0.4286rem 1rem rgba(0, 0, 0, 0.04);
}

.search-box input {
  flex: 1;
  border: none;
  font-size: 1.1rem;
  background-color: transparent;
}

.search-box input:focus {
  outline: none;
}

.search-clear-btn {
  border: none;
  background: transparent;
  color: #b2b2b2;
  width: 2.5714rem;
  height: 2.5714rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
}

.search-box.has-value .search-clear-btn {
  display: inline-flex;
}

.search-clear-btn:disabled {
  cursor: default;
  opacity: 0.4;
}

.search-box button[type="submit"] {
  border: none;
  background-color: #111111;
  color: #ffffff;
  padding: 0.65rem 1.4rem;
  border-radius: 0.8571rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-height: 3rem;
  font-size: 1.05rem;
}

.recent-searches {
  display: none;
  margin: 1rem auto 0;
  width: min(50rem, 100%);
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.recent-searches.visible {
  display: flex;
}

.recent-searches-title {
  margin: 0;
  font-size: 0.9rem;
  color: #6b6f7c;
}

.recent-searches-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recent-searches-item {
  border: 0.0714rem solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  border-radius: 71.3571rem;
  padding: 0 0.85rem 0 1rem;
  font-size: 0.9rem;
  height: 2.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
}

.recent-searches-item:hover,
.recent-searches-item:focus-visible {
  border-color: #333333;
}

.recent-searches-label {
  white-space: nowrap;
}

.recent-searches-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  font-size: 0.9rem;
  color: #9b9fab;
  border-radius: 50%;
  margin-left: 0.2rem;
}

.recent-searches-item:hover .recent-searches-remove {
  color: #333333;
}

.results-small {
  margin-top: 1.5rem;
  text-align: left;
  width: min(50rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.results-count {
  font-size: 0.95rem;
  color: #777777;
  margin-bottom: 1.25rem;
}

.results-small ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.results-small li {
  padding: 0;
}

.results-small li a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 0.4286rem;
  font-size: 1.15rem;
  border: 0.0714rem solid #0000000f;
  background-color: #fafafa00;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.results-small li img {
  width: 4.5714rem;
  height: 4.5714rem;
  object-fit: cover;
  border-radius: 0.2857rem;
  display: block;
}

.results-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  min-width: 0;
  flex: 1;
  justify-content: center;
}

.results-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1b1b1b;
  line-height: 1.4;
  word-break: break-word;
}

.results-description {
  margin: 0;
  font-size: 0.85rem;
  color: #8b90a3;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  width: 100%;
}

.results-small li a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.results-small li a::after {
  content: "";
  margin-left: auto;
  margin-right: 0.5rem;
  width: 0.4286rem;
  height: 0.4286rem;
  border-right: 0.0714rem solid #b3b3b3;
  border-top: 0.0714rem solid #b3b3b3;
  transform: rotate(45deg);
}

.results-empty {
  margin-top: 2rem;
  padding: 2.25rem;
  border-radius: 1.25rem;
  border: 1px dashed rgba(92, 99, 116, 0.3);
  text-align: center;
  color: #5b6172;
  background: rgba(92, 99, 116, 0.05);
}

.results-empty p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hot-pane {
  max-width: 70rem;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hot-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hot-hero-eyebrow {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #8d8f9f;
}

.hot-hero h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #151515;
}

.hot-hero-summary {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1rem;
  color: #595d6f;
  line-height: 1.6;
}

.hot-category {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hot-category-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
}

.hot-category-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b0b2be;
}

.hot-category-head h2 {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: #6c6f80;
}

.hot-category-count {
  font-size: 0.9rem;
  color: #7f8497;
}

.hot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 1.25rem;
}

.hot-card {
  position: relative;
  border: 0.0714rem solid rgba(15, 19, 39, 0.08);
  border-radius: 1.25rem;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background-color: #fafafa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hot-card:hover,
.hot-card:focus-within {
  box-shadow: 0 1.25rem 2.5rem rgba(12, 16, 40, 0.08);
}

.hot-card-cover {
  width: 100%;
  padding-top: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  box-shadow: inset 0 0 0 0.0714rem rgba(0, 0, 0, 0.05);
}

.hot-card-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.hot-card-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: #141414;
  line-height: 1.4;
}

.hot-card-link {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  text-indent: -9999px;
}

.hot-card-link:focus-visible {
  outline: 0.15rem solid #2f63ff;
  outline-offset: 0.35rem;
}

.hot-empty {
  border: 0.0714rem dashed rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
  padding: 2.5rem 1rem;
  text-align: center;
  color: #7a7f91;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.hot-empty i {
  font-size: 1.5rem;
  color: #b2b6c8;
}

.detail-pane {
  max-width: 60.7143rem;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.back-link {
  display: inline-flex;
  gap: 0.4rem;
  font-size: 1rem;
  text-decoration: none;
  color: #2f2f2f;
  align-items: center;
  line-height: 1;
}

.back-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  line-height: 1;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(10rem, 13.5714rem) 1fr;
  column-gap: 2rem;
  row-gap: 1.25rem;
  align-items: center;
  text-align: left;
}

.detail-cover {
  width: 100%;
  max-width: 13.5714rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-cover img {
  width: 100%;
  max-width: 13.5714rem;
  border-radius: 0.5rem;
  object-fit: cover;
  display: block;
  box-shadow: none;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8d9c;
}

.detail-content h1 {
  margin: 0;
  font-size: 2.15rem;
  color: #111111;
  font-weight: 600;
}

.detail-meta-inline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #4a4e5f;
  margin: 0.4rem 0 0.6rem;
}

.detail-meta-inline-text {
  white-space: nowrap;
}

.detail-meta-inline-link {
  color: #2f63ff;
  text-decoration: none;
  font-weight: 500;
}

.detail-meta-inline-link:hover {
  text-decoration: underline;
}

.detail-meta-inline-divider {
  color: #b1b5c5;
  font-size: 0.9rem;
}

.detail-summary {
  margin: 0;
  font-size: 0.98rem;
  color: #343848;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.episode-detail-pane {
  max-width: 60.7143rem;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.episode-detail-hero {
  display: grid;
  grid-template-columns: minmax(10rem, 13.5714rem) 1fr;
  column-gap: 2rem;
  row-gap: 1.25rem;
  align-items: center;
  text-align: left;
}

.episode-detail-cover {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.episode-detail-cover img {
  width: 100%;
  max-width: 13.5714rem;
  border-radius: 0.5rem;
  object-fit: cover;
  display: block;
}

.episode-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.episode-detail-content h1 {
  margin: 0;
  font-size: 2rem;
  color: #111111;
  line-height: 1.3;
}

.episode-detail-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #4a4e5f;
  margin-top: 0.2rem;
}

.episode-detail-meta::after {
  content: "";
}

.episode-detail-meta .episode-detail-meta-divider {
  color: #b1b5c5;
}

.episode-detail-meta span {
  display: inline-flex;
  align-items: center;
}

.episode-detail-meta-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #2f63ff;
  text-decoration: none;
}

.episode-detail-meta-link:hover,
.episode-detail-meta-link:focus-visible {
  text-decoration: underline;
}

.episode-detail-meta-chip {
  font-size: 0.95rem;
  color: #4a4e5f;
}

.episode-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.episode-notes-section {
  border-top: 0.0714rem solid #eceef3;
  padding-top: 2rem;
  text-align: left;
}

.episode-notes-header {
  display: block;
  text-align: left;
  margin-bottom: 2.25rem;
}

.episode-notes-title {
  font-size: 1.25rem;
  margin: 0;
  color: #111111;
}

.episode-detail-description {
  margin: 0;
  max-width: 55.5rem; /* 888px */
  width: 100%;
  font-size: 1.0625rem;
  color: #3a3d4a;
  line-height: 1.85;
}

.episode-detail-description p {
  margin: 0 0 1rem;
}

.episode-detail-description blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 0.25rem solid #dbe5ff;
  background: #f6f8ff;
  border-radius: 0.5rem;
  color: #2c3145;
  font-weight: 400;
}

.episode-detail-description blockquote p {
  margin: 0 0 0.75rem;
}

.episode-detail-description blockquote p:last-child {
  margin-bottom: 0;
}

.episode-detail-description figure {
  margin: 1.5rem 0;
  padding: 0;
}

.episode-detail-description img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 0 auto;
}

.episode-detail-description a {
  color: #1f6feb;
  text-decoration: none;
}

.episode-detail-description a:hover,
.episode-detail-description a:focus-visible {
  text-decoration: underline;
}

.episode-detail-description .timestamp {
  color: #1f6feb;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: transparent;
  padding: 0;
  font-family: inherit;
  line-height: 1.5;
}

.episode-detail-description .timestamp:hover,
.episode-detail-description .timestamp:focus-visible {
  text-decoration: underline;
}

.episodes-section {
  border-top: 0.0714rem solid #eceef3;
  padding-top: 2rem;
  text-align: left;
}

.episodes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.episodes-title {
  font-size: 1.25rem;
  margin: 0;
  color: #111111;
}

.episodes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.episodes-empty {
  margin: 0;
  font-size: 0.95rem;
  color: #6c6f80;
}

.episode-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 0 1rem;
  border-bottom: 0.0714rem dotted rgba(0, 0, 0, 0.06);
}

/* 保持最后一项无底线，避免多余分割 */
.episode-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.episode-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.episode-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.35rem;
}

.episode-play-btn {
  border: 0.0714rem solid #0000001f;
  border-radius: 71.3571rem;
  padding: 0.65rem 1.25rem;
  background-color: transparent;
  color: #1c1f2c;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}

.episode-play-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.episode-play-btn .episode-play-label {
  display: inline-block;
}

.episode-play-btn .icon-spinner {
  animation: spin 1s linear infinite;
}

.episode-play-btn:hover {
  border-color: #1c1f2c;
  background-color: rgba(0, 0, 0, 0.04);
}

.episode-play-btn.is-active,
.episode-play-btn.is-playing {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

.episode-play-btn.is-loading {
  opacity: 0.7;
}

.episode-meta-line {
  display: inline-flex;
  align-items: center;
  font-size: 0.94rem;
  color: #7d8295;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.episode-title {
  font-size: 1.14rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.55;
}

.episode-title-link {
  color: inherit;
  text-decoration: none;
}

.episode-title-link:hover {
  text-decoration: underline;
}

.episode-links {
  margin-top: 0.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.episode-detail-link {
  font-size: 0.85rem;
  color: #2f63ff;
  text-decoration: none;
}

.episode-detail-link:hover {
  text-decoration: underline;
}

.episode-description {
  margin: 0;
  font-size: 0.95rem;
  color: #8b90a3;
  line-height: 1.5;
  max-width: 85%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-pane .pagination {
  margin: 1.5rem;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #111111;
}

.pagination a {
  text-decoration: none;
  color: #2f63ff;
}

.pagination .pagination-info {
  color: #111111;
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mobile-header {
    display: flex;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: min(18rem, 80vw);
    max-width: 80vw;
    z-index: 40;
    box-shadow: 1.7143rem 0 3rem rgba(0, 0, 0, 0.12);
    overflow-y: auto;
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .main-area {
    padding: 1.5rem 1.25rem 3rem;
    min-height: calc(100vh - 4rem);
  }

  .sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 30;
  }

  body.sidebar-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .loading-overlay {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 45.7143rem) {
  .loading-overlay {
    left: 0;
    width: 100%;
  }

  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-cover img {
    width: 100%;
    height: auto;
  }

  .episode-detail-hero {
    grid-template-columns: 1fr;
  }

  .episode-detail-cover img {
    width: 100%;
    height: auto;
  }

  .episode-detail-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
