:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.10);
  --shadow-card: 0 12px 26px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: linear-gradient(180deg, var(--amber-50), var(--white) 28%, var(--slate-50));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--slate-900);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 12px 22px rgba(245, 158, 11, 0.35);
}

.brand-text {
  font-size: 21px;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--slate-700);
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--amber-600);
  background: var(--amber-100);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--slate-800);
  border: 0;
  border-radius: 12px;
  background: var(--amber-100);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.home-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, #b45309, var(--amber-500) 54%, var(--orange-600));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.55) 0 2px, transparent 3px);
  background-size: 58px 58px, 88px 88px;
}

.hero-slides {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
}

.hero-slide {
  display: none;
  min-height: 640px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 54px;
  padding: 72px 0;
  color: var(--white);
}

.hero-slide.active {
  display: grid;
  animation: heroFade 0.55s ease both;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--amber-600);
  background: rgba(254, 243, 199, 0.92);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 900;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 24px 0 10px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 42px rgba(124, 45, 18, 0.38);
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.3vw, 44px);
  line-height: 1.14;
  color: var(--amber-50);
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.hero-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--amber-800, #92400e);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

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

.primary-button,
.ghost-button,
.plain-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 14px 26px rgba(234, 88, 12, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.plain-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.plain-button {
  color: var(--amber-700, #b45309);
  background: var(--amber-100);
}

.hero-poster {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  box-shadow: 0 35px 70px rgba(124, 45, 18, 0.34);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 445px;
  object-fit: cover;
}

.hero-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.hero-poster span,
.play-hover,
.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  background: var(--amber-500);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-dot.active {
  width: 36px;
  background: var(--white);
}

.stats-section,
.content-section,
.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.stat-card {
  padding: 28px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  color: var(--amber-600);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--slate-500);
  font-weight: 800;
}

.content-section {
  padding: 54px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading.tight {
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 10px 0 0;
  color: var(--slate-900);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.section-heading a {
  color: var(--amber-600);
  font-weight: 900;
  white-space: nowrap;
}

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

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--slate-100));
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.08);
}

.duration-badge,
.rank-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.duration-badge {
  right: 12px;
  top: 12px;
  min-height: 28px;
  padding: 0 10px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 34px;
  min-height: 34px;
  background: linear-gradient(135deg, #facc15, var(--orange-600));
}

.play-hover {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.84);
  transition: 0.2s ease;
}

.movie-card:hover .play-hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-info {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.movie-info strong {
  color: var(--slate-900);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-info em {
  color: var(--slate-500);
  font-size: 14px;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.movie-meta span {
  color: var(--amber-700, #b45309);
  background: var(--amber-100);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}

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

.category-card {
  position: relative;
  min-height: 176px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(135deg, var(--white), var(--amber-50));
  border-top: 5px solid var(--cat-color, var(--amber-500));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.category-initial {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 20px;
  background: var(--cat-color, var(--amber-500));
  font-size: 28px;
  font-weight: 900;
}

.category-body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.category-body strong {
  color: var(--slate-900);
  font-size: 22px;
}

.category-body em {
  color: var(--slate-500);
  font-style: normal;
}

.category-body small {
  color: var(--amber-600);
  font-weight: 900;
}

.category-preview {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 150px;
  height: 96px;
  overflow: hidden;
  border-radius: 20px;
  opacity: 0.12;
  transform: rotate(-8deg);
}

.category-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
  gap: 34px;
}

.list-stack {
  display: grid;
  gap: 16px;
}

.list-stack.compact {
  gap: 12px;
}

.list-card {
  display: grid;
  grid-template-columns: auto 150px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
  transition: 0.2s ease;
}

.list-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.list-card img {
  width: 150px;
  height: 86px;
  object-fit: cover;
  border-radius: 14px;
}

.list-card span:not(.list-rank) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.list-card strong {
  color: var(--slate-900);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.list-card em {
  color: var(--slate-500);
  font-size: 14px;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.list-card small {
  color: var(--amber-600);
  font-weight: 800;
}

.list-rank {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, var(--orange-600));
  font-weight: 900;
}

.ranking-panel {
  position: sticky;
  top: 96px;
  align-self: start;
}

.page-hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, var(--amber-600), var(--orange-600));
  color: var(--white);
}

.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.page-hero h1 {
  max-width: 860px;
  margin: 18px 0 14px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.category-page-hero {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--cat-color, var(--amber-600)), rgba(249, 115, 22, 0.92));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.filter-bar label {
  display: grid;
  gap: 6px;
  min-width: min(100%, 220px);
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 900;
}

.filter-bar input,
.filter-bar select,
.hero-search input {
  min-height: 46px;
  width: 100%;
  color: var(--slate-900);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: none;
  padding: 0 14px;
}

.filter-bar input:focus,
.filter-bar select:focus,
.hero-search input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.result-count {
  margin: 12px 0 22px;
  color: var(--amber-600);
  font-weight: 900;
}

.hero-search {
  display: flex;
  max-width: 660px;
  gap: 10px;
  margin-top: 28px;
}

.hero-search input {
  min-height: 56px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.hero-search button {
  min-height: 56px;
  padding: 0 24px;
  color: var(--white);
  border: 0;
  border-radius: 16px;
  background: var(--slate-900);
  font-weight: 900;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 0 0;
  color: var(--slate-500);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--amber-600);
}

.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 26px;
  align-items: stretch;
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: var(--slate-900);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
  aspect-ratio: 16 / 9;
}

.video-frame video,
.player-cover,
.player-cover img,
.player-cover-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-frame video {
  z-index: 1;
  object-fit: contain;
  background: var(--slate-900);
}

.player-cover {
  z-index: 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--slate-900);
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-cover img {
  object-fit: cover;
}

.player-cover-shade {
  z-index: 2;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.44), rgba(0, 0, 0, 0.68));
}

.big-play {
  font-size: 28px;
}

.player-side {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.player-side h1 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.player-side p {
  margin: 0;
  color: var(--slate-500);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-meta span {
  padding: 7px 11px;
  color: var(--amber-700, #b45309);
  background: var(--amber-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.detail-article {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.detail-article h2 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: 26px;
}

.detail-article h2:not(:first-child) {
  margin-top: 30px;
}

.detail-article p {
  margin: 0;
  color: var(--slate-700);
  font-size: 17px;
}

.review-text {
  padding: 20px;
  background: linear-gradient(135deg, var(--amber-50), #fff7ed);
  border-left: 5px solid var(--amber-500);
  border-radius: 16px;
}

.info-table {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
}

.info-table span,
.info-table strong {
  padding: 14px 16px;
  border-bottom: 1px solid var(--slate-200);
}

.info-table span:nth-last-child(2),
.info-table strong:last-child {
  border-bottom: 0;
}

.info-table span {
  color: var(--slate-500);
  background: var(--slate-50);
}

.info-table strong {
  color: var(--slate-800);
}

.info-table a {
  color: var(--amber-600);
}

.tag-cloud {
  margin-top: 24px;
}

.tag-cloud span {
  background: var(--amber-100);
}

.site-footer {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--slate-900);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 34px;
  padding: 46px 0;
}

.footer-brand {
  color: var(--white);
  font-size: 20px;
}

.site-footer p {
  max-width: 420px;
  margin: 16px 0 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a:hover {
  color: var(--amber-300);
}

.hidden-by-filter {
  display: none !important;
}

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

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

  .hero-slide,
  .player-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 520px;
  }

  .ranking-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    height: 68px;
  }

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

  .home-hero,
  .hero-slides,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    padding: 46px 0 82px;
  }

  .hero-poster {
    min-height: 300px;
    transform: none;
  }

  .hero-poster img {
    min-height: 300px;
  }

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

  .movie-grid,
  .movie-grid.small-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .list-card {
    grid-template-columns: auto 112px 1fr;
  }

  .list-card img {
    width: 112px;
    height: 72px;
  }

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

  .hero-search {
    flex-direction: column;
  }

  .player-side,
  .detail-article {
    padding: 22px;
  }

  .info-table {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-section {
    grid-template-columns: 1fr;
  }

  .filter-bar label {
    min-width: 100%;
  }

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

  .list-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
