:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-soft: #dbeafe;
  --color-ink: #111827;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-bg: #f9fafb;
  --color-card: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .08);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, .12);
  --shadow-lg: 0 22px 54px rgba(15, 23, 42, .22);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(229, 231, 235, .9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #7c3aed);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .32);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
}

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

.nav-link {
  position: relative;
  padding: 25px 0 22px;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--color-primary);
  opacity: 0;
  transform: scaleX(.45);
  transition: all .2s ease;
  content: "";
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: #eef2ff;
}

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

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--color-line);
  background: #fff;
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: #374151;
  font-weight: 700;
}

.mobile-link.muted {
  color: var(--color-muted);
  background: #f8fafc;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(59, 130, 246, .28), transparent 28%),
    linear-gradient(90deg, rgba(15, 23, 42, .96) 0%, rgba(30, 64, 175, .78) 52%, rgba(15, 23, 42, .72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .62fr);
  gap: 48px;
  align-items: center;
  padding: 70px 0 120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.inner-hero h1,
.ranking-hero h1,
.detail-hero h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.hero-desc {
  max-width: 720px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.detail-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: #eff6ff;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
}

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

.primary-button,
.light-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 13px;
  border: 0;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 14px 32px rgba(37, 99, 235, .32);
}

.light-button {
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, .92);
}

.ghost-button {
  color: var(--color-primary-dark);
  background: #eff6ff;
}

.primary-button:hover,
.light-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, .18);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

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

.hero-poster span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary-dark);
  background: #fff;
  font-size: 24px;
  box-shadow: var(--shadow-md);
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .45);
  transition: all .2s ease;
}

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

.hero-mini-list {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hero-mini-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero-mini-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-mini-card span {
  display: block;
  overflow: hidden;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.quick-search {
  margin-top: -52px;
  position: relative;
  z-index: 5;
}

.quick-search-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.quick-search h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.home-search {
  display: flex;
  gap: 12px;
}

.home-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 13px;
  color: var(--color-ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.home-search input {
  padding: 0 16px;
}

.home-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.page-section {
  padding: 76px 0;
}

.soft-bg {
  background: linear-gradient(180deg, #ffffff, #eff6ff);
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -.03em;
}

.section-head p {
  max-width: 660px;
  margin: 8px 0 0;
  color: var(--color-muted);
}

.section-link {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-weight: 900;
}

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

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.category-tile.color-green {
  background: linear-gradient(135deg, #059669, #065f46);
}

.category-tile.color-rose {
  background: linear-gradient(135deg, #e11d48, #9f1239);
}

.category-tile.color-purple {
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
}

.category-tile.color-orange {
  background: linear-gradient(135deg, #f97316, #9a3412);
}

.category-tile.color-cyan {
  background: linear-gradient(135deg, #0891b2, #164e63);
}

.category-tile.color-yellow {
  background: linear-gradient(135deg, #ca8a04, #854d0e);
}

.category-tile.color-slate {
  background: linear-gradient(135deg, #475569, #0f172a);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 26px;
}

.category-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .25);
}

.category-tile p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 800;
}

.category-tile h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
}

.category-tile span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .88);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: 20px;
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, .28);
  box-shadow: var(--shadow-md);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e5e7eb;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .35s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.07);
}

.card-shade {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .78));
}

.play-chip,
.year-badge,
.rank-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.play-chip {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  background: rgba(37, 99, 235, .88);
}

.year-badge {
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, .72);
}

.rank-badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: rgba(234, 88, 12, .92);
}

.card-body {
  padding: 16px;
}

.card-meta {
  overflow: hidden;
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-body h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.card-body h2 a:hover {
  color: var(--color-primary);
}

.card-summary {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #1e40af;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 800;
}

.movie-card.is-compact {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}

.movie-card.is-compact .poster-link img {
  height: 100%;
  aspect-ratio: 3 / 4;
}

.movie-card.is-compact .card-body h2 {
  font-size: 16px;
}

.movie-card.is-compact .tag-row {
  display: none;
}

.inner-hero,
.ranking-hero,
.detail-hero {
  color: #fff;
  background: linear-gradient(135deg, #1f2937, #1d4ed8 50%, #1e40af);
}

.inner-hero {
  padding: 74px 0;
}

.inner-hero p,
.ranking-hero p,
.detail-one-line {
  max-width: 760px;
  color: #dbeafe;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: #dbeafe;
  font-size: 14px;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(130px, .7fr)) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: #374151;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  padding: 0 12px;
}

.empty-state {
  padding: 56px 20px;
  border: 1px dashed #cbd5e1;
  border-radius: 20px;
  text-align: center;
  background: #fff;
}

.empty-state h2 {
  margin: 0;
}

.empty-state p {
  color: var(--color-muted);
}

.ranking-hero {
  padding: 86px 0;
  background-size: cover;
  background-position: center;
}

.ranking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 44px;
  align-items: center;
}

.ranking-focus {
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  background: rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.ranking-focus img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  object-fit: cover;
}

.ranking-focus strong,
.ranking-focus span {
  display: block;
}

.ranking-focus strong {
  margin-top: 14px;
  font-size: 20px;
}

.ranking-focus span {
  color: #dbeafe;
}

.detail-hero {
  padding: 70px 0;
  background-size: cover;
  background-position: center;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.detail-tags span {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

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

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

.detail-main,
.detail-side {
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.detail-main {
  overflow: hidden;
  padding: 24px;
}

.detail-main h2,
.detail-side h2,
.article-block h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 900;
}

.player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 30px;
  border-radius: 22px;
  background: #020617;
  box-shadow: var(--shadow-md);
}

.movie-video,
.player-cover,
.player-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video,
.player-poster {
  object-fit: cover;
}

.player-cover {
  z-index: 3;
  padding: 0;
  border: 0;
  color: #fff;
  background: #020617;
}

.player-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.player-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, .82), rgba(37, 99, 235, .38));
  content: "";
}

.player-glow {
  position: absolute;
  inset: 28% 38%;
  z-index: 4;
  border-radius: 999px;
  background: rgba(37, 99, 235, .6);
  filter: blur(36px);
}

.player-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary-dark);
  background: #fff;
  font-size: 32px;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
}

.article-block {
  padding: 24px 0 0;
  border-top: 1px solid var(--color-line);
}

.article-block p {
  margin: 0;
  color: #374151;
  font-size: 17px;
}

.detail-side {
  align-self: start;
  padding: 20px;
}

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

.side-list a {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #f8fafc;
  transition: background .2s ease, transform .2s ease;
}

.side-list a:hover {
  background: #eff6ff;
  transform: translateX(2px);
}

.side-list img {
  width: 76px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
}

.side-list strong,
.side-list small {
  display: block;
}

.side-list strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.side-list small {
  color: var(--color-muted);
}

.site-footer {
  color: #cbd5e1;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr .7fr;
  gap: 36px;
  padding: 52px 0 34px;
}

.footer-brand {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.site-footer p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #94a3b8;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(148, 163, 184, .18);
  color: #94a3b8;
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .library-grid,
  .movie-grid,
  .rank-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .search-label {
    grid-column: 1 / -1;
  }
}

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

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content,
  .quick-search-inner,
  .ranking-hero-grid,
  .detail-hero-grid,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 28px;
    padding-top: 46px;
  }

  .hero-poster {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-controls {
    position: relative;
    bottom: auto;
    display: grid;
    padding-bottom: 24px;
  }

  .hero-mini-list {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-search {
    flex-direction: column;
  }

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

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

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

  .brand-copy strong {
    font-size: 18px;
  }

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

  .quick-search-inner,
  .filter-panel,
  .detail-main,
  .detail-side {
    padding: 16px;
    border-radius: 18px;
  }

  .category-grid,
  .category-grid.large,
  .library-grid,
  .movie-grid,
  .rank-grid,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .movie-card.is-compact {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .section-head,
  .footer-bottom {
    display: grid;
    gap: 14px;
  }

  .page-section {
    padding: 52px 0;
  }
}
