:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --blue: #2563eb;
  --sky: #38bdf8;
  --orange: #f97316;
  --radius: 22px;
  --shadow: 0 22px 45px rgba(15, 23, 42, 0.15);
  --soft-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--slate-900);
  background: linear-gradient(180deg, #f8fafc 0%, #eef7ff 42%, #f8fafc 100%);
  line-height: 1.65;
}

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

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: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.24);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 24px rgba(6, 182, 212, 0.34);
  transform: translateZ(0);
}

.brand:hover .brand-mark {
  transform: rotate(90deg) scale(1.04);
  transition: transform 0.28s ease;
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(90deg, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  color: transparent;
}

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

.nav-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #67e8f9;
}

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

.nav-search input,
.mobile-search input {
  width: 190px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
  outline: none;
  transition: all 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus {
  width: 245px;
  border-color: rgba(103, 232, 249, 0.9);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18);
}

.nav-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: var(--white);
}

.mobile-panel {
  display: none;
  padding: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.98);
}

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

.mobile-panel a {
  display: block;
  padding: 10px 4px;
  color: rgba(255, 255, 255, 0.88);
}

.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
  padding: 8px 0;
}

.mobile-search {
  display: flex;
  gap: 8px;
  padding-top: 10px;
}

.mobile-search input {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

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

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.08);
  transform: scale(1.08);
  opacity: 0.5;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(6, 182, 212, 0.42), transparent 34%),
    linear-gradient(100deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.84) 46%, rgba(15, 23, 42, 0.45) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: 48px;
  padding: 88px 0 74px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(103, 232, 249, 0.35);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(8, 145, 178, 0.18);
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #67e8f9, #60a5fa, #ffffff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #cffafe;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.28);
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

.poster-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.poster-caption strong {
  display: block;
  font-size: 20px;
}

.poster-caption span {
  color: rgba(255, 255, 255, 0.72);
}

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

.hero-dots button {
  width: 38px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.section {
  padding: 72px 0;
}

.section.is-soft {
  background: linear-gradient(135deg, rgba(236, 254, 255, 0.75), rgba(239, 246, 255, 0.92));
}

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

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--cyan-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2,
.page-title h1,
.detail-title h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--slate-900);
}

.section-head p,
.page-title p,
.detail-title p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--slate-600);
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(2, 6, 23, 0.72) 100%);
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--cyan-dark);
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(0.94);
  transition: transform 0.22s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

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

.card-chip,
.rank-number {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 12px;
  font-weight: 800;
}

.rank-number {
  left: auto;
  right: 12px;
  background: linear-gradient(135deg, #fb923c, #ef4444);
}

.card-content {
  display: block;
  padding: 17px;
}

.card-title {
  display: -webkit-box;
  min-height: 52px;
  margin-bottom: 8px;
  overflow: hidden;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.42;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-desc {
  display: -webkit-box;
  min-height: 44px;
  margin-bottom: 12px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.58;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: block;
  color: var(--slate-500);
  font-size: 13px;
}

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

.category-tile {
  position: relative;
  display: block;
  min-height: 170px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: var(--soft-shadow);
}

.category-tile::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.38), transparent 70%);
}

.category-tile h2,
.category-tile h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.hot-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.hot-feature {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 32px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.hot-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hot-feature div {
  position: absolute;
  inset: auto 0 0;
  padding: 30px;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.94));
}

.hot-feature h2 {
  color: var(--white);
}

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

.hot-item {
  display: grid;
  grid-template-columns: 44px 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hot-item:hover {
  transform: translateX(5px);
  box-shadow: var(--soft-shadow);
}

.hot-index {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ef4444);
  font-weight: 900;
}

.hot-item img {
  width: 86px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--slate-800);
}

.hot-item strong,
.hot-item em {
  display: block;
}

.hot-item strong {
  color: var(--slate-900);
}

.hot-item em {
  color: var(--slate-500);
  font-size: 13px;
  font-style: normal;
}

.hot-item b {
  color: var(--orange);
  font-size: 20px;
}

.page-title {
  padding: 70px 0 34px;
  background: radial-gradient(circle at 18% 10%, rgba(6, 182, 212, 0.20), transparent 32%), linear-gradient(180deg, #ffffff, #eff6ff);
}

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

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 170px 170px;
  gap: 14px;
  margin: 0 0 28px;
  padding: 18px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--slate-800);
  background: #f8fafc;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(8, 145, 178, 0.7);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.14);
}

.empty-state {
  display: none;
  padding: 38px;
  border-radius: 24px;
  text-align: center;
  color: var(--slate-500);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.empty-state.is-visible {
  display: block;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--detail-image);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.38;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.55));
}

.detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 74px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--slate-800);
}

.detail-title h1 {
  color: var(--white);
}

.detail-title p {
  color: rgba(255, 255, 255, 0.76);
}

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

.detail-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.watch-panel {
  margin-top: -20px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--slate-950);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.26);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.28), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  z-index: 4;
}

.player-start.is-hidden {
  display: none;
}

.player-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--cyan-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
  font-size: 34px;
}

.player-start strong {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
}

.player-start span:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.article-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.article-card p {
  margin: 0 0 16px;
  color: var(--slate-700);
}

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

.info-box {
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
}

.info-box span {
  display: block;
  color: var(--slate-500);
  font-size: 13px;
}

.info-box strong {
  color: var(--slate-900);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-list span {
  color: var(--cyan-dark);
  background: rgba(6, 182, 212, 0.10);
  border-color: rgba(6, 182, 212, 0.20);
}

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

.rank-card {
  display: grid;
  grid-template-columns: 68px 110px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.rank-card .rank-index {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ef4444);
  font-size: 22px;
  font-weight: 900;
}

.rank-card img {
  width: 110px;
  height: 74px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--slate-800);
}

.rank-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

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

.rank-score {
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
}

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

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

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

@media (max-width: 820px) {
  .site-nav {
    height: 62px;
  }

  .nav-links,
  .nav-search {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 58px 0 82px;
  }

  .hero-poster {
    max-width: 320px;
    transform: none;
  }

  .section-head,
  .hot-layout,
  .detail-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

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

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

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    gap: 24px;
  }

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

  .rank-card {
    grid-template-columns: 48px 88px 1fr;
  }

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

@media (max-width: 560px) {
  .container,
  .site-nav {
    width: min(100% - 22px, 1180px);
  }

  .brand-text {
    font-size: 19px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .hot-item {
    grid-template-columns: 38px 74px 1fr;
  }

  .hot-item b {
    grid-column: 3;
  }

  .section {
    padding: 54px 0;
  }

  .article-card {
    padding: 22px;
  }
}
