:root {
  --canyon-900: #3c2519;
  --canyon-800: #704c37;
  --canyon-700: #8a5c3f;
  --canyon-500: #b8895a;
  --canyon-200: #e8dbc8;
  --canyon-100: #f5f0e8;
  --canyon-50: #faf7f2;
  --earth-900: #4a3e34;
  --earth-800: #56483c;
  --earth-700: #655545;
  --earth-600: #7a6752;
  --gold-600: #f09200;
  --gold-500: #ffb41e;
  --gold-400: #ffc94a;
  --gold-300: #ffdf8f;
  --forest-700: #3d4d40;
  --forest-600: #4a5e4d;
  --forest-100: #e5eae5;
  --sand-50: #fdfcfa;
  --sand-100: #faf7f0;
  --sand-200: #f5eedd;
  --white: #ffffff;
  --text: #34261f;
  --muted: #7d6b5d;
  --shadow: 0 16px 40px rgba(86, 72, 60, 0.16);
  --shadow-lg: 0 24px 70px rgba(86, 72, 60, 0.24);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, var(--canyon-50), var(--white) 45%, var(--sand-100));
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--canyon-800), var(--earth-800));
  box-shadow: 0 12px 34px rgba(60, 37, 25, 0.28);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--canyon-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 10px 30px rgba(255, 180, 30, 0.32);
}

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

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

.nav-link,
.mobile-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--gold-300);
}

.header-search,
.mobile-search,
.wide-search,
.search-page-form {
  display: flex;
  align-items: center;
}

.header-search {
  width: 250px;
  position: relative;
}

.header-search input,
.mobile-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 44px 10px 16px;
  outline: 0;
  backdrop-filter: blur(10px);
}

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

.header-search button {
  position: absolute;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 16px 20px;
}

.mobile-panel.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.mobile-search {
  gap: 10px;
}

.mobile-search button,
.wide-search button,
.search-page-form button,
.filter-search button {
  border: 0;
  border-radius: 999px;
  color: var(--canyon-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(240, 146, 0, 0.22);
}

.mobile-search button {
  padding: 10px 16px;
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--earth-900);
}

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

.hero-slide.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(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.04)),
    linear-gradient(90deg, rgba(60, 37, 25, 0.86), rgba(60, 37, 25, 0.18), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 86px;
}

.hero-copy {
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-300);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--canyon-700);
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.hero-copy p:not(.eyebrow) {
  margin: 0 0 22px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-tags,
.tag-row,
.card-meta,
.detail-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.tag-row span {
  color: var(--forest-700);
  background: var(--forest-100);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  color: var(--canyon-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 18px 34px rgba(240, 146, 0, 0.34);
}

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

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

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

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

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

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

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

.search-band,
.section-block,
.filter-panel,
.page-hero,
.detail-info-card,
.player-shell,
.category-card-large,
.wide-ranking {
  border: 1px solid rgba(232, 219, 200, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.search-band {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 460px);
  gap: 24px;
  align-items: center;
  margin-top: -34px;
  padding: 26px;
  position: relative;
  z-index: 4;
  backdrop-filter: blur(14px);
}

.search-band h2,
.section-title h2,
.page-hero h1,
.detail-info-card h1,
.detail-content h2,
.side-panel h2 {
  margin: 0;
  color: var(--canyon-900);
}

.wide-search,
.search-page-form,
.filter-search {
  gap: 12px;
}

.wide-search input,
.search-page-form input,
.filter-search input {
  width: 100%;
  border: 1px solid var(--canyon-200);
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--sand-50);
  color: var(--text);
  outline: 0;
}

.wide-search button,
.search-page-form button,
.filter-search button {
  padding: 14px 24px;
  white-space: nowrap;
}

.section-block {
  margin-top: 46px;
  padding: 28px;
}

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

.section-title h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section-title a {
  color: var(--canyon-700);
  font-weight: 800;
}

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 290px);
  gap: 22px;
  overflow-x: auto;
  padding: 3px 3px 20px;
  scroll-snap-type: x proximity;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  min-width: 0;
}

.card-link {
  display: block;
  overflow: hidden;
  height: 100%;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(86, 72, 60, 0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--canyon-200), var(--sand-200));
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-link:hover img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18), transparent);
  transition: opacity 0.25s ease;
}

.card-link:hover .card-overlay {
  opacity: 1;
}

.play-mark,
.play-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--white);
  background: var(--gold-500);
  box-shadow: 0 14px 30px rgba(255, 180, 30, 0.34);
}

.year-pill,
.rank-badge {
  position: absolute;
  top: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 900;
}

.year-pill {
  right: 12px;
}

.rank-badge {
  left: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 10px;
  color: var(--canyon-900);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card-line {
  min-height: 44px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card-meta {
  justify-content: space-between;
  align-items: center;
  color: var(--earth-600);
  font-size: 12px;
  font-weight: 800;
}

.card-meta span:first-child {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--forest-700);
  background: var(--forest-100);
}

.category-panel {
  background: linear-gradient(135deg, #f4f6f4, var(--canyon-50));
}

.category-strips {
  display: grid;
  gap: 28px;
}

.category-strip {
  min-width: 0;
}

.strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.strip-head h3 {
  margin: 0;
  color: var(--forest-700);
  font-size: 22px;
}

.strip-head a {
  color: var(--canyon-700);
  font-weight: 800;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.compact-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(86, 72, 60, 0.11);
  transition: transform 0.22s ease;
}

.compact-card:hover {
  transform: translateY(-4px);
}

.compact-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.compact-card span {
  display: block;
  padding: 10px;
  color: var(--canyon-900);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
  margin-bottom: 50px;
}

.split-block .section-block {
  margin-top: 46px;
}

.ranking-list,
.side-links {
  display: grid;
  gap: 10px;
}

.rank-row,
.side-links a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: var(--sand-50);
  transition: background 0.22s ease, transform 0.22s ease;
}

.rank-row:hover,
.side-links a:hover {
  background: var(--canyon-100);
  transform: translateX(2px);
}

.rank-row span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--canyon-900);
  background: var(--gold-400);
  font-weight: 900;
}

.rank-row strong,
.side-links span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-row em,
.side-links em {
  color: var(--canyon-700);
  font-style: normal;
  font-weight: 900;
}

.page-main {
  padding: 32px 0 56px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.crumbs a {
  color: var(--canyon-700);
  font-weight: 800;
}

.page-hero {
  padding: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 201, 74, 0.28), transparent 28%),
    linear-gradient(135deg, var(--canyon-800), var(--earth-800));
}

.page-hero.small-hero,
.category-hero,
.ranking-hero {
  min-height: 240px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.8;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.category-card-large {
  overflow: hidden;
}

.category-card-large a {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 230px;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 115px;
  gap: 3px;
  background: var(--canyon-100);
}

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

.category-card-body {
  padding: 24px;
}

.category-card-body h2 {
  margin: 0 0 10px;
  color: var(--canyon-900);
  font-size: 28px;
}

.category-card-body p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.filter-panel {
  margin: 26px 0;
  padding: 22px;
}

.filter-search {
  margin-bottom: 16px;
}

.filter-groups {
  display: grid;
  gap: 14px;
}

.filter-groups div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.filter-groups strong {
  color: var(--canyon-900);
  margin-right: 4px;
}

.filter-groups button {
  border: 1px solid var(--canyon-200);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--earth-700);
  background: var(--sand-50);
  cursor: pointer;
}

.filter-groups button.active {
  color: var(--canyon-900);
  border-color: var(--gold-500);
  background: var(--gold-400);
  font-weight: 900;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #090604;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  width: 76px;
  height: 76px;
  font-size: 30px;
}

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

.detail-info-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 220px 1fr;
}

.detail-info-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info-card > div {
  padding: 22px;
}

.detail-info-card h1 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.detail-info-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.detail-meta-grid span {
  border-radius: 12px;
  padding: 9px 11px;
  color: var(--earth-700);
  background: var(--sand-100);
  font-size: 13px;
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 24px;
}

.detail-content p {
  color: var(--text);
  font-size: 16px;
  line-height: 2;
}

.detail-content h2 + p {
  margin-top: 10px;
}

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

.wide-ranking {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 20px;
}

.wide-rank-row {
  display: grid;
  grid-template-columns: 50px 120px 1fr 70px;
  gap: 18px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--sand-50);
  transition: transform 0.22s ease, background 0.22s ease;
}

.wide-rank-row:hover {
  transform: translateY(-3px);
  background: var(--canyon-100);
}

.wide-rank-num,
.wide-rank-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.wide-rank-num {
  width: 42px;
  height: 42px;
  color: var(--canyon-900);
  background: var(--gold-400);
}

.wide-rank-row img {
  width: 120px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  object-fit: cover;
}

.wide-rank-main {
  min-width: 0;
}

.wide-rank-main strong {
  display: block;
  margin-bottom: 6px;
  color: var(--canyon-900);
  font-size: 18px;
}

.wide-rank-main em {
  display: block;
  color: var(--muted);
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wide-rank-score {
  color: var(--canyon-700);
  font-size: 22px;
}

.search-panel {
  margin-top: 28px;
}

.search-page-form {
  width: min(760px, 100%);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, var(--canyon-900), var(--earth-900));
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
  padding-bottom: 34px;
}

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

.site-footer p {
  line-height: 1.8;
}

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

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

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

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

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

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

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

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

  .detail-info-card {
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 64px;
  }

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

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

  .hero-carousel {
    height: 520px;
  }

  .hero-content {
    padding-bottom: 74px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-button,
  .ghost-button {
    min-height: 42px;
    padding: 0 17px;
  }

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

  .search-band {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .wide-search,
  .search-page-form,
  .filter-search {
    flex-direction: column;
    align-items: stretch;
  }

  .section-block,
  .filter-panel,
  .page-hero {
    padding: 20px;
    border-radius: 20px;
  }

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

  .four-cols,
  .three-cols,
  .two-cols,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .category-card-large a,
  .detail-info-card {
    grid-template-columns: 1fr;
  }

  .wide-rank-row {
    grid-template-columns: 42px 92px 1fr;
  }

  .wide-rank-score {
    display: none;
  }

  .wide-rank-row img {
    width: 92px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
