:root {
  color-scheme: dark;
  --bg: #1c1917;
  --bg-deep: #0c0a09;
  --panel: #292524;
  --panel-soft: #44403c;
  --line: #44403c;
  --text: #fafaf9;
  --muted: #a8a29e;
  --soft: #d6d3d1;
  --amber: #f59e0b;
  --amber-dark: #b45309;
  --danger: #ef4444;
  --shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 18% -8%, rgba(245, 158, 11, 0.16), transparent 28%), var(--bg-deep);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 25, 23, 0.94);
  border-bottom: 1px solid rgba(68, 64, 60, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fffbeb;
  font-weight: 800;
}

.brand-icon,
.footer-brand span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: white;
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.26);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 20px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

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

.main-nav a,
.mobile-panel a {
  color: var(--soft);
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
  color: var(--amber);
}

.nav-search,
.mobile-search,
.wide-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-search input,
.wide-search input,
.local-filter input,
.local-filter select,
.filter-row select {
  min-width: 0;
  background: #292524;
  color: var(--text);
  border: 1px solid #57534e;
  border-radius: 12px;
  padding: 11px 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  width: 240px;
}

.nav-search input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.local-filter input:focus,
.local-filter select:focus,
.filter-row select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.nav-search button,
.mobile-search button,
.wide-search button,
.primary-btn,
.ghost-btn,
.section-more {
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-search button,
.mobile-search button,
.wide-search button,
.primary-btn {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: white;
}

.ghost-btn,
.section-more {
  color: var(--soft);
  background: rgba(68, 64, 60, 0.8);
  border: 1px solid rgba(120, 113, 108, 0.45);
}

.nav-search button:hover,
.mobile-search button:hover,
.wide-search button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  color: var(--text);
  background: #292524;
  border: 1px solid #57534e;
  border-radius: 12px;
  padding: 9px 12px;
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-panel nav a {
  padding: 10px 12px;
  background: rgba(41, 37, 36, 0.92);
  border-radius: 10px;
}

main {
  min-height: 60vh;
}

.hero {
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--panel);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 6vw, 70px);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

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

.eyebrow,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-content h1 {
  margin: 12px 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-content p {
  color: #e7e5e4;
  font-size: clamp(16px, 2vw, 21px);
  max-width: 660px;
  margin: 0 0 22px;
}

.hero-tags,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-tags a {
  border-radius: 999px;
  padding: 5px 10px;
  color: #fffbeb;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.34);
  font-size: 12px;
  font-weight: 750;
}

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

.hero-controls {
  position: absolute;
  left: 34px;
  bottom: 26px;
  z-index: 5;
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--amber);
}

.hero-side {
  background: linear-gradient(180deg, rgba(68, 64, 60, 0.9), rgba(41, 37, 36, 0.9));
  border: 1px solid rgba(120, 113, 108, 0.4);
  border-radius: 28px;
  padding: 24px;
  min-height: 560px;
  box-shadow: var(--shadow);
}

.hero-side h2 {
  margin: 8px 0 18px;
  font-size: 28px;
}

.hero-thumbs {
  display: grid;
  gap: 14px;
}

.hero-thumb {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 16px;
  background: rgba(28, 25, 23, 0.62);
  border: 1px solid rgba(120, 113, 108, 0.28);
  transition: transform 0.2s ease, border 0.2s ease;
}

.hero-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.65);
}

.hero-thumb img {
  width: 78px;
  height: 104px;
  border-radius: 12px;
  object-fit: cover;
  background: #44403c;
}

.hero-thumb span {
  color: #f5f5f4;
  font-weight: 800;
}

.home-intro,
.page-wrap,
.content-section {
  width: min(1280px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.home-intro {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 500px);
  gap: 24px;
  align-items: end;
  padding: 30px;
  background: rgba(41, 37, 36, 0.78);
  border: 1px solid rgba(120, 113, 108, 0.28);
  border-radius: 26px;
}

.home-intro h1,
.page-hero h1,
.detail-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-intro p,
.page-hero p,
.section-head p,
.detail-copy .one-line {
  color: var(--muted);
  margin: 0;
}

.wide-search input {
  flex: 1;
  min-width: 200px;
}

.content-section {
  margin-top: 58px;
}

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

.section-head h2,
.panel-head h2,
.detail-content h2,
.related-categories h2 {
  font-size: clamp(24px, 4vw, 38px);
  margin: 8px 0 8px;
  line-height: 1.1;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(68, 64, 60, 0.92), rgba(41, 37, 36, 0.96));
  border: 1px solid rgba(120, 113, 108, 0.28);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.62);
  box-shadow: var(--shadow);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #44403c;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.72);
  border-radius: 50%;
  color: white;
  background: rgba(245, 158, 11, 0.9);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.year-mark,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  left: 12px;
  right: auto;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.card-body h3 a:hover {
  color: var(--amber);
}

.card-body p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #78716c;
  font-size: 12px;
}

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

.ranking-panel,
.detail-aside {
  position: sticky;
  top: 96px;
  background: linear-gradient(180deg, rgba(68, 64, 60, 0.9), rgba(41, 37, 36, 0.98));
  border: 1px solid rgba(120, 113, 108, 0.34);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.panel-head a {
  color: var(--amber);
  font-weight: 800;
}

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

.rank-row a {
  display: grid;
  grid-template-columns: 34px 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(28, 25, 23, 0.55);
  border: 1px solid rgba(120, 113, 108, 0.22);
}

.rank-row a:hover {
  border-color: rgba(245, 158, 11, 0.58);
}

.rank-number {
  color: var(--amber);
  font-weight: 900;
  font-size: 18px;
}

.rank-row img {
  width: 58px;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
  background: #44403c;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy em {
  display: block;
}

.rank-copy strong {
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-copy em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-meta {
  color: #a8a29e;
  font-size: 13px;
  white-space: nowrap;
}

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

.category-tile,
.category-card a {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(68, 64, 60, 0.9), rgba(28, 25, 23, 0.92));
  border: 1px solid rgba(120, 113, 108, 0.32);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.category-tile:hover,
.category-card a:hover {
  border-color: rgba(245, 158, 11, 0.62);
  transform: translateY(-2px);
}

.category-tile span,
.category-card h2 {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 900;
}

.category-tile small,
.category-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
}

.category-stack {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: end;
}

.category-stack img {
  width: 54px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  margin-left: -18px;
  border: 2px solid rgba(28, 25, 23, 0.85);
  background: #44403c;
}

.page-wrap {
  padding-top: 30px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 7vw, 70px);
  background: linear-gradient(135deg, rgba(68, 64, 60, 0.92), rgba(28, 25, 23, 0.98));
  border: 1px solid rgba(120, 113, 108, 0.32);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.slim-hero {
  min-height: 260px;
}

.list-hero,
.search-hero {
  display: grid;
  gap: 18px;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 14px;
}

.crumb a:hover {
  color: var(--amber);
}

.local-filter,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.local-filter input {
  min-width: min(100%, 360px);
}

.related-categories div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-categories a {
  background: #292524;
  border: 1px solid #57534e;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--soft);
}

.related-categories a:hover {
  color: var(--amber);
  border-color: rgba(245, 158, 11, 0.55);
}

.category-card {
  min-height: 270px;
}

.category-card a {
  min-height: 270px;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.category-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.12), rgba(28, 25, 23, 0.94));
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  padding: clamp(24px, 5vw, 46px);
  border-radius: 28px;
  background: radial-gradient(circle at 18% 0, rgba(245, 158, 11, 0.2), transparent 35%), linear-gradient(135deg, rgba(68, 64, 60, 0.92), rgba(28, 25, 23, 0.98));
  border: 1px solid rgba(120, 113, 108, 0.32);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #44403c;
}

.detail-copy .one-line {
  font-size: 18px;
  max-width: 780px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(41, 37, 36, 0.9);
  color: var(--soft);
  border: 1px solid rgba(120, 113, 108, 0.3);
}

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

.player-section {
  margin-top: 32px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: black;
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 113, 108, 0.35);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050505;
  cursor: pointer;
}

.player-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1), rgba(0, 0, 0, 0.52));
  transition: opacity 0.2s ease, visibility 0.2s ease;
  cursor: pointer;
}

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

.player-button {
  width: clamp(78px, 12vw, 116px);
  height: clamp(78px, 12vw, 116px);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.32);
  transition: transform 0.2s ease;
}

.player-button:hover {
  transform: scale(1.08);
}

.player-button span {
  font-size: 42px;
  margin-left: 6px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  margin-top: 38px;
}

.detail-content article,
.detail-aside {
  background: rgba(41, 37, 36, 0.88);
  border: 1px solid rgba(120, 113, 108, 0.3);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 32px);
}

.detail-content article p {
  color: var(--soft);
  font-size: 17px;
}

.detail-aside dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  color: var(--soft);
}

.detail-aside dt {
  color: var(--muted);
}

.detail-aside dd {
  margin: 0;
}

.search-page-form {
  max-width: 760px;
}

.rank-list-large .rank-row a {
  grid-template-columns: 56px 76px 1fr auto;
}

.rank-list-large .rank-row img {
  width: 76px;
  height: 102px;
}

.site-footer {
  margin-top: 80px;
  background: #1c1917;
  border-top: 1px solid rgba(68, 64, 60, 0.95);
}

.footer-grid {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 28px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

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

.copyright {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 30px;
  color: #78716c;
  border-top: 1px solid rgba(68, 64, 60, 0.8);
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

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

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

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

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

  .hero-thumb {
    display: block;
  }

  .hero-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .hero-thumb span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
  }

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

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

  .ranking-panel,
  .detail-aside {
    position: static;
  }

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

@media (max-width: 820px) {
  .header-inner {
    height: 64px;
  }

  .main-nav {
    display: none;
  }

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

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

  .hero-stage {
    min-height: 520px;
  }

  .hero-side {
    display: none;
  }

  .home-intro,
  .detail-hero {
    grid-template-columns: 1fr;
  }

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

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

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

  .rank-row a,
  .rank-list-large .rank-row a {
    grid-template-columns: 34px 58px 1fr;
  }

  .rank-meta {
    grid-column: 3;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .hero,
  .home-intro,
  .page-wrap,
  .content-section,
  .footer-grid,
  .copyright,
  .header-inner,
  .mobile-panel {
    width: min(100% - 22px, 1280px);
  }

  .hero-stage {
    min-height: 480px;
    border-radius: 20px;
  }

  .hero-slide {
    padding: 28px 22px 54px;
  }

  .hero-controls {
    left: 22px;
  }

  .hero-actions,
  .wide-search,
  .local-filter,
  .filter-row {
    flex-direction: column;
    align-items: stretch;
  }

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

  .home-intro,
  .page-hero,
  .detail-hero {
    padding: 22px;
    border-radius: 20px;
  }

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