:root {
  --mist-50: #f8fafb;
  --mist-100: #eef3f6;
  --mist-200: #dfe6ec;
  --mist-300: #c7d4dd;
  --mist-500: #6f7f8d;
  --mist-600: #566472;
  --mist-700: #3e4750;
  --mist-800: #2f363d;
  --mist-900: #20262b;
  --forest-50: #eef8f0;
  --forest-100: #d9f0df;
  --forest-500: #4f9466;
  --forest-600: #3a6e4d;
  --forest-700: #30593f;
  --stream-50: #edf9fb;
  --stream-100: #d4eef3;
  --stream-600: #267d92;
  --stream-700: #1e6171;
  --sunset-50: #fff4e9;
  --white: #ffffff;
  --shadow-sm: 0 8px 20px rgba(31, 41, 55, 0.08);
  --shadow-md: 0 18px 42px rgba(31, 41, 55, 0.12);
  --shadow-xl: 0 32px 70px rgba(10, 16, 24, 0.26);
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist-50);
  color: var(--mist-700);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(199, 212, 221, 0.7);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--mist-900);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-600), var(--stream-600));
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-size: 17px;
  letter-spacing: -0.02em;
}

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

.nav-link {
  color: var(--mist-700);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link.active {
  color: var(--forest-600);
}

.category-strip {
  border-top: 1px solid rgba(223, 230, 236, 0.72);
  background: rgba(248, 250, 251, 0.86);
}

.category-strip-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 0;
}

.category-strip a {
  flex: 0 0 auto;
  color: var(--mist-600);
  font-size: 14px;
  font-weight: 600;
}

.category-strip a:hover {
  color: var(--forest-600);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mist-200);
  border-radius: 12px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  background: var(--mist-800);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 18px;
  border-top: 1px solid var(--mist-200);
  background: var(--white);
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-link {
  padding: 11px 12px;
  border-radius: 12px;
  background: var(--mist-50);
  color: var(--mist-700);
  font-weight: 650;
}

.hero-slider {
  position: relative;
  min-height: 60vh;
  height: clamp(560px, 76vh, 840px);
  overflow: hidden;
  background: var(--mist-900);
}

.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.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(58, 110, 77, 0.36), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.32) 54%, rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: absolute;
  inset: auto 0 0;
  padding: 0 0 92px;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.hero-tags,
.tag-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  max-width: 860px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

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

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

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

.primary-btn {
  background: var(--white);
  color: var(--mist-900);
  box-shadow: var(--shadow-sm);
}

.primary-btn:hover,
.more-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ghost-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.ghost-btn.light {
  color: var(--mist-900);
  background: rgba(255, 255, 255, 0.82);
}

.hero-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  font-size: 36px;
  line-height: 1;
  z-index: 4;
  transform: translateY(-50%);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.38);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.3s ease, background 0.3s ease;
}

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

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.white-section {
  background: var(--white);
}

.soft-section {
  background: var(--mist-50);
}

.gradient-section {
  background: linear-gradient(135deg, var(--forest-50), var(--stream-50));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.page-hero h1,
.detail-article h2,
.detail-side h2,
.category-panel h2,
.category-overview-card h2,
.rank-info h2,
.card-body h2 {
  margin: 0;
  color: var(--mist-900);
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.section-heading p,
.page-hero p {
  margin: 12px 0 0;
  color: var(--mist-600);
  font-size: 18px;
}

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

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

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

.movie-card,
.category-overview-card,
.filter-panel,
.detail-article,
.detail-side,
.category-panel,
.rank-item {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.category-overview-card:hover,
.rank-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--mist-200);
}

.feature-card .card-cover {
  aspect-ratio: 16 / 10;
}

.poster-card .card-cover {
  aspect-ratio: 2 / 3;
}

.card-cover img,
.category-card img,
.compact-card img,
.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .card-cover img,
.category-card:hover img,
.compact-card:hover img,
.rank-item:hover .rank-cover img {
  transform: scale(1.08);
}

.cover-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--mist-900);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .cover-glow,
.movie-card:hover .play-badge {
  opacity: 1;
}

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

.card-body {
  padding: 18px;
}

.card-body h2 {
  font-size: 19px;
  line-height: 1.35;
}

.poster-card .card-body h2 {
  font-size: 16px;
}

.card-body h2 a:hover,
.rank-info h2 a:hover,
.detail-article a:hover {
  color: var(--forest-600);
}

.card-meta,
.rank-info p:first-of-type {
  margin: 7px 0 8px;
  color: var(--mist-500);
  font-size: 14px;
}

.card-text {
  margin: 0 0 14px;
  color: var(--mist-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-card .card-text {
  -webkit-line-clamp: 3;
  font-size: 14px;
}

.tag-row span {
  color: var(--forest-700);
  background: var(--forest-50);
}

.editor-list {
  display: grid;
  gap: 22px;
}

.editor-list .feature-card {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.featured-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
}

.featured-layout .movie-card:first-child {
  grid-row: span 2;
}

.featured-layout .movie-card:first-child .card-cover {
  aspect-ratio: 16 / 13;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.mini-rank-list,
.rank-list,
.compact-column,
.overview-stack {
  display: grid;
  gap: 16px;
}

.rank-item {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 18px;
  padding: 14px;
}

.rank-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: var(--mist-200);
}

.rank-cover b {
  position: absolute;
  top: 8px;
  left: 8px;
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-600), var(--stream-600));
  font-size: 13px;
}

.rank-info h2 {
  font-size: 20px;
  line-height: 1.35;
}

.rank-info p {
  margin: 8px 0;
  color: var(--mist-600);
}

.more-link {
  margin-top: 24px;
  background: var(--forest-600);
  color: var(--white);
}

.category-panel {
  padding: 24px;
}

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

.category-card {
  position: relative;
  min-height: 150px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 18px;
  overflow: hidden;
  color: var(--white);
  background: var(--mist-900);
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.62;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12));
}

.category-card span,
.category-card em {
  position: relative;
  z-index: 2;
}

.category-card span {
  font-size: 18px;
  font-weight: 800;
}

.category-card em {
  margin-top: 5px;
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.masonry-grid {
  columns: 4 220px;
  column-gap: 18px;
}

.compact-card {
  break-inside: avoid;
  display: block;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.compact-card img {
  aspect-ratio: 16 / 11;
  background: var(--mist-200);
}

.compact-card span {
  display: block;
  padding: 12px 14px 14px;
  color: var(--mist-900);
  font-weight: 700;
}

.page-main {
  background: var(--mist-50);
}

.page-hero {
  position: relative;
  padding: 86px 0 72px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, var(--mist-900), var(--forest-700) 56%, var(--stream-700));
}

.soft-hero,
.search-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(212, 238, 243, 0.45), transparent 32%),
    linear-gradient(135deg, var(--forest-700), var(--mist-900));
}

.rank-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 244, 233, 0.45), transparent 30%),
    linear-gradient(135deg, var(--mist-900), #5f3a21);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--stream-100);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.small-actions {
  margin-top: 24px;
}

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

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.category-overview-head h2 {
  font-size: 26px;
}

.category-overview-head p {
  margin: 8px 0 0;
  color: var(--mist-600);
}

.category-overview-head a {
  flex: 0 0 auto;
  align-self: start;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--forest-700);
  background: var(--forest-50);
  font-weight: 800;
}

.compact-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.compact-row .compact-card {
  margin: 0;
}

.filter-panel {
  padding: 20px;
  margin-bottom: 30px;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(150px, 0.4fr)) auto;
  gap: 14px;
  align-items: end;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--mist-700);
  font-weight: 800;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--mist-200);
  border-radius: 14px;
  background: var(--mist-50);
  color: var(--mist-800);
  padding: 0 14px;
  outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--forest-500);
  box-shadow: 0 0 0 4px rgba(79, 148, 102, 0.12);
}

.filter-reset {
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--forest-600);
  padding: 0 18px;
  font-weight: 800;
}

.is-hidden {
  display: none !important;
}

.empty-state {
  display: none;
  margin: 36px 0 0;
  text-align: center;
  color: var(--mist-500);
  font-weight: 700;
}

.empty-state.show {
  display: block;
}

.breadcrumb {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--mist-600);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--forest-600);
}

.watch-section {
  padding: 0 0 56px;
  background: linear-gradient(180deg, var(--mist-50), var(--white));
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #05080b;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #05080b;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  overflow: hidden;
}

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

.player-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2));
}

.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mist-900);
  font-size: 34px;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-md);
}

.player-text {
  position: absolute;
  left: 50%;
  top: calc(50% + 60px);
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 800;
}

.player-card.is-playing .player-cover {
  display: none;
}

.watch-copy {
  padding: 30px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 238, 243, 0.24), transparent 26%),
    linear-gradient(145deg, var(--mist-900), var(--forest-700));
  box-shadow: var(--shadow-md);
}

.watch-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.detail-line {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.detail-meta span {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
}

.detail-tags {
  margin-top: 18px;
}

.detail-tags span {
  color: var(--mist-900);
  background: rgba(255, 255, 255, 0.88);
}

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

.detail-article,
.detail-side {
  padding: 28px;
}

.detail-article h2,
.detail-side h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.detail-article h2:not(:first-child) {
  margin-top: 28px;
}

.detail-article p {
  margin: 0;
  color: var(--mist-700);
  font-size: 18px;
}

.compact-column .compact-card {
  margin-bottom: 0;
}

.site-footer {
  background: var(--mist-900);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 0.55fr 1fr;
  gap: 36px;
  padding: 54px 0;
}

.footer-brand {
  color: var(--white);
  font-size: 20px;
}

.site-footer p {
  margin: 14px 0 0;
  max-width: 520px;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tags {
  flex-direction: row;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1100px) {
  .three-cols,
  .featured-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

@media (max-width: 760px) {
  .desktop-nav,
  .category-strip {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

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

  .hero-slider {
    height: 640px;
  }

  .hero-content {
    padding-bottom: 82px;
  }

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

  .hero-prev,
  .hero-next {
    display: none;
  }

  .three-cols,
  .poster-grid,
  .featured-layout,
  .editor-list .feature-card,
  .compact-row,
  .category-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .movie-grid {
    gap: 18px;
  }

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

  .page-hero {
    padding: 58px 0 52px;
  }

  .player-button {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }

  .watch-copy,
  .detail-article,
  .detail-side,
  .category-panel {
    padding: 22px;
  }
}
