:root {
  color-scheme: dark;
  --night-950: #061421;
  --night-900: #102a43;
  --night-850: #183653;
  --night-800: #243b53;
  --night-700: #334e68;
  --night-600: #486581;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --text: #f8fafc;
  --muted: #a7b4c2;
  --soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--night-950), #081827 45%, var(--night-950));
}

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

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

button,
input {
  font: inherit;
}

main {
  padding-top: 4.5rem;
}

.container-custom {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(90deg, var(--amber-400), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 42, 67, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.24);
}

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

.nav-link {
  padding: 0.7rem 0.3rem;
  color: #d1d7df;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-400);
  border-color: var(--amber-400);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 12rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(36, 59, 83, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  color: #dbe3eb;
}

.dropdown-panel a:hover {
  color: var(--amber-400);
  background: rgba(255, 255, 255, 0.08);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-search input,
.search-page-form input,
.filter-bar input,
.quick-search-panel input {
  min-width: 14rem;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  outline: none;
  background: rgba(6, 20, 33, 0.66);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.search-page-form input:focus,
.filter-bar input:focus,
.quick-search-panel input:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.12);
}

.header-search button {
  color: #111827;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  cursor: pointer;
  background: var(--amber-400);
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 1.3rem;
  height: 2px;
  margin: 0.32rem auto;
  border-radius: 999px;
  background: var(--text);
}

.mobile-panel {
  display: none;
  padding: 0.75rem 1rem 1rem;
  background: rgba(16, 42, 67, 0.98);
}

.mobile-panel.open {
  display: grid;
  gap: 0.5rem;
}

.mobile-panel a {
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 4.5rem);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 3rem;
  width: 100%;
  padding: 5rem max(1rem, calc((100vw - 1280px) / 2)) 8rem;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: blur(2px) saturate(1.05);
  transform: scale(1.08);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 20, 33, 0.98), rgba(6, 20, 33, 0.78) 48%, rgba(6, 20, 33, 0.32)),
    linear-gradient(180deg, rgba(6, 20, 33, 0.2), var(--night-950));
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--amber-400);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-intro h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-content h2,
.ranking-top h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.hero-content p,
.page-hero p,
.ranking-top p,
.detail-intro p {
  max-width: 720px;
  color: #d3dce6;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-tags,
.detail-tags,
.card-tags,
.footer-tags,
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-tags span,
.detail-tags a,
.card-tags span,
.footer-tags a,
.category-chips a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 999px;
  color: #ffe3a0;
  background: rgba(251, 191, 36, 0.12);
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.8rem;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: var(--night-700);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  background: var(--night-800);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  color: #111827;
  background: rgba(251, 191, 36, 0.92);
  transform: translate(-50%, -50%);
}

.hero-poster:hover img {
  transform: scale(1.04);
}

.hero-thumbs {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 1rem;
  color: var(--text);
  background: rgba(16, 42, 67, 0.78);
  padding: 0.6rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-thumb.active {
  border-color: rgba(251, 191, 36, 0.78);
  background: rgba(36, 59, 83, 0.95);
}

.hero-thumb img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.hero-thumb span {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-search-panel,
.search-page-panel,
.filter-bar {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(16, 42, 67, 0.66);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.quick-search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.1fr);
  gap: 1rem;
  align-items: center;
}

.quick-search-panel h2 {
  margin: 0 0 0.35rem;
}

.quick-search-panel p {
  margin: 0;
  color: var(--muted);
}

.quick-search-panel form,
.search-page-form {
  display: flex;
  gap: 0.8rem;
}

.quick-search-panel input,
.search-page-form input,
.filter-bar input {
  width: 100%;
}

.quick-search-panel .category-chips {
  grid-column: 1 / -1;
}

.section-block {
  padding: 4rem 0;
}

.dark-band {
  background: rgba(16, 42, 67, 0.58);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--amber-400);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.section-heading a {
  color: var(--amber-400);
  font-weight: 800;
}

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

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.ranking-grid .video-card:nth-child(-n + 3) {
  border-color: rgba(251, 191, 36, 0.32);
}

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(36, 59, 83, 0.92);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.16);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.video-card:hover {
  border-color: rgba(251, 191, 36, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.video-card-wide {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.card-poster {
  position: relative;
  overflow: hidden;
  background: #000;
}

.card-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.wide-poster img {
  height: 100%;
  min-height: 15rem;
  aspect-ratio: auto;
}

.duration-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.72);
}

.duration-badge {
  right: 0.75rem;
}

.rank-badge {
  left: 0.75rem;
  color: #111827;
  background: var(--amber-400);
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  color: #111827;
  background: rgba(251, 191, 36, 0.9);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.card-body {
  padding: 1rem;
}

.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--amber-400);
  font-size: 0.82rem;
  font-weight: 700;
}

.card-body h3 {
  margin: 0.65rem 0 0.35rem;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.35;
}

.card-body p {
  display: -webkit-box;
  min-height: 3.2rem;
  margin: 0 0 0.85rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.video-card-wide .card-body p {
  -webkit-line-clamp: 4;
}

.card-tags span {
  color: #cad6e2;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
}

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

.category-tile,
.category-overview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(36, 59, 83, 0.9), rgba(16, 42, 67, 0.9));
  padding: 1.1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  border-color: rgba(251, 191, 36, 0.45);
  transform: translateY(-3px);
}

.category-tile span,
.category-overview-card h2 {
  color: var(--amber-400);
  font-weight: 900;
  font-size: 1.2rem;
}

.category-tile p,
.category-overview-card p {
  color: var(--muted);
  line-height: 1.75;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 1rem;
  padding: 0;
}

.category-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 13rem;
}

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

.category-overview-body {
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.category-overview-body div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.category-overview-body span {
  max-width: 100%;
  overflow: hidden;
  border-radius: 999px;
  color: #dbe3eb;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.compact-hero {
  padding: 5rem 0 3.5rem;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(6, 20, 33, 0.96));
}

.ranking-hero {
  padding: 4rem 0;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 22rem),
    rgba(16, 42, 67, 0.6);
}

.ranking-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 2rem;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #c7d2df;
  margin-bottom: 1.5rem;
}

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

.filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: center;
}

.empty-state {
  display: none;
  margin-top: 1rem;
  border: 1px dashed var(--line);
  border-radius: 1rem;
  color: var(--muted);
  padding: 1.3rem;
  text-align: center;
}

.empty-state.show {
  display: block;
}

.detail-hero {
  padding: 4rem 0;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, var(--night-950));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.detail-cover {
  width: 100%;
  border-radius: 1.3rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-meta {
  margin: 1.2rem 0;
}

.detail-meta span {
  border-radius: 999px;
  color: #ffe3a0;
  background: rgba(251, 191, 36, 0.13);
  padding: 0.45rem 0.72rem;
}

.detail-tags {
  margin-bottom: 1.5rem;
}

.detail-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1.5rem;
  align-items: start;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: #000;
  box-shadow: var(--shadow);
}

.player-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 0;
  color: var(--text);
  background: linear-gradient(180deg, rgba(6, 20, 33, 0.2), rgba(6, 20, 33, 0.88));
  cursor: pointer;
}

.player-cover span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  color: #111827;
  background: var(--amber-400);
  box-shadow: 0 18px 40px rgba(251, 191, 36, 0.28);
}

.player-cover strong {
  max-width: 80%;
  font-size: 1.2rem;
  text-align: center;
}

.player-cover.hidden {
  display: none;
}

.detail-article {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(16, 42, 67, 0.72);
  padding: 1.5rem;
}

.detail-article h2 {
  color: var(--amber-400);
  margin: 0 0 0.7rem;
}

.detail-article p {
  color: #d3dce6;
  line-height: 1.9;
}

.info-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}

.info-list dt {
  color: var(--amber-400);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: #dbe3eb;
}

.search-page-panel {
  display: grid;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(6, 20, 33, 0.8);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-grid p,
.footer-bottom {
  color: var(--muted);
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 1rem;
  color: var(--amber-400);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

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

  .mobile-menu-button {
    display: block;
  }

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

  .hero-poster {
    display: none;
  }

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

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

  .detail-main,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  main {
    padding-top: 4rem;
  }

  .header-inner {
    height: 4rem;
  }

  .brand {
    font-size: 1.05rem;
  }

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

  .hero-slide {
    padding-top: 3rem;
    padding-bottom: 10rem;
  }

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

  .quick-search-panel,
  .filter-bar,
  .ranking-top,
  .detail-layout,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .category-overview-body {
    padding: 1.25rem;
  }

  .featured-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-bottom,
  .section-heading,
  .quick-search-panel form,
  .search-page-form {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container-custom {
    width: min(100% - 1rem, 1280px);
  }

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

  .hero-thumb span {
    display: none;
  }

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

  .hero-thumb {
    justify-content: center;
  }

  .hero-thumb img {
    width: 2.8rem;
    height: 2.8rem;
  }
}
