:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: #111827;
  --panel-2: #1e293b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --line: rgba(148, 163, 184, 0.18);
  --cyan: #22d3ee;
  --cyan-2: #06b6d4;
  --blue: #2563eb;
  --yellow: #facc15;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(8, 47, 73, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(34, 211, 238, 0.12), transparent 30rem),
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.14), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  line-height: 1.6;
}

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

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

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.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.32);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.35);
}

.brand-text strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

.brand-text em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #dbeafe;
  font-size: 15px;
  font-weight: 600;
}

.main-nav > a,
.nav-dropdown > button {
  padding: 9px 0;
  color: #dbeafe;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

.main-nav > a:hover,
.nav-dropdown > button:hover,
.mobile-panel a:hover {
  color: var(--cyan);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  right: 0;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-panel a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #dbeafe;
}

.dropdown-panel a:hover {
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.header-search input,
.search-hero input,
.filter-bar input,
.filter-bar select,
.mobile-panel input {
  min-width: 0;
  color: var(--text);
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 14px;
}

.header-search input:focus,
.search-hero input:focus,
.filter-bar input:focus,
.filter-bar select:focus,
.mobile-panel input:focus {
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.header-search button,
.search-hero button,
.filter-button,
.primary-button,
.secondary-button,
.sort-button,
.load-button {
  border: 0;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--cyan-2), var(--blue));
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.header-search button {
  padding: 10px 15px;
}

.header-search button:hover,
.search-hero button:hover,
.filter-button:hover,
.primary-button:hover,
.sort-button:hover,
.load-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  padding: 9px 11px;
  color: #fff;
  background: #1e293b;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  border-top: 1px solid var(--line);
}

.mobile-panel.is-open {
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  padding: 10px 0;
  color: #dbeafe;
}

.mobile-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mobile-panel input {
  padding: 10px 14px;
}

.mobile-panel button {
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--cyan-2);
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #020617;
}

.hero-slider {
  position: relative;
  height: 590px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transform: scale(1.02);
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.92) 42%, rgba(2, 6, 23, 0.18) 100%),
    linear-gradient(0deg, #020617 0%, transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 32px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 16px;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.16);
}

.hero h1,
.page-hero h1,
.detail-title h1 {
  margin: 0;
  color: white;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 620px;
  margin: 20px 0 28px;
  color: #cbd5e1;
  font-size: clamp(16px, 2.2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
}

.secondary-button {
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.26);
}

.secondary-button:hover {
  background: rgba(30, 41, 59, 0.9);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
  color: white;
  background: rgba(15, 23, 42, 0.76);
  transition: background 0.2s ease, width 0.2s ease;
}

.hero-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
}

.hero-arrow:hover,
.hero-dot.is-active {
  background: var(--cyan-2);
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 4px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.hero-dot.is-active {
  width: 34px;
}

.main-content {
  padding: 56px 0 72px;
}

.section {
  margin-bottom: 64px;
}

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

.section-heading > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
}

.section-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
}

.section-heading p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
}

.section-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  border-radius: 12px;
}

.section-more {
  color: var(--cyan);
  font-weight: 700;
}

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

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

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

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

.movie-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 14px 44px rgba(2, 6, 23, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.38);
  box-shadow: 0 24px 70px rgba(8, 145, 178, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.28), rgba(37, 99, 235, 0.22)),
    #0f172a;
}

.movie-card-compact {
  grid-template-columns: 144px 1fr;
  min-height: 122px;
}

.movie-card-compact .poster-link {
  height: 100%;
  aspect-ratio: auto;
}

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

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

.poster-link img.is-missing {
  opacity: 0;
}

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

.poster-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.74)),
    radial-gradient(circle at 50% 20%, transparent, rgba(2, 6, 23, 0.32));
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding-left: 3px;
  color: white;
  background: rgba(34, 211, 238, 0.78);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.type-pill,
.year-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.type-pill {
  top: 10px;
  left: 10px;
}

.year-pill {
  right: 10px;
  bottom: 10px;
}

.rank-badge {
  right: 10px;
  top: 10px;
  color: #020617;
  background: var(--yellow);
}

.card-body {
  padding: 17px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.meta-row span {
  padding: 4px 8px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 999px;
}

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

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

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

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

.tag-row span,
.tag-link {
  display: inline-flex;
  padding: 5px 8px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 999px;
  font-size: 12px;
}

.feature-strip {
  padding: 30px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.18), rgba(37, 99, 235, 0.10)),
    rgba(15, 23, 42, 0.78);
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  padding: 22px;
  min-height: 150px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(8, 47, 73, 0.65)),
    #0f172a;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile::after {
  position: absolute;
  right: -28px;
  bottom: -32px;
  width: 110px;
  height: 110px;
  content: "";
  background: radial-gradient(circle, rgba(34, 211, 238, 0.30), transparent 64%);
}

.category-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.36);
}

.category-tile strong {
  display: block;
  margin-bottom: 9px;
  color: white;
  font-size: 20px;
}

.category-tile p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.category-tile span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  padding: 54px 0;
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.20), rgba(37, 99, 235, 0.08)),
    rgba(15, 23, 42, 0.62);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

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

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-bar .filter-left,
.filter-bar .filter-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-bar input,
.filter-bar select {
  padding: 11px 14px;
}

.filter-button,
.sort-button,
.load-button {
  padding: 11px 15px;
}

.sort-button {
  background: #1e293b;
  color: #cbd5e1;
}

.sort-button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--cyan-2), var(--blue));
}

.search-hero {
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.17), transparent 24rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.72));
}

.search-box-large {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.search-box-large input {
  padding: 15px 18px;
  font-size: 17px;
}

.search-box-large button {
  padding: 15px 24px;
}

.result-count {
  margin: 0 0 22px;
  color: var(--muted);
}

.empty-state {
  padding: 72px 20px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.45);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: start;
}

.player-card,
.detail-card,
.sidebar-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 20px 70px rgba(2, 6, 23, 0.20);
}

.player-card {
  overflow: hidden;
  margin-bottom: 22px;
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: black;
}

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: white;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.14), rgba(2, 6, 23, 0.58));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  padding-left: 5px;
  background: linear-gradient(135deg, var(--cyan-2), var(--blue));
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.42);
  font-size: 30px;
}

.player-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 14px;
}

.detail-card,
.sidebar-card {
  padding: 24px;
}

.detail-title {
  margin-bottom: 18px;
}

.detail-title h1 {
  font-size: clamp(30px, 4vw, 46px);
}

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

.detail-meta span {
  padding: 6px 10px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.9);
  border-radius: 999px;
  font-size: 13px;
}

.lead-box {
  padding: 18px;
  margin: 18px 0 22px;
  color: #a5f3fc;
  background: rgba(8, 145, 178, 0.13);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 18px;
}

.prose h2 {
  margin: 26px 0 12px;
  color: white;
  font-size: 22px;
}

.prose p {
  margin: 0 0 16px;
  color: #cbd5e1;
  white-space: pre-line;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-link:hover {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.28);
}

.sidebar-card {
  position: sticky;
  top: 94px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
}

.related-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: #1e293b;
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: white;
  font-size: 14px;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-item:hover strong {
  color: var(--cyan);
}

.related-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.sidebar-button {
  display: block;
  padding: 11px 16px;
  margin-top: 18px;
  color: var(--cyan);
  text-align: center;
  background: rgba(30, 41, 59, 0.88);
  border-radius: 14px;
  font-weight: 700;
}

.rank-list {
  display: grid;
  gap: 18px;
}

.site-footer {
  margin-top: 30px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.92);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 34px;
  padding: 42px 0;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: white;
}

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

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

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

.footer-bottom {
  padding: 16px;
  color: var(--muted-2);
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.10);
}

.hide-card {
  display: none !important;
}

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

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

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

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

  .sidebar-card {
    position: static;
  }
}

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

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

  .brand-text strong {
    font-size: 17px;
  }

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

  .hero-content {
    padding-top: 0;
  }

  .hero-controls {
    right: 12px;
    bottom: 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .category-list {
    grid-template-columns: 1fr;
  }

  .movie-card-wide,
  .movie-card-compact {
    grid-template-columns: 1fr;
  }

  .movie-card-compact .poster-link {
    aspect-ratio: 16 / 10;
  }

  .section-heading,
  .filter-bar,
  .player-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-bar .filter-left,
  .filter-bar .filter-right,
  .search-box-large {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .filter-bar input,
  .filter-bar select,
  .filter-button,
  .sort-button,
  .load-button,
  .search-box-large button {
    width: 100%;
  }

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