:root {
  --earth-900: #504035;
  --earth-800: #604c40;
  --earth-700: #745b4b;
  --earth-600: #8d6f59;
  --earth-500: #9a7e66;
  --earth-200: #dbd2c9;
  --earth-100: #ede9e4;
  --earth-50: #f7f6f4;
  --sand-700: #9a7540;
  --sand-600: #b8904d;
  --sand-500: #c8a56a;
  --sand-300: #e6d5b3;
  --sand-200: #f0e7d3;
  --sand-100: #f8f4ea;
  --sand-50: #fdfbf7;
  --desert-700: #b35a26;
  --desert-600: #d66f2e;
  --desert-500: #e88c45;
  --desert-100: #fdf2e5;
  --desert-50: #fef9f3;
  --white: #ffffff;
  --shadow-soft: 0 14px 40px rgba(80, 64, 53, 0.12);
  --shadow-card: 0 12px 32px rgba(80, 64, 53, 0.16);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--earth-900);
  background: linear-gradient(135deg, var(--sand-50), var(--earth-50));
  min-height: 100vh;
}

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

img {
  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(240, 231, 211, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--desert-600), var(--sand-600));
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(214, 111, 46, 0.25);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--desert-700), var(--sand-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  font-size: 12px;
  color: var(--earth-600);
}

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

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--sand-100);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--earth-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--sand-200);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 8px;
  color: var(--earth-700);
  font-weight: 600;
  border-radius: 10px;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--desert-600);
  background: var(--sand-100);
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--earth-900);
}

.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-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 18, 14, 0.92), rgba(24, 18, 14, 0.55), rgba(24, 18, 14, 0.16)),
    linear-gradient(0deg, rgba(80, 64, 53, 0.82), rgba(80, 64, 53, 0.1));
}

.hero-content {
  position: relative;
  min-height: 560px;
  padding: 84px 0 130px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 54px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 14px;
  color: var(--desert-700);
  background: var(--desert-50);
  border: 1px solid var(--desert-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-copy .eyebrow,
.detail-copy .eyebrow {
  color: var(--white);
  background: rgba(214, 111, 46, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero-one-line {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero-summary {
  max-width: 680px;
  margin: 14px 0 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
}

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

.hero-tags span,
.detail-meta span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  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(--desert-600), var(--desert-500));
  box-shadow: 0 14px 28px rgba(214, 111, 46, 0.26);
}

.btn-secondary {
  color: var(--desert-700);
  background: var(--desert-50);
  border-color: var(--desert-100);
}

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

.btn-ghost {
  color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: var(--white);
  background: rgba(214, 111, 46, 0.9);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero-arrow {
  position: absolute;
  top: 45%;
  z-index: 8;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  backdrop-filter: blur(10px);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 32px;
  background: var(--desert-500);
}

.hero-search-panel {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 9;
  transform: translateX(-50%);
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px);
}

.hero-search {
  display: flex;
  min-height: 48px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 18px;
  outline: 0;
  color: var(--earth-900);
}

.hero-search button {
  border: 0;
  padding: 0 20px;
  color: var(--white);
  background: var(--desert-600);
  font-weight: 700;
  cursor: pointer;
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-category-links a {
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 14px;
}

.page-main {
  padding-top: 36px;
}

.page-hero {
  padding: 58px;
  margin-bottom: 28px;
  border: 1px solid var(--sand-200);
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(232, 140, 69, 0.16), transparent 32%),
    linear-gradient(135deg, var(--earth-900), #583f31);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.page-hero-soft {
  color: var(--earth-900);
  background:
    radial-gradient(circle at 15% 20%, rgba(232, 140, 69, 0.18), transparent 32%),
    linear-gradient(135deg, var(--desert-50), var(--sand-50));
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.035em;
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: inherit;
  line-height: 1.8;
  opacity: 0.86;
}

.page-hero-actions {
  margin-top: 26px;
}

.content-section {
  padding: 42px 0;
}

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

.section-head h2 {
  margin: 0;
  color: var(--earth-900);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--earth-600);
  line-height: 1.7;
}

.section-link,
.text-link {
  color: var(--desert-600);
  font-weight: 700;
}

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

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

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

.movie-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--sand-200);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: var(--sand-300);
  box-shadow: var(--shadow-card);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--earth-100);
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-cover img {
  transform: scale(1.05);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 50%);
  opacity: 0.86;
}

.play-chip,
.year-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
}

.play-chip {
  left: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(214, 111, 46, 0.92);
  border-radius: 50%;
}

.year-chip {
  right: 12px;
  top: 12px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.52);
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--desert-600), var(--sand-600));
  border-radius: 10px;
  font-size: 15px;
}

.movie-card-body {
  padding: 15px;
}

.movie-card h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
}

.movie-card h2 a {
  color: var(--earth-900);
  transition: color 0.2s ease;
}

.movie-card h2 a:hover {
  color: var(--desert-600);
}

.movie-meta {
  margin: 8px 0 0;
  color: var(--earth-500);
  font-size: 13px;
  line-height: 1.45;
}

.movie-desc {
  margin: 10px 0 0;
  display: -webkit-box;
  min-height: 44px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--earth-700);
  font-size: 14px;
  line-height: 1.6;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-row span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  color: var(--desert-700);
  background: var(--desert-50);
  border: 1px solid var(--desert-100);
  border-radius: 999px;
  font-size: 12px;
}

.movie-card-compact .movie-card-body {
  padding: 12px;
}

.movie-card-compact h2 {
  font-size: 15px;
}

.category-preview {
  margin-bottom: 36px;
}

.ranking-strip {
  padding: 42px 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--desert-50), var(--sand-50));
  border: 1px solid var(--sand-200);
}

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

.category-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--sand-200);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.category-cover-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 18px;
}

.category-cover-group img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--earth-100);
}

.category-card h2 {
  margin: 4px 0 10px;
  font-size: 24px;
}

.category-card p {
  margin: 0 0 14px;
  color: var(--earth-600);
  line-height: 1.7;
}

.filter-box {
  margin-bottom: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--sand-200);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.filter-box input,
.filter-box select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--earth-900);
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 14px;
  outline: 0;
}

.filter-box input:focus,
.filter-box select:focus {
  border-color: var(--desert-500);
  box-shadow: 0 0 0 4px rgba(232, 140, 69, 0.12);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.filter-chips button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--earth-700);
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 999px;
  cursor: pointer;
}

.filter-chips button.is-active,
.filter-chips button:hover {
  color: var(--white);
  background: var(--desert-600);
  border-color: var(--desert-600);
}

.select-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.detail-main {
  padding-top: 0;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--earth-900);
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) saturate(1.08);
  transform: scale(1.04);
}

.detail-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 18, 14, 0.94), rgba(24, 18, 14, 0.65), rgba(24, 18, 14, 0.28)),
    linear-gradient(0deg, rgba(80, 64, 53, 0.95), transparent);
}

.detail-hero-inner {
  position: relative;
  padding: 36px 0 70px;
}

.breadcrumb,
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.breadcrumb:hover {
  color: var(--white);
}

.detail-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding-top: 34px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

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

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

.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.65;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
  cursor: pointer;
  text-align: center;
}

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

.player-button {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(214, 111, 46, 0.95);
  box-shadow: 0 18px 42px rgba(214, 111, 46, 0.34);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 22px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.article-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--sand-200);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.article-card h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

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

.article-card p {
  margin: 0;
  color: var(--earth-700);
  line-height: 1.95;
  font-size: 17px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.site-footer {
  margin-top: 40px;
  padding: 44px 0;
  color: var(--earth-600);
  background: var(--earth-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

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

.site-footer p {
  max-width: 520px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

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

[data-card].is-hidden {
  display: none;
}

@media (max-width: 1100px) {
  .grid-featured,
  .grid-small,
  .grid-catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 260px;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 590px;
    grid-template-columns: 1fr;
    padding-top: 56px;
    gap: 24px;
  }

  .hero-poster {
    display: none;
  }

  .hero-search-panel {
    grid-template-columns: 1fr;
    bottom: 18px;
  }

  .hero-arrow {
    display: none;
  }

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

  .category-list {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
  }

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

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

  .brand-text small {
    display: none;
  }

  .hero h1,
  .detail-copy h1 {
    font-size: 36px;
  }

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

  .hero-search-panel {
    padding: 12px;
  }

  .hero-category-links a {
    font-size: 12px;
  }

  .page-hero {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .grid-featured,
  .grid-small,
  .grid-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-card-body {
    padding: 12px;
  }

  .movie-desc,
  .tag-row {
    display: none;
  }

  .category-card {
    grid-template-columns: 1fr;
  }

  .select-row {
    grid-template-columns: 1fr;
  }

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

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

  .article-card {
    padding: 24px 18px;
  }
}
