:root {
  --gold-50: #fffbeb;
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;
  --gold-800: #92400e;
  --ink-900: #111827;
  --ink-800: #1f2937;
  --ink-700: #374151;
  --ink-600: #4b5563;
  --paper: #fffaf0;
  --card: #ffffff;
  --line: rgba(180, 83, 9, 0.16);
  --shadow: 0 18px 45px rgba(146, 64, 14, 0.18);
  --shadow-soft: 0 8px 24px rgba(245, 158, 11, 0.16);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: min(1200px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 191, 36, 0.22), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(245, 158, 11, 0.20), transparent 28%),
    linear-gradient(180deg, #fff7ed 0%, #fffbeb 42%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500), var(--gold-600));
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.30);
}

.nav-wrap {
  width: var(--container);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  opacity: 0.92;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.20);
  padding: 9px 12px;
}

main {
  min-height: 70vh;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0 34px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(146, 64, 14, 0.92)),
    linear-gradient(135deg, var(--gold-400), var(--gold-700));
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.38;
  pointer-events: none;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  right: 9%;
  top: -120px;
  background: var(--gold-300);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: -130px;
  background: var(--gold-600);
}

.hero-inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  min-height: 540px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 52px;
  min-height: 520px;
  animation: fadeIn 0.55s ease both;
}

.hero-slide.is-active {
  display: grid;
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker,
.detail-kicker,
.page-hero span,
.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-200);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.8;
}

.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-radius: 999px;
  padding: 6px 11px;
  font-size: 0.82rem;
  color: var(--gold-800);
  background: var(--gold-100);
  border: 1px solid rgba(251, 191, 36, 0.42);
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.36);
}

.button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.button.full {
  width: 100%;
}

.hero-visual {
  display: block;
  transform: rotate(2deg);
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.34));
}

.poster {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(251, 191, 36, 0.22), rgba(146, 64, 14, 0.18)),
    #4b2c0b;
  box-shadow: var(--shadow-soft);
}

.poster::before {
  content: "";
  display: block;
  padding-top: 142%;
}

.poster img,
.poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poster img {
  object-fit: cover;
  z-index: 2;
}

.poster-fallback {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 18%, rgba(252, 211, 77, 0.55), transparent 38%),
    linear-gradient(150deg, #1f2937, #92400e 62%, #111827);
}

.poster-fallback span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--gold-900);
  background: rgba(255, 255, 255, 0.18);
}

.poster-fallback strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.poster.is-missing .poster-fallback {
  z-index: 3;
}

.poster-hero {
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.poster-rank::before {
  padding-top: 120%;
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 12px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 38px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #ffffff;
}

.stats-strip {
  width: var(--container);
  margin: -18px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats-strip div {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(251, 191, 36, 0.22);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.stats-strip strong {
  display: block;
  font-size: 1.75rem;
  color: var(--gold-700);
}

.stats-strip span {
  color: var(--ink-600);
  font-weight: 700;
}

.content-section {
  width: var(--container);
  margin: 0 auto;
  padding: 56px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.ranking-title h2,
.page-hero h1,
.detail-info h1 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  margin: 0;
  color: var(--ink-600);
  line-height: 1.8;
}

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

.category-tile,
.category-overview-card a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, var(--gold-50));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-tile span,
.category-overview-card span {
  font-weight: 900;
  color: var(--ink-800);
}

.category-tile strong,
.category-overview-card h2 {
  margin: auto 0 0;
  font-size: 2.4rem;
  color: var(--gold-700);
  line-height: 1;
}

.category-tile em,
.category-overview-card em {
  color: var(--ink-600);
  font-style: normal;
  font-weight: 700;
}

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

.category-overview-card p {
  margin: 0;
  color: var(--ink-600);
  line-height: 1.7;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-card-cover {
  position: relative;
  display: block;
}

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(8px);
}

.movie-card-body {
  padding: 16px;
}

.movie-card-meta,
.movie-card-body p,
.detail-one-line,
.detail-content p,
.ranking-table,
.sitemap-group li span {
  color: var(--ink-600);
}

.movie-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 800;
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.ranking-table a:hover,
.sitemap-group a:hover {
  color: var(--gold-700);
}

.movie-card p {
  min-height: 68px;
  margin: 0 0 14px;
  font-size: 0.93rem;
  line-height: 1.65;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 24px;
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--ink-700);
  font-weight: 800;
}

.filter-panel input,
.filter-panel select,
.search-box-large input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(180, 83, 9, 0.22);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--ink-900);
  background: #ffffff;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-box-large input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18);
}

.filter-count {
  color: var(--gold-700);
  font-weight: 900;
  padding-bottom: 10px;
}

.ranking-panel {
  position: sticky;
  top: 88px;
  border-radius: 26px;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(150deg, var(--ink-900), var(--gold-800));
  box-shadow: var(--shadow);
}

.ranking-title span {
  color: var(--gold-200);
  font-weight: 900;
}

.ranking-panel ol {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 12px;
}

.ranking-panel li a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
}

.ranking-panel li span {
  color: var(--gold-200);
  font-weight: 900;
}

.ranking-panel li strong {
  display: block;
}

.ranking-panel li em {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 0.86rem;
}

.page-hero {
  width: var(--container);
  margin: 28px auto 0;
  border-radius: 32px;
  padding: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 8%, rgba(252, 211, 77, 0.34), transparent 35%),
    linear-gradient(135deg, var(--ink-900), var(--gold-800));
  box-shadow: var(--shadow);
}

.page-hero.compact {
  min-height: 240px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

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

.rank-feature {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 24px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.rank-feature h2 {
  margin: 4px 0 8px;
  font-size: 1.3rem;
}

.rank-feature p {
  color: var(--ink-600);
  line-height: 1.6;
}

.rank-feature span,
.rank-feature em {
  color: var(--gold-700);
  font-weight: 900;
  font-style: normal;
}

.table-wrap {
  overflow: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.ranking-table th,
.ranking-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(180, 83, 9, 0.12);
}

.ranking-table th {
  color: var(--ink-800);
  background: var(--gold-50);
}

.detail-hero {
  width: var(--container);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  border-radius: 34px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 12%, rgba(252, 211, 77, 0.34), transparent 34%),
    linear-gradient(135deg, var(--ink-900), var(--gold-800));
  box-shadow: var(--shadow);
}

.detail-poster .poster {
  border-radius: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--gold-200);
}

.detail-info h1 {
  margin-top: 14px;
  color: #ffffff;
}

.detail-one-line {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.detail-stats span {
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
}

.detail-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
}

.player-section {
  padding-bottom: 20px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #05070d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.player-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 45%, rgba(251, 191, 36, 0.20), transparent 30%),
    #05070d;
}

.video-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.video-start span {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.45);
}

.video-start strong {
  font-size: 1.1rem;
}

.player-card.is-playing .video-start {
  display: none;
}

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  border-radius: 14px;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.82);
}

.player-message.is-visible {
  display: block;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.detail-content article,
.detail-content aside {
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.detail-content h2 {
  margin: 0 0 14px;
}

.detail-content p {
  margin: 0;
  line-height: 1.9;
}

.detail-content dl {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px 14px;
  margin: 0;
}

.detail-content dt {
  color: var(--ink-600);
  font-weight: 800;
}

.detail-content dd {
  margin: 0;
}

.search-box-large {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 12px;
  border-radius: 24px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

.search-box-large button {
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}

.search-result-info {
  margin-bottom: 22px;
  color: var(--ink-600);
  font-weight: 800;
}

.sitemap-list {
  display: grid;
  gap: 26px;
}

.sitemap-group {
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.sitemap-group h2 {
  margin: 0 0 16px;
}

.sitemap-group ul {
  column-count: 4;
  column-gap: 26px;
  padding-left: 18px;
  margin: 0;
}

.sitemap-group li {
  break-inside: avoid;
  margin-bottom: 9px;
}

.site-footer {
  margin-top: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-800), var(--ink-900));
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 32px;
}

.site-footer h3 {
  margin: 0 0 14px;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
    font-size: 0.92rem;
  }

  .hero-slide,
  .section-split,
  .detail-hero,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

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

  .ranking-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    min-height: 62px;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 62px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 20px;
    padding: 12px;
    background: rgba(146, 64, 14, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .hero-section {
    padding-top: 26px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-slide {
    gap: 28px;
    min-height: auto;
  }

  .hero-dots {
    position: static;
    margin-top: 24px;
  }

  .stats-strip,
  .rank-feature-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .page-hero {
    padding: 28px;
    display: block;
  }

  .detail-hero {
    padding: 20px;
  }

  .detail-poster {
    max-width: 300px;
  }

  .sitemap-group ul {
    column-count: 2;
  }
}

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

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .movie-grid,
  .category-grid,
  .category-overview-grid,
  .stats-strip,
  .rank-feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rank-feature {
    grid-template-columns: 92px 1fr;
  }

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

  .sitemap-group ul {
    column-count: 1;
  }
}
