:root {
  --rose-50: #fff4f7;
  --rose-100: #ffe4e9;
  --rose-200: #ffceda;
  --rose-400: #fb7185;
  --rose-500: #ec4899;
  --rose-600: #db2777;
  --amber-50: #fff8ed;
  --ink: #272033;
  --muted: #756a7c;
  --card: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.55);
  --shadow: 0 20px 50px rgba(219, 39, 119, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 183, 197, 0.55), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(255, 244, 230, 0.8), transparent 22rem),
    linear-gradient(135deg, #fff8ed 0%, #ffe4e9 45%, #ffd4e0 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(255, 153, 183, 0.22);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-400));
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.3);
}

.brand-text,
.footer-brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--rose-600), var(--rose-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  font-weight: 700;
  color: #6b5a70;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose-600);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  min-width: 270px;
  border: 1px solid rgba(236, 72, 153, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.header-search input,
.mobile-search input,
.filter-controls input,
.filter-controls select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.header-search input {
  padding: 12px 6px 12px 18px;
}

.header-search button,
.mobile-search button {
  border: 0;
  cursor: pointer;
  padding: 11px 18px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-400));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

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

.mobile-search {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(236, 72, 153, 0.16);
  border-radius: 999px;
}

.mobile-search input {
  padding: 12px 16px;
}

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

.mobile-category-link,
.category-chip,
.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--rose-600);
  font-weight: 700;
}

.mobile-category-link {
  padding: 8px 12px;
}

.petal-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.cherry-blossom {
  position: fixed;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #ffb7c5, #ffc6dc);
  border-radius: 50% 0;
  opacity: 0.68;
  pointer-events: none;
  animation: fall linear infinite;
}

.cherry-blossom::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0 50%;
  background: radial-gradient(circle, #ffb7c5, #ffc6dc);
}

@keyframes fall {
  from {
    transform: translateY(-110vh) rotate(0deg);
    opacity: 0.72;
  }
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.65s ease-out both;
}

.glass-card,
.glass-effect {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(236, 72, 153, 0.25);
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  background: #2a1424;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 7, 18, 0.9), rgba(77, 27, 54, 0.58), rgba(255, 164, 190, 0.12)),
    linear-gradient(0deg, rgba(39, 32, 51, 0.84), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 42px;
  padding: 96px 0 120px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #ffd1de;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-summary {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span {
  padding: 7px 12px;
}

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

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

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

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--rose-600), var(--rose-400));
  box-shadow: 0 16px 30px rgba(219, 39, 119, 0.32);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

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

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: rgba(236, 72, 153, 0.9);
  backdrop-filter: blur(10px);
}

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

.hero-dot {
  width: 42px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.34);
}

.hero-dot.is-active {
  background: #fff;
}

.hero-side-list {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  width: 360px;
  padding: 18px;
}

.compact-link {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-link:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.52);
}

.compact-thumb {
  overflow: hidden;
  border-radius: 14px;
}

.compact-thumb img {
  width: 58px;
  height: 76px;
  object-fit: cover;
}

.compact-link strong,
.compact-link em {
  display: block;
}

.compact-link em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.section {
  position: relative;
  z-index: 2;
  padding: 38px 0;
}

.intro-section {
  padding-top: 54px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2,
.page-hero h1,
.filter-panel h2,
.ranking-panel h2,
.article-card h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.section-heading h2,
.filter-panel h2,
.ranking-panel h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p,
.page-hero p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.85;
}

.inline-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.inline-heading a {
  color: var(--rose-600);
  font-weight: 900;
}

.category-strip,
.category-grid {
  display: grid;
  gap: 16px;
}

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

.category-chip {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 32px rgba(236, 72, 153, 0.14);
}

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

.category-chip span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.category-chip em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.filter-controls {
  display: grid;
  grid-template-columns: 1fr 180px 150px;
  gap: 12px;
}

.filter-controls input,
.filter-controls select {
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(236, 72, 153, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(236, 72, 153, 0.14);
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: rgba(255, 255, 255, 0.2);
}

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

.movie-card:hover .poster-image,
.movie-card:hover .poster-frame img {
  transform: scale(1.08);
}

.poster-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent);
}

.movie-badge,
.movie-year {
  position: absolute;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.movie-badge {
  left: 12px;
  top: 12px;
  background: rgba(236, 72, 153, 0.88);
}

.movie-year {
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.55);
}

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

.movie-card-body strong,
.movie-card-body em,
.movie-card-body .movie-desc {
  display: block;
}

.movie-card-body strong {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
}

.movie-card-body em {
  margin-top: 6px;
  color: var(--rose-600);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.movie-desc {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.tag-row span {
  padding: 5px 9px;
  font-size: 12px;
}

.ranking-panel {
  position: sticky;
  top: 94px;
  padding: 22px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
}

.rank-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--rose-600), var(--rose-400));
}

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

.rank-item em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.page-hero,
.detail-hero {
  position: relative;
  z-index: 2;
  padding: 70px 0 18px;
}

.compact-page-hero {
  padding-bottom: 0;
}

.page-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
}

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

.category-card {
  display: block;
  overflow: hidden;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 170px;
  overflow: hidden;
}

.category-preview span {
  overflow: hidden;
}

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

.category-content {
  display: block;
  padding: 20px;
}

.category-content strong,
.category-content em {
  display: block;
}

.category-content strong {
  font-size: 24px;
  font-weight: 950;
}

.category-content em {
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 64px 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.rank-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--rose-600), var(--rose-400));
}

.ranking-poster {
  overflow: hidden;
  border-radius: 16px;
}

.ranking-poster img {
  width: 96px;
  height: 130px;
  object-fit: cover;
}

.ranking-info strong,
.ranking-info em,
.ranking-info > span {
  display: block;
}

.ranking-info strong {
  font-size: 22px;
  font-weight: 950;
}

.ranking-info em {
  margin: 5px 0 10px;
  color: var(--rose-600);
  font-style: normal;
  font-weight: 800;
}

.ranking-info > span {
  color: var(--muted);
  line-height: 1.65;
}

.empty-state {
  padding: 28px;
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.66);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 800;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: stretch;
}

.player-card {
  padding: 16px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #130c15;
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0b070d;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(18, 9, 18, 0.56), rgba(18, 9, 18, 0.18));
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.92);
  box-shadow: 0 22px 42px rgba(236, 72, 153, 0.36);
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
}

.play-overlay strong {
  font-size: 20px;
}

.detail-info {
  padding: 26px;
}

.detail-info h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.detail-line {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.meta-list div {
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
}

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

.meta-list dd {
  margin: 4px 0 0;
  font-weight: 950;
}

.full-btn {
  width: 100%;
  margin-top: 24px;
}

.article-card {
  padding: 30px;
}

.article-card h2 {
  margin-top: 0;
  font-size: 30px;
}

.article-card h2 + p {
  margin-top: 14px;
}

.article-card p {
  color: #4f4359;
  font-size: 17px;
  line-height: 2;
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.44);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-inner p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-inner nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--rose-600);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.58);
}

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

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

  .hero-side-list {
    display: none;
  }

  .hero-poster {
    display: none;
  }

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

  .ranking-panel {
    position: static;
  }
}

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

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

  .header-inner {
    height: 66px;
  }

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

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

  .hero-content {
    display: flex;
    align-items: center;
    padding: 80px 0 96px;
  }

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

  .hero-summary {
    font-size: 15px;
  }

  .filter-panel,
  .filter-controls,
  .footer-inner,
  .ranking-card {
    grid-template-columns: 1fr;
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }

  .ranking-poster img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 520px) {
  .container,
  .header-inner,
  .footer-inner,
  .mobile-panel,
  .hero-content {
    width: min(100% - 22px, 1180px);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

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

  .hero-actions,
  .page-actions {
    display: grid;
  }

  .movie-grid,
  .large-grid,
  .feature-grid,
  .category-grid,
  .category-strip,
  .meta-list {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    padding: 12px;
  }

  .detail-info,
  .article-card {
    padding: 20px;
  }
}
