:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.25);
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #ea580c;
  --cyan: #06b6d4;
  --green: #16a34a;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.10);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  color: var(--dark);
}

.brand-mark {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: white;
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.35);
}

.brand-text {
  font-size: 1.08rem;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link,
.mobile-nav-link {
  color: #334155;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--amber-dark);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f1f5f9;
}

.header-search input,
.mobile-search input {
  width: 13.5rem;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.68rem 0.95rem;
  color: var(--dark);
}

.header-search button,
.mobile-search button {
  border: 0;
  background: var(--amber);
  color: white;
  padding: 0.68rem 1rem;
  cursor: pointer;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 1rem;
  padding-top: 0.25rem;
}

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

.mobile-search {
  margin-bottom: 0.75rem;
}

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

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

.mobile-nav-link {
  display: block;
  border-radius: 14px;
  background: #f8fafc;
  padding: 0.85rem 1rem;
}

.hero-carousel {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: var(--dark);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

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

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

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

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(245, 158, 11, 0.26), transparent 34%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.82) 42%, rgba(15, 23, 42, 0.2) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.12));
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(24px, calc((100% - 1180px) / 2));
  width: min(620px, calc(100% - 48px));
  transform: translateY(-50%);
  color: white;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-summary {
  margin: 1.25rem 0 0;
  color: #cbd5e1;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.hero-tags,
.card-tags,
.detail-tags,
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-tags {
  margin-top: 1.3rem;
}

.hero-tags span,
.detail-tags span,
.category-tags span {
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
  padding: 0.32rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.primary-button,
.secondary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  background: var(--amber);
  color: white;
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.30);
}

.primary-button:hover,
.play-trigger:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(12px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.hero-controls {
  position: absolute;
  z-index: 5;
  bottom: 2rem;
  left: 50%;
  display: flex;
  gap: 0.6rem;
  transform: translateX(-50%);
}

.hero-dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 2.5rem;
  background: var(--amber);
}

.hero-thumbs {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 5.8rem;
  z-index: 4;
  display: grid;
  width: min(420px, calc(100% - 48px));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-thumb {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

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

.hero-thumb span {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.1rem 0.55rem 0.45rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
}

.main-section,
.listing-page,
.detail-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.main-section {
  padding: 4rem 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-head h2,
.page-hero h1,
.detail-title h1 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-head p,
.page-hero p,
.detail-title p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.section-head a,
.text-button {
  color: var(--amber-dark);
  font-weight: 800;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.15rem;
}

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

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

.poster-frame,
.wide-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}

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

.poster-frame img,
.wide-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

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

.poster-frame::after,
.wide-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 56%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-frame::after,
.wide-card:hover .wide-poster::after {
  opacity: 1;
}

.poster-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.95);
  color: white;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  color: white;
  font-size: 0.76rem;
  font-weight: 900;
}

.year-badge {
  top: 0.75rem;
  right: 0.75rem;
  background: var(--amber);
  padding: 0.22rem 0.52rem;
}

.rank-badge {
  top: 0.7rem;
  left: 0.7rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 12px 22px rgba(234, 88, 12, 0.28);
}

.movie-card-body {
  padding: 1rem;
}

.movie-card-body h2,
.wide-content h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card-body h2 a:hover,
.wide-content h2 a:hover {
  color: var(--amber-dark);
}

.movie-card-body p,
.wide-content p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.card-tags {
  margin-top: 0.7rem;
}

.card-tags span {
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  padding: 0.22rem 0.48rem;
  font-size: 0.73rem;
  font-weight: 700;
}

.card-meta,
.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.78rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.card-meta span:first-child,
.meta-row span:first-child {
  color: var(--amber-dark);
}

.spotlight-band {
  background: linear-gradient(135deg, #fff7ed, #fffbeb, #fef3c7);
}

.wide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.wide-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.wide-poster {
  min-height: 218px;
}

.wide-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 24px;
  padding: 1.35rem;
  background: linear-gradient(135deg, #0f172a, #334155);
  color: white;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -48px;
  bottom: -42px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.25);
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-tile h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.category-tile p,
.category-tile span {
  position: relative;
  z-index: 1;
  color: #cbd5e1;
}

.category-tile span {
  display: inline-flex;
  margin-top: 1rem;
  color: #fbbf24;
  font-weight: 900;
}

.page-hero {
  padding: 7.5rem 0 3rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.26), transparent 28%),
    linear-gradient(135deg, #0f172a, #1e293b 70%, #0f172a);
  color: white;
}

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

.page-hero h1,
.page-hero p {
  color: white;
}

.page-hero p {
  width: min(700px, 100%);
  color: #cbd5e1;
}

.listing-page {
  padding: 2rem 0 4rem;
}

.filter-panel {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: white;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.filter-search input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  outline: 0;
  background: #f8fafc;
  padding: 0.95rem 1rem;
}

.filter-search input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-chips button {
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-weight: 800;
}

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

.empty-state {
  display: none;
  border-radius: 20px;
  background: white;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
}

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

.ranking-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.detail-hero {
  padding: 7rem 0 3rem;
  background:
    radial-gradient(circle at 78% 14%, rgba(245, 158, 11, 0.22), transparent 30%),
    linear-gradient(135deg, #0f172a, #1e293b 58%, #020617);
  color: white;
}

.detail-hero-inner {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
  color: #cbd5e1;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #fbbf24;
}

.detail-title h1 {
  color: white;
}

.detail-title p {
  max-width: 760px;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.detail-meta span {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  padding: 0.55rem 0.8rem;
  color: #e2e8f0;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.detail-main {
  padding: 3rem 0 4rem;
}

.player-shell {
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.20);
}

.player-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #020617;
}

.play-cover.is-hidden {
  display: none;
}

.play-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.play-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 30%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.24));
}

.play-trigger {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  color: white;
  padding: 1rem 1.4rem;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.38);
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-trigger span:first-child {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
}

.player-info {
  padding: 1rem 1.2rem;
  color: #cbd5e1;
}

.player-info strong {
  color: white;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.6rem;
  margin-top: 2rem;
}

.article-panel,
.side-panel {
  border-radius: 24px;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.article-panel h2,
.side-panel h2 {
  margin: 0 0 1rem;
  color: var(--dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.article-panel p {
  margin: 0 0 1.1rem;
  color: #334155;
  font-size: 1.02rem;
}

.side-list {
  display: grid;
  gap: 0.85rem;
}

.side-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.side-item img {
  width: 72px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  background: #0f172a;
}

.side-item strong {
  display: block;
  color: var(--dark);
  line-height: 1.35;
}

.side-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.related-section {
  margin-top: 2.2rem;
}

.site-footer {
  background: linear-gradient(135deg, #0f172a, #1e293b 72%, #0f172a);
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-brand {
  color: white;
}

.site-footer h2 {
  margin: 0 0 1rem;
  color: white;
  font-size: 1.05rem;
}

.site-footer p {
  max-width: 460px;
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
}

.site-footer a:hover {
  color: #fbbf24;
}

.footer-bottom {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  padding: 1.1rem 0;
  font-size: 0.92rem;
}

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

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

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

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

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

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

  .menu-button {
    display: block;
  }

  .hero-carousel {
    min-height: 720px;
  }

  .hero-content {
    top: 44%;
  }

  .hero-thumbs {
    left: 24px;
    right: 24px;
    bottom: 5.8rem;
    width: auto;
  }

  .wide-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

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

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

  .detail-cover {
    width: min(260px, 70%);
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .header-inner {
    height: 66px;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .hero-carousel {
    min-height: 660px;
  }

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

  .hero-thumb:nth-child(n + 4) {
    display: none;
  }

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

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

  .movie-card-body {
    padding: 0.82rem;
  }

  .wide-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .wide-poster {
    min-height: 184px;
  }

  .wide-content {
    padding: 0.9rem;
  }

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

  .detail-hero {
    padding-top: 6rem;
  }

  .article-panel,
  .side-panel {
    padding: 1.15rem;
  }
}
