:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --blue-500: #3b82f6;
  --rose-500: #f43f5e;
  --amber-500: #f59e0b;
  --violet-500: #8b5cf6;
  --green-500: #22c55e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.1);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
  font-size: 15px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-nav a {
  color: #d1d5db;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav a:hover {
  color: var(--white);
  background: rgba(51, 65, 85, 0.72);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 0;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.8);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.mobile-nav a {
  display: block;
  margin: 4px 0;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--slate-950);
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
}

.hero-content > * {
  max-width: 680px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-meta span,
.type-pill,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-meta span:first-child,
.type-pill {
  color: var(--white);
  background: var(--cyan-500);
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(15, 23, 42, 0.48);
  padding: 4px 12px;
  font-size: 14px;
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.filter-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-button,
.ghost-button,
.panel-link,
.category-block-head a,
.filter-panel button,
.hero-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.hero-search button,
.category-block-head a,
.panel-link {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.28);
}

.primary-button,
.ghost-button {
  min-height: 48px;
  padding: 0 28px;
}

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

.primary-button:hover,
.ghost-button:hover,
.panel-link:hover,
.category-block-head a:hover,
.hero-search button:hover {
  transform: translateY(-2px);
}

.hero-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.36);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero-control.prev {
  left: 18px;
}

.hero-control.next {
  right: 18px;
}

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

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

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

.hero-search {
  position: absolute;
  z-index: 4;
  right: max(18px, calc((100% - 1180px) / 2));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(420px, calc(100% - 36px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(18px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  height: 42px;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 12px;
}

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

.hero-search button {
  height: 42px;
  border: 0;
  padding: 0 18px;
  cursor: pointer;
}

.quick-category-panel {
  padding: 28px 0 6px;
}

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

.quick-category-grid a {
  display: block;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(6, 182, 212, 0.14);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-category-grid a:hover,
.movie-card:hover,
.category-block-card:hover,
.category-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.quick-category-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.quick-category-grid span {
  color: var(--gray-500);
  font-size: 13px;
}

.content-section,
.list-section,
.ranking-page {
  padding: 54px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-heading span {
  color: var(--cyan-600);
  font-size: 26px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
}

.section-heading a {
  color: var(--cyan-600);
  font-weight: 700;
}

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

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

.hot-grid,
.listing-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.movie-card {
  display: block;
  color: inherit;
}

.movie-card article {
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
  background: var(--slate-800);
  box-shadow: var(--shadow-card);
}

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

.movie-card:hover .poster-wrap img {
  transform: scale(1.08);
  filter: brightness(0.82);
}

.type-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(10px);
}

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

.card-body {
  padding: 12px 2px 0;
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

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

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

.card-meta {
  color: #94a3b8;
  font-size: 13px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag-row span {
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 2px 8px;
  font-size: 12px;
}

.horizontal-card article {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.horizontal-card .poster-wrap {
  width: 150px;
  flex: 0 0 150px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  box-shadow: none;
}

.horizontal-card .card-body {
  min-width: 0;
  padding: 2px 0;
}

.horizontal-card .card-body h3 {
  font-size: 16px;
  -webkit-line-clamp: 1;
}

.horizontal-card .card-body p {
  font-size: 13px;
  -webkit-line-clamp: 2;
}

.horizontal-card .play-hover {
  width: 42px;
  height: 42px;
}

.compact-card .card-body h3 {
  font-size: 16px;
}

.highlight-section {
  margin: 18px 0 24px;
  padding: 54px 0;
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

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

.category-preview-card,
.category-block-card,
.ranking-panel,
.detail-content-card,
.related-panel {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

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

.category-preview-card h3 {
  margin: 0 0 18px;
  padding-left: 12px;
  border-left: 4px solid var(--rose-500);
  font-size: 22px;
}

.stack-list {
  display: grid;
  gap: 14px;
}

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

.ranking-panel {
  position: sticky;
  top: 86px;
  padding: 24px;
}

.ranking-panel h2,
.related-panel h2 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

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

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--amber-500));
  font-weight: 800;
  font-size: 13px;
}

.panel-link {
  width: 100%;
  height: 46px;
  margin-top: 18px;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.32), transparent 34%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.small-hero {
  padding: 58px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: #67e8f9;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 800;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.detail-container > .breadcrumb {
  color: var(--gray-500);
  margin: 22px 0;
}

.breadcrumb a:hover {
  color: var(--cyan-500);
}

.category-block-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-block-head {
  padding: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.category-block-head h2 {
  margin: 0 0 8px;
}

.category-block-head p {
  margin: 0 0 16px;
  color: var(--gray-500);
}

.category-block-head a {
  height: 40px;
  padding: 0 16px;
}

.category-block-card .mini-grid {
  padding: 20px;
}

.filter-panel {
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.filter-fields input,
.filter-fields select {
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--gray-50);
  padding: 0 14px;
  outline: 0;
}

.filter-fields input {
  flex: 1 1 320px;
}

.filter-fields input:focus,
.filter-fields select:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.filter-panel button {
  min-height: 44px;
  border: 0;
  padding: 0 18px;
  color: var(--white);
  background: var(--slate-800);
  cursor: pointer;
}

.filter-panel p {
  margin: 10px 0 0;
  color: var(--gray-500);
  font-size: 14px;
}

.movie-card[hidden] {
  display: none;
}

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

.detail-main {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.detail-container {
  padding-bottom: 64px;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.3);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.65));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-button {
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
  box-shadow: 0 20px 42px rgba(6, 182, 212, 0.35);
  cursor: pointer;
  font-size: 32px;
}

.player-overlay span {
  font-size: 18px;
  font-weight: 700;
}

.watch-info {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 20px;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  margin-bottom: 18px;
}

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

.watch-info h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
}

.detail-one-line {
  margin: 0 0 16px;
  color: var(--gray-500);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--cyan-600);
  background: #ecfeff;
  font-size: 13px;
  font-weight: 700;
}

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

.detail-content-card,
.related-panel {
  padding: 26px;
}

.detail-content-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-content-card p {
  margin: 0 0 28px;
  color: var(--gray-700);
  font-size: 17px;
}

.detail-content-card blockquote {
  margin: 0 0 28px;
  padding: 18px 20px;
  color: var(--gray-700);
  border-left: 4px solid var(--cyan-500);
  border-radius: 0 14px 14px 0;
  background: var(--gray-50);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-tags span {
  color: var(--cyan-700, #0e7490);
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 700;
}

.related-panel {
  position: sticky;
  top: 86px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  margin-top: 50px;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 46px 0 30px;
}

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

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

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: #22d3ee;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 14px;
}

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

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .mobile-nav.is-open {
    display: block;
  }

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

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

  .two-column-section,
  .watch-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .related-panel {
    position: static;
  }
}

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

  .site-logo {
    font-size: 18px;
  }

  .hero {
    height: 72vh;
    min-height: 560px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.84));
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 128px;
  }

  .hero-control {
    display: none;
  }

  .hero-search {
    left: 16px;
    right: 16px;
    bottom: 64px;
    width: auto;
  }

  .quick-category-grid,
  .category-preview-grid,
  .category-overview,
  .full-ranking,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .hot-grid,
  .listing-grid,
  .dense-grid,
  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .horizontal-card article {
    gap: 10px;
  }

  .horizontal-card .poster-wrap {
    width: 118px;
    flex-basis: 118px;
  }

  .horizontal-card .card-body p,
  .horizontal-card .tag-row {
    display: none;
  }

  .content-section,
  .list-section,
  .ranking-page {
    padding: 38px 0;
  }

  .small-hero {
    padding: 40px 0;
  }

  .watch-info,
  .detail-content-card,
  .related-panel,
  .category-preview-card,
  .ranking-panel {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .feature-grid,
  .hot-grid,
  .listing-grid,
  .dense-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .filter-fields {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .ghost-button,
  .filter-fields input,
  .filter-fields select,
  .filter-panel button {
    width: 100%;
  }
}
