* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.86);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --brand: #3b82f6;
  --brand-deep: #1d4ed8;
  --brand-soft: rgba(59, 130, 246, 0.14);
  --accent: #f59e0b;
  --danger: #ef4444;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -10%, rgba(37, 99, 235, 0.22), transparent 36rem),
    radial-gradient(circle at 80% 8%, rgba(14, 165, 233, 0.14), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 6, 23, 0.94);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}

.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--brand), #06b6d4);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.34);
}

.brand-name {
  font-size: 20px;
}

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

.nav-link,
.nav-search,
.mobile-link {
  color: #cbd5e1;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-link,
.nav-search {
  padding: 10px 14px;
}

.nav-link:hover,
.nav-search:hover,
.mobile-link:hover {
  color: white;
  background: rgba(148, 163, 184, 0.12);
}

.nav-search {
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.12);
  color: #dbeafe;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: white;
  background: rgba(148, 163, 184, 0.16);
}

.mobile-menu {
  display: none;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.95);
}

.mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-track {
  min-height: 680px;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 64px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.58)),
    var(--cover);
  background-size: cover;
  background-position: center;
  filter: blur(12px) saturate(1.12);
  transform: scale(1.06);
}

.hero-content {
  max-width: 720px;
  padding-top: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-intro h1 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 86px);
}

.hero p,
.page-hero p,
.detail-intro p {
  color: var(--muted-strong);
  line-height: 1.8;
}

.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 18px;
}

.hero-tags,
.detail-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.58);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), #06b6d4);
  box-shadow: 0 16px 34px rgba(59, 130, 246, 0.26);
}

.button-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-soft,
.button-wide {
  color: #dbeafe;
  background: var(--brand-soft);
  border-color: rgba(59, 130, 246, 0.28);
}

.button-wide {
  width: 100%;
  margin-top: 18px;
}

.hero-poster,
.detail-cover,
.movie-poster,
.category-tile,
.ranking-card,
.category-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.82)),
    var(--cover);
  background-size: cover;
  background-position: center;
}

.hero-poster {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-poster::after,
.movie-poster::after,
.category-tile::after,
.ranking-card::after,
.category-card::after,
.detail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.72));
  pointer-events: none;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
  border: 0;
  color: white;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 26px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
  opacity: 0.58;
  transition: width 160ms ease, opacity 160ms ease, background 160ms ease;
}

.hero-dot.is-active {
  width: 30px;
  opacity: 1;
  background: var(--brand);
}

.quick-search-panel,
.section-block {
  margin-top: 64px;
}

.quick-search-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.quick-search-panel h2,
.section-head h2,
.ranking-panel h2,
.content-card h2,
.ranking-side h2 {
  margin: 0;
  letter-spacing: -0.025em;
}

.quick-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.quick-search input,
.catalog-toolbar input,
.inline-filter input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
  color: var(--text);
  background: rgba(2, 6, 23, 0.42);
}

.quick-search input:focus,
.catalog-toolbar input:focus,
.inline-filter input:focus {
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.quick-search button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), #06b6d4);
}

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

.section-head p {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-more {
  color: #bfdbfe;
  font-weight: 800;
}

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

.category-tile {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: transform 180ms ease, border-color 180ms ease;
}

.category-tile:hover,
.movie-card:hover,
.category-card:hover,
.ranking-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.46);
}

.category-tile span,
.category-tile em {
  position: relative;
  z-index: 1;
}

.category-tile span {
  font-size: 20px;
  font-weight: 900;
}

.category-tile em {
  margin-top: 8px;
  color: #dbeafe;
  font-style: normal;
  line-height: 1.55;
}

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

.compact-grid,
.search-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-card {
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.movie-card.is-hidden {
  display: none;
}

.movie-poster {
  display: block;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.poster-badge,
.poster-year {
  position: absolute;
  z-index: 1;
  top: 12px;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
  color: white;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(10px);
}

.poster-badge {
  left: 12px;
}

.poster-year {
  right: 12px;
}

.movie-info {
  padding: 16px;
}

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: white;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-title:hover {
  color: #bfdbfe;
}

.movie-desc {
  display: -webkit-box;
  min-height: 48px;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.62;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 13px;
}

.movie-meta span {
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(148, 163, 184, 0.1);
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  padding: 5px 8px;
  font-size: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.ranking-panel,
.ranking-side,
.content-card,
.catalog-panel,
.category-card,
.player-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.ranking-panel,
.ranking-side,
.content-card,
.catalog-panel {
  padding: 22px;
}

.rank-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.34);
}

.rank-row:hover {
  background: rgba(59, 130, 246, 0.16);
}

.rank-number {
  color: #93c5fd;
  font-weight: 900;
}

.rank-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 800;
}

.rank-extra {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
}

.page-hero,
.detail-hero {
  position: relative;
  padding: 92px 0 42px;
  overflow: hidden;
}

.simple-hero {
  background:
    radial-gradient(circle at 78% 10%, rgba(59, 130, 246, 0.2), transparent 28rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), transparent);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 6vw, 68px);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
}

.breadcrumb a:hover {
  color: #bfdbfe;
}

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

.category-card {
  min-height: 340px;
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease;
}

.category-card-main,
.category-samples {
  position: relative;
  z-index: 1;
}

.category-card h2 {
  margin: 0;
  font-size: 30px;
}

.category-card p {
  color: #dbeafe;
  line-height: 1.7;
}

.category-samples {
  display: grid;
  gap: 8px;
}

.mini-rank-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #e2e8f0;
  background: rgba(2, 6, 23, 0.44);
}

.mini-rank-item span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-rank-item em {
  color: #93c5fd;
  font-style: normal;
}

.catalog-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.large-toolbar input {
  min-height: 56px;
  font-size: 16px;
}

.filter-groups {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

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

.filter-line > span {
  min-width: 44px;
  color: #cbd5e1;
  font-weight: 800;
}

.filter-chip {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.32);
}

.filter-chip:hover,
.filter-chip.is-active {
  color: white;
  border-color: rgba(59, 130, 246, 0.55);
  background: rgba(59, 130, 246, 0.2);
}

.inline-filter {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.ranking-list-large {
  display: grid;
  gap: 14px;
}

.ranking-card {
  min-height: 142px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.ranking-card > * {
  position: relative;
  z-index: 1;
}

.ranking-index {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), #06b6d4);
}

.ranking-card h2 {
  margin: 0;
  font-size: 22px;
}

.ranking-card p {
  margin: 8px 0;
  color: #dbeafe;
  line-height: 1.6;
}

.ranking-card em {
  color: #93c5fd;
  font-style: normal;
  font-weight: 800;
}

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

.detail-hero {
  padding-bottom: 56px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.68)),
    var(--cover);
  background-size: cover;
  background-position: center;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-cover {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-intro h1 {
  max-width: 860px;
  font-size: clamp(38px, 6vw, 72px);
}

.detail-intro p {
  max-width: 780px;
  margin-top: 18px;
  font-size: 18px;
}

.detail-tags {
  margin-top: 20px;
}

.player-section {
  padding: 18px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #020617;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(59, 130, 246, 0.16), transparent 22rem),
    rgba(2, 6, 23, 0.58);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-button {
  width: 82px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #06b6d4);
  box-shadow: 0 18px 48px rgba(59, 130, 246, 0.36);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid white;
}

.player-overlay strong {
  font-size: 24px;
}

.player-overlay p {
  margin: 0;
  color: #bfdbfe;
}

.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.source-pill {
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 999px;
  padding: 9px 14px;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.12);
}

.source-pill.is-active,
.source-pill:hover {
  color: white;
  background: rgba(59, 130, 246, 0.28);
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.content-card p {
  margin-bottom: 0;
  color: var(--muted-strong);
  line-height: 1.9;
}

.site-footer {
  margin-top: 84px;
  padding: 46px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  color: var(--muted);
  background: rgba(2, 6, 23, 0.72);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid p {
  max-width: 560px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-links a {
  border-radius: 999px;
  padding: 9px 12px;
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.1);
}

@media (max-width: 1100px) {
  .movie-grid,
  .compact-grid,
  .search-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .split-layout,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .ranking-side {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-search {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero,
  .hero-track {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: center;
  }

  .hero-poster {
    max-width: 260px;
    justify-self: center;
    transform: none;
  }

  .quick-search-panel {
    grid-template-columns: 1fr;
  }

  .quick-search {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .compact-grid,
  .search-grid,
  .category-grid,
  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .footer-grid,
  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

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

  .detail-cover {
    width: min(300px, 100%);
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .nav-shell {
    height: 66px;
  }

  .hero,
  .hero-track {
    min-height: 700px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p,
  .detail-intro p {
    font-size: 16px;
  }

  .movie-grid,
  .compact-grid,
  .search-grid,
  .category-grid,
  .category-card-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions,
  .detail-actions,
  .source-row {
    flex-direction: column;
  }

  .button,
  .source-pill {
    width: 100%;
  }

  .page-hero,
  .detail-hero {
    padding-top: 64px;
  }
}
