:root {
  --primary: #059669;
  --primary-dark: #047857;
  --secondary: #0f766e;
  --accent: #06b6d4;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f3f4f6;
  --line: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 36%, #f8fafc 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 26px rgba(5, 150, 105, 0.28);
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 12px;
  color: #4b5563;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary-dark);
  background: #ecfdf5;
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f3f4f6;
}

.header-search input {
  width: 150px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 6px 8px 12px;
}

.header-search button,
.hero-search button,
.primary-btn {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.hero-search button:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(5, 150, 105, 0.34);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #111827;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.38), transparent 36%), linear-gradient(135deg, #064e3b 0%, #0f766e 46%, #083344 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #064e3b, #0f766e);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.62) 48%, rgba(15, 23, 42, 0.15) 100%), linear-gradient(0deg, rgba(2, 6, 23, 0.68), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 650px;
  padding: 118px 24px 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.22);
  border: 1px solid rgba(209, 250, 229, 0.22);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-desc {
  max-width: 720px;
  margin: 0 0 28px;
  color: #e5e7eb;
  font-size: clamp(18px, 2.5vw, 24px);
}

.hero-tags,
.movie-tags,
.tag-cloud,
.genre-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.movie-tags span,
.tag-cloud span,
.genre-cloud span {
  border-radius: 999px;
  padding: 6px 10px;
  color: #047857;
  background: #d1fae5;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 11px 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-panel {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  width: min(1192px, calc(100% - 48px));
  transform: translateX(-50%);
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.hero-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--line);
  outline: none;
  border-radius: 16px;
  background: #ffffff;
  padding: 13px 16px;
  color: var(--ink);
}

.hero-links,
.slim-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-links a,
.slim-links a {
  border-radius: 999px;
  padding: 9px 14px;
  color: #065f46;
  background: #ecfdf5;
  font-weight: 800;
  font-size: 14px;
}

.hero-nav {
  position: absolute;
  top: 47%;
  z-index: 6;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  background: rgba(15, 23, 42, 0.44);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 30px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #ffffff;
}

.content-section,
.detail-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 58px 24px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.section-line {
  width: 5px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

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

.section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b, #0891b2);
}

.movie-cover img,
.category-visual img,
.detail-cover img,
.mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.2s ease;
}

.movie-card:hover .movie-cover img,
.mini-card:hover .mini-thumb img {
  transform: scale(1.08);
}

.image-muted {
  opacity: 0;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.84);
  opacity: 0;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.quality-mark,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  left: 12px;
  right: auto;
  min-width: 30px;
  text-align: center;
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.movie-info {
  padding: 16px;
}

.movie-title {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.42;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-title:hover {
  color: var(--primary);
}

.movie-meta,
.movie-line {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.movie-line {
  display: -webkit-box;
  min-height: 45px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-tags {
  margin-top: 12px;
}

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

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

.ranking-box {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.ranking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ranking-head h2,
.side-card h2 {
  margin: 0;
  font-size: 24px;
}

.ranking-head a {
  color: var(--primary-dark);
  font-weight: 900;
}

.ranking-list,
.side-list,
.side-links,
.category-preview,
.footer-links {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: grid;
  grid-template-columns: 34px 96px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.mini-card:hover {
  background: #f9fafb;
}

.mini-rank {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.mini-dot {
  font-size: 12px;
}

.mini-thumb {
  display: block;
  width: 96px;
  height: 58px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #064e3b, #0891b2);
}

.mini-text strong,
.mini-text small {
  display: block;
}

.mini-text strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mini-text small {
  margin-top: 3px;
  color: var(--muted);
}

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

.category-card {
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #065f46, #0891b2);
  box-shadow: 0 18px 42px rgba(5, 150, 105, 0.18);
  transition: transform 0.24s ease;
}

.category-card:nth-child(even) {
  background: linear-gradient(135deg, #0f766e, #155e75);
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
}

.category-card span {
  color: rgba(255, 255, 255, 0.84);
}

.accent-section {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1240px) / 2 + 24px));
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #0e7490);
}

.accent-section .section-heading p,
.accent-section .movie-meta,
.accent-section .movie-line {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero {
  color: #ffffff;
  background: radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.32), transparent 34%), linear-gradient(135deg, #064e3b, #083344);
}

.page-hero > div {
  max-width: 1240px;
  margin: 0 auto;
  padding: 78px 24px;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
}

.page-hero p:not(.hero-kicker) {
  max-width: 760px;
  margin: 0;
  color: #d1d5db;
  font-size: 18px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.filter-empty {
  display: none;
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

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

.category-overview-grid {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  padding: 20px;
}

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

.category-visual span {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #064e3b, #0891b2);
}

.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-overview-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

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

.category-preview a {
  padding: 10px 12px;
  border-radius: 14px;
  background: #f3f4f6;
  color: #374151;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.detail-player-wrap {
  background: #030712;
}

.player-shell {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.68));
  cursor: pointer;
}

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

.play-circle {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 18px;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  border-radius: 999px;
  padding: 8px 13px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 13px;
}

.player-status:empty {
  display: none;
}

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

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

.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 800;
}

.detail-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  padding: 24px;
}

.detail-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #064e3b, #0891b2);
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.detail-line {
  margin: 0 0 20px;
  color: #4b5563;
  font-size: 18px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.detail-meta div {
  padding: 12px;
  border-radius: 16px;
  background: #f9fafb;
}

.detail-meta dt {
  color: var(--muted);
  font-size: 12px;
}

.detail-meta dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.detail-play-link {
  display: inline-flex;
  margin-top: 22px;
}

.story-section {
  margin-top: 26px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.story-section h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.story-section p {
  margin: 0 0 14px;
  color: #374151;
  font-size: 17px;
}

.story-section p:last-child {
  margin-bottom: 0;
}

.review-section {
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  border: 1px solid #a7f3d0;
}

.prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.prev-next a,
.side-links a {
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
  color: var(--primary-dark);
  font-weight: 900;
}

.detail-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 22px;
}

.side-card {
  padding: 22px;
}

.side-card h2 {
  margin-bottom: 18px;
}

.side-links {
  grid-template-columns: 1fr;
}

.site-footer {
  margin-top: 50px;
  color: #d1d5db;
  background: linear-gradient(135deg, #0f172a, #111827 48%, #064e3b);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: #ffffff;
}

.site-footer p {
  max-width: 440px;
  color: #9ca3af;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

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

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #6ee7b7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  text-align: center;
  color: #94a3b8;
}

@media (max-width: 1100px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .header-search {
    display: none;
  }

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

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

  .ranking-box,
  .detail-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner {
    padding: 0 16px;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding: 94px 20px 270px;
  }

  .hero-panel {
    width: calc(100% - 28px);
    bottom: 18px;
  }

  .hero-search,
  .filter-bar,
  .detail-card,
  .category-overview-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-dots {
    bottom: 238px;
  }

  .hero-nav {
    display: none;
  }

  .feature-grid,
  .compact-grid,
  .large-grid,
  .ranking-page-list,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-card {
    padding: 18px;
  }

  .detail-cover {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 18px;
  }

  .content-section,
  .detail-layout {
    padding: 38px 16px;
  }

  .page-hero > div {
    padding: 58px 16px;
  }

  .feature-grid,
  .compact-grid,
  .large-grid,
  .ranking-page-list,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .mini-card {
    grid-template-columns: 30px 82px 1fr;
  }

  .mini-thumb {
    width: 82px;
    height: 52px;
  }

  .detail-meta,
  .prev-next {
    grid-template-columns: 1fr;
  }
}
