* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #111827;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #ffffff 100%);
  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,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0d9488, #0891b2, #2563eb);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  color: #ccfbf1;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link,
.mobile-nav-link {
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 9px 14px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.header-search,
.mobile-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search {
  position: relative;
}

.header-search input {
  width: 250px;
  border: 0;
  outline: none;
  border-radius: 12px;
  padding: 10px 46px 10px 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.header-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  color: #ffffff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.mobile-nav {
  display: none;
  padding: 16px;
  background: #0f766e;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.mobile-nav-link {
  display: block;
  padding: 10px 12px;
}

.mobile-search {
  margin-bottom: 12px;
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  border-radius: 10px;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.mobile-search button,
.search-page-form button {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  color: #ffffff;
  background: #0d9488;
}

.home-hero {
  padding: 42px 0 64px;
  background: radial-gradient(circle at top left, rgba(20, 184, 166, 0.2), transparent 28%), linear-gradient(180deg, #ecfeff 0%, #f8fafc 100%);
}

.hero-intro {
  margin-bottom: 24px;
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-size: 13px;
  font-weight: 800;
}

.hero-intro h1,
.page-hero h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-intro p,
.page-hero p {
  margin: 16px 0 0;
  max-width: 760px;
  color: #475569;
  font-size: 18px;
}

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

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

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #0891b2);
  box-shadow: 0 15px 28px rgba(13, 148, 136, 0.28);
}

.btn.ghost {
  color: #0f766e;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.22);
}

.hero-card a {
  position: relative;
  display: block;
  aspect-ratio: 21 / 9;
  min-height: 360px;
  background: #0f172a;
}

.hero-card img,
.card-image img,
.card-square img,
.ranking-row img,
.category-preview img,
.poster-card img,
.rank-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-card:hover img,
.movie-card:hover .card-image img,
.card-square:hover img,
.ranking-row:hover img,
.category-preview a:hover img,
.rank-item:hover img {
  transform: scale(1.08);
}

.hero-shade,
.image-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.04));
}

.card-play,
.mini-play {
  position: absolute;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.card-play {
  inset: 50% auto auto 50%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  font-size: 28px;
  transform: translate(-50%, -50%) scale(0.9);
}

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

.hero-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  color: #ffffff;
}

.hero-content h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 900;
}

.hero-content p {
  display: -webkit-box;
  margin: 0 0 12px;
  max-width: 760px;
  color: #e5e7eb;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-meta {
  color: #cbd5e1;
  font-size: 14px;
}

.hero-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.category-chip {
  display: block;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-chip:hover,
.category-card:hover,
.movie-card:hover,
.ranking-row:hover {
  transform: translateY(-3px);
}

.category-chip strong,
.category-chip span {
  display: block;
}

.category-chip strong {
  color: #0f172a;
  font-size: 16px;
}

.category-chip span {
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
}

.page-stack {
  display: grid;
  gap: 64px;
  padding: 56px 0 72px;
}

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

.section-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 900;
}

.section-heading p {
  margin: 6px 0 0;
  color: #64748b;
}

.section-more {
  color: #0d9488;
  font-weight: 800;
  white-space: nowrap;
}

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

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

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

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

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

.soft-panel {
  border-radius: 30px;
  padding: 34px;
}

.teal-panel {
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
}

.blue-panel {
  background: linear-gradient(135deg, #eff6ff, #ecfeff, #f0fdfa);
}

.amber-panel {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.movie-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card-grid,
.card-horizontal,
.rank-item {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.card-grid a,
.card-horizontal a,
.rank-item a {
  display: block;
  height: 100%;
}

.card-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

.card-image.wide {
  width: 190px;
  aspect-ratio: 16 / 10;
  flex: 0 0 190px;
}

.mini-play {
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.9);
}

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

.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 3px 8px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 12px;
}

.card-body {
  display: block;
  padding: 16px;
}

.card-body h3 {
  display: -webkit-box;
  margin: 0 0 8px;
  min-height: 54px;
  color: #111827;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card:hover h3,
.rank-item:hover strong,
.ranking-row:hover strong {
  color: #0d9488;
}

.card-body p {
  display: -webkit-box;
  margin: 0 0 14px;
  color: #64748b;
  font-size: 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-foot,
.meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

.pill,
.tag-row span,
.tag-row a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: #0f766e;
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 800;
}

.pill.bright {
  color: #ffffff;
  background: #14b8a6;
}

.heat {
  white-space: nowrap;
}

.card-horizontal a {
  display: flex;
}

.card-horizontal .card-body {
  flex: 1;
  min-width: 0;
}

.card-horizontal .card-body h3 {
  min-height: auto;
}

.card-square {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  background: #0f172a;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.card-square a,
.card-square img {
  position: absolute;
  inset: 0;
}

.square-title {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: -webkit-box;
  color: #ffffff;
  font-weight: 800;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.rank-item a {
  display: grid;
  grid-template-columns: 88px 1fr 128px;
  align-items: center;
  gap: 16px;
  padding: 14px;
}

.rank-item img {
  width: 128px;
  height: 82px;
  border-radius: 12px;
}

.rank-copy {
  display: grid;
  gap: 4px;
}

.rank-copy strong,
.ranking-content strong {
  color: #111827;
  font-size: 18px;
  transition: color 0.2s ease;
}

.rank-copy span,
.ranking-content span {
  display: -webkit-box;
  color: #64748b;
  font-size: 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rank-copy em,
.ranking-content em {
  color: #0d9488;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.page-hero {
  padding: 46px 0;
  color: #ffffff;
  background: linear-gradient(90deg, #0d9488, #0891b2);
}

.page-hero.slim {
  padding: 38px 0;
}

.page-hero h1,
.page-hero p {
  color: #ffffff;
}

.page-hero p {
  color: #cffafe;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #e0f2fe;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

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

.category-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card a {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.category-title {
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
}

.category-intro {
  min-height: 72px;
  color: #64748b;
  font-size: 14px;
}

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

.category-preview a {
  display: block;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #0f172a;
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select,
.search-page-form input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  padding: 11px 12px;
  color: #111827;
  background: #ffffff;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-page-form input:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.search-page-form {
  max-width: 720px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.detail-shell {
  padding: 36px 0 72px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 360px;
  gap: 30px;
  align-items: start;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
}

.detail-breadcrumb {
  color: #64748b;
  margin-bottom: 0;
}

.detail-breadcrumb a:hover {
  color: #0d9488;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.22);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
  font-size: 32px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

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

.detail-card,
.side-card,
.prose-page {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.detail-card {
  padding: clamp(22px, 4vw, 34px);
}

.detail-card h1 {
  margin: 14px 0 12px;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 900;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e7eb;
  color: #64748b;
  font-weight: 700;
}

.detail-card h2,
.side-card h2,
.prose-page h2 {
  margin: 24px 0 10px;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.detail-card p,
.prose-page p {
  margin: 0 0 16px;
  color: #374151;
  font-size: 16px;
}

.detail-card .lead {
  color: #111827;
  font-weight: 800;
}

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

.review-box {
  margin-top: 24px;
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
}

.review-box h2 {
  margin-top: 0;
}

.side-card {
  padding: 18px;
}

.poster-card {
  display: grid;
  gap: 14px;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
  background: #0f172a;
}

.poster-card strong,
.poster-card span {
  display: block;
}

.poster-card strong {
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
}

.poster-card span {
  margin-top: 4px;
  color: #64748b;
}

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

.related-list .card-horizontal {
  box-shadow: none;
  border: 1px solid #e5e7eb;
}

.related-list .card-image.wide {
  width: 118px;
  flex-basis: 118px;
}

.related-list .card-body {
  padding: 10px;
}

.related-list .card-body h3 {
  font-size: 14px;
  min-height: auto;
}

.related-list .card-body p,
.related-list .meta-line,
.related-list .mini-play,
.related-list .duration {
  display: none;
}

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

.ranking-row {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-row a {
  display: grid;
  grid-template-columns: 56px 150px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 16px;
  padding: 14px;
}

.ranking-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
  font-size: 22px;
  font-weight: 900;
}

.ranking-row img {
  width: 150px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
  background: #0f172a;
}

.ranking-content {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.ranking-heat {
  justify-self: end;
  color: #0d9488;
  font-weight: 900;
  white-space: nowrap;
}

.prose-page {
  margin-top: 44px;
  margin-bottom: 72px;
  padding: clamp(24px, 5vw, 44px);
  max-width: 900px;
}

.prose-page h2:first-child {
  margin-top: 0;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #0f172a, #134e4a, #0f172a);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
  padding: 48px 0 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.footer-mark {
  color: #ccfbf1;
  background: rgba(20, 184, 166, 0.22);
}

.footer-text,
.footer-meta {
  color: #9ca3af;
}

.footer-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

.footer-list a,
.footer-bottom a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.footer-list a:hover,
.footer-bottom a:hover {
  color: #2dd4bf;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tags a {
  border-radius: 999px;
  padding: 6px 10px;
  color: #ccfbf1;
  background: rgba(20, 184, 166, 0.16);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

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

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

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

  .header-search {
    display: none;
  }

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

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

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

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

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

  .brand-subtitle {
    display: none;
  }

  .home-hero {
    padding-top: 28px;
  }

  .hero-card a {
    aspect-ratio: 4 / 5;
    min-height: 420px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .hero-categories,
  .category-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .grid.six,
  .footer-grid,
  .filter-panel,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .soft-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .card-horizontal a {
    display: block;
  }

  .card-image.wide {
    width: 100%;
  }

  .ranking-row a {
    grid-template-columns: 44px 92px minmax(0, 1fr);
  }

  .ranking-row img {
    width: 92px;
    height: 68px;
  }

  .ranking-heat {
    grid-column: 3;
    justify-self: start;
  }

  .rank-item a {
    grid-template-columns: 90px 1fr;
  }

  .rank-item img {
    width: 90px;
    height: 68px;
  }
}
