:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --amber-50: #fffbeb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --shadow-md: 0 10px 22px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
  box-shadow: 0 12px 30px rgba(194, 65, 12, 0.24);
}

.nav-container {
  width: min(100% - 32px, var(--max-width));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 650;
  font-size: 15px;
}

.nav-link {
  opacity: 0.96;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--orange-100);
  opacity: 1;
}

.nav-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input,
.mobile-search input {
  width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 42px 9px 16px;
  outline: none;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.nav-search button {
  position: absolute;
  right: 10px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--orange-700);
}

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

.mobile-menu a {
  padding: 8px 0;
  font-weight: 650;
}

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

.mobile-search input {
  width: 100%;
}

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--orange-700);
  background: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--gray-900), var(--gray-800));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.88)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.15));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  right: 24px;
  bottom: 68px;
  max-width: 760px;
  color: var(--white);
}

.hero-badge,
.category-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.hero-badge {
  padding: 8px 16px;
  margin-bottom: 18px;
  background: var(--orange-600);
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.35);
}

.hero h1,
.hero h2 {
  max-width: 900px;
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 26px;
  color: #e5e7eb;
  font-size: 18px;
}

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

.button-primary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 26px;
  border: 0;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.28);
}

.button-primary:hover {
  transform: translateY(-1px);
  background: var(--orange-700);
  box-shadow: 0 20px 36px rgba(234, 88, 12, 0.34);
}

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

.button-small {
  padding: 8px 18px;
  font-size: 14px;
}

.button-primary.full {
  width: 100%;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.category-strip,
.home-section,
.list-page,
.overview-stack {
  padding: 48px 0;
}

.home-section + .home-section,
.overview-stack {
  padding-top: 16px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--orange-700);
  background: var(--orange-100);
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.section-heading p {
  margin: 4px 0 0;
  color: var(--gray-600);
}

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

.category-tile {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.category-overview-card:hover,
.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.category-tile span {
  color: var(--orange-700);
  font-weight: 850;
}

.category-tile strong {
  font-size: 34px;
  line-height: 1;
}

.category-tile small {
  color: var(--gray-600);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
}

.movie-card-large .poster-wrap {
  height: 270px;
}

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

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

.rating-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 850;
}

.card-body {
  padding: 18px;
}

.category-pill {
  padding: 5px 10px;
  margin-bottom: 10px;
  color: var(--orange-700);
  background: var(--orange-100);
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--orange-600);
}

.movie-card p {
  margin: 0 0 12px;
  color: var(--gray-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-large p {
  -webkit-line-clamp: 3;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-card-horizontal .card-link {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.movie-card-horizontal .poster-wrap {
  height: 100%;
  min-height: 150px;
}

.featured-band {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, var(--orange-50), var(--amber-50));
}

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

.rank-panel,
.side-card,
.detail-card,
.player-card,
.category-overview-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.rank-panel {
  padding: 22px;
  position: sticky;
  top: 88px;
}

.rank-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.rank-panel h2,
.side-card h2 {
  margin: 0;
  font-size: 22px;
}

.rank-panel-head a {
  color: var(--orange-700);
  font-weight: 750;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 28px 54px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.rank-item:hover {
  background: var(--orange-50);
}

.rank-number {
  color: var(--orange-600);
  font-weight: 900;
}

.rank-item img {
  width: 54px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--gray-200);
}

.rank-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.rank-score {
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
  padding: 54px 0;
}

.page-hero .container {
  display: grid;
  gap: 10px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  font-weight: 900;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--orange-100);
  font-size: 18px;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
  opacity: 0.82;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumbs a:hover {
  color: var(--white);
}

.detail-breadcrumbs {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.detail-breadcrumbs a:hover {
  color: var(--orange-700);
}

.filter-bar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.filter-bar.compact {
  grid-template-columns: 2fr 1fr auto;
}

.filter-bar label {
  display: grid;
  gap: 6px;
  color: var(--gray-700);
  font-weight: 750;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 11px 12px;
  background: var(--white);
  outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
}

.filter-count {
  color: var(--gray-600);
  white-space: nowrap;
  padding-bottom: 12px;
}

.overview-stack {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.category-overview-head h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.category-overview-head p {
  margin: 0;
  color: var(--gray-600);
}

.mini-card-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.mini-card-row .poster-wrap {
  height: 150px;
}

.mini-card-row .movie-card p,
.mini-card-row .card-meta {
  display: none;
}

.detail-main {
  padding: 34px 0 70px;
}

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

.player-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--black);
}

.player-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  text-align: center;
}

.play-overlay.is-hidden {
  display: none;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 4px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.34);
  font-size: 30px;
}

.play-overlay strong {
  font-size: 22px;
}

.play-overlay small {
  color: #e5e7eb;
}

.player-status {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  font-size: 12px;
}

.detail-card {
  padding: 28px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.detail-tags span,
.detail-tags a,
.genre-cloud span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 13px;
  font-weight: 750;
}

.detail-tags a {
  color: var(--orange-700);
  background: var(--orange-100);
}

.detail-card h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 0 0 22px;
  color: var(--gray-600);
  font-size: 18px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.detail-meta-grid div {
  padding: 14px;
  border-radius: 14px;
  background: var(--gray-50);
}

.detail-meta-grid dt {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 800;
}

.detail-meta-grid dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.detail-section {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--gray-200);
}

.detail-section h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.detail-section p {
  margin: 0;
  color: var(--gray-700);
}

.genre-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.side-card {
  padding: 20px;
}

.poster-side img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 14px;
  background: var(--gray-200);
}

.related-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.related-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
}

.related-item img {
  width: 92px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--gray-200);
}

.related-item strong,
.related-item small {
  display: block;
}

.related-item strong {
  margin-bottom: 4px;
  line-height: 1.3;
}

.related-item:hover strong {
  color: var(--orange-600);
}

.related-item small {
  color: var(--gray-500);
}

.rank-page-list {
  display: grid;
  gap: 12px;
}

.rank-row {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row a {
  display: grid;
  grid-template-columns: 56px 86px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.rank-large-number {
  color: var(--orange-600);
  font-size: 24px;
  font-weight: 950;
  text-align: center;
}

.rank-row img {
  width: 86px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--gray-200);
}

.rank-row-body {
  min-width: 0;
}

.rank-row-body strong,
.rank-row-body small,
.rank-row-body em {
  display: block;
}

.rank-row-body strong {
  font-size: 18px;
}

.rank-row-body small {
  overflow: hidden;
  color: var(--gray-600);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row-body em {
  color: var(--gray-500);
  font-style: normal;
  font-size: 13px;
}

.rank-row-score {
  color: var(--orange-700);
  font-weight: 900;
}

.site-footer {
  margin-top: 70px;
  color: #d1d5db;
  background: var(--gray-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

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

.site-footer p {
  margin: 0;
  color: #d1d5db;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

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

.footer-links a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 16px;
  color: #9ca3af;
  text-align: center;
  font-size: 14px;
}

[data-card].is-hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .hero {
    height: 600px;
  }
}

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

  .mobile-toggle {
    display: block;
  }

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

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

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

  .rank-panel,
  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .brand span {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 76px;
  }

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

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .category-grid,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4,
  .card-grid-5,
  .mini-card-row,
  .footer-grid,
  .filter-bar,
  .filter-bar.compact,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .featured-band,
  .detail-card,
  .side-card,
  .category-overview-card {
    padding: 18px;
  }

  .movie-card-horizontal .card-link {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal .poster-wrap,
  .poster-wrap {
    height: 230px;
  }

  .category-overview-head,
  .rank-row a {
    grid-template-columns: 1fr;
    display: grid;
  }

  .rank-row a {
    gap: 10px;
  }

  .rank-large-number {
    text-align: left;
  }

  .rank-row img {
    width: 100%;
    height: 160px;
  }

  .filter-count {
    padding-bottom: 0;
  }
}
