:root {
  --page-bg: #fff7ed;
  --surface: #ffffff;
  --surface-soft: #fffaf4;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(251, 146, 60, 0.22);
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --shadow: 0 24px 60px rgba(127, 29, 29, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 48%, #fff7ed 100%);
}

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

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

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, 0.92);
  border-bottom: 1px solid rgba(249, 115, 22, 0.14);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 70px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #9a3412;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 10px 26px rgba(239, 68, 68, 0.28);
}

.brand-name {
  font-size: 21px;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  -webkit-background-clip: text;
  color: transparent;
}

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

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

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

.nav-search {
  display: flex;
  align-items: center;
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 999px;
  overflow: hidden;
}

.nav-search input,
.mobile-search input,
.inline-filter input,
.search-panel input,
.inline-filter select,
.search-panel select {
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.nav-search input {
  width: 220px;
  padding: 11px 16px;
}

.nav-search button,
.mobile-search button,
.inline-filter button,
.search-panel button {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.nav-search button {
  padding: 11px 18px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #9a3412;
}

.mobile-nav {
  display: none;
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(249, 115, 22, 0.12);
}

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

.mobile-search {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 14px;
}

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

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

.quick-channel {
  border-top: 1px solid rgba(249, 115, 22, 0.08);
  background: rgba(255, 247, 237, 0.74);
}

.quick-channel-inner {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 0;
}

.quick-channel a {
  color: #9a3412;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.42), transparent 34%), linear-gradient(135deg, #f97316, #ef4444 58%, #ec4899);
}

.hero-track {
  position: relative;
  min-height: 650px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: blur(3px) saturate(1.15);
  transform: scale(1.05);
}

.hero-bg::after,
.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(124, 45, 18, 0.92), rgba(127, 29, 29, 0.7), rgba(190, 24, 93, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  align-items: center;
  gap: 50px;
  min-height: 650px;
  padding: 70px 0;
  color: #ffffff;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fed7aa;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--orange);
}

.eyebrow.light {
  color: #ffedd5;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 42px);
}

.hero p,
.page-hero p,
.feature-band p,
.category-overview-card p,
.detail-info .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

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

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.34);
}

.btn-ghost,
.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  color: #9a3412;
  border-color: rgba(249, 115, 22, 0.24);
  background: #fff7ed;
}

.btn-small {
  min-height: 38px;
  padding: 0 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #9a3412;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: #ffedd5;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: linear-gradient(135deg, #fdba74, #ef4444);
  box-shadow: 0 32px 90px rgba(127, 29, 29, 0.45);
}

.hero-poster img,
.detail-cover img,
.poster-link img,
.category-tile img,
.rank-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-poster:hover img,
.movie-card:hover .poster-link img,
.category-tile:hover img,
.detail-cover:hover img {
  transform: scale(1.08);
}

.hero-poster span,
.detail-cover span,
.play-badge {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.35);
}

.hero-poster span,
.detail-cover span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

.hero-dot.is-active {
  width: 36px;
  background: #ffffff;
}

.channel-section,
.movie-section,
.category-overview-list,
.rank-layout,
.detail-layout,
.watch-section {
  padding: 64px 0;
}

.section-heading,
.category-overview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading h2,
.category-overview-card h2,
.rank-panel h2,
.detail-article h2,
.detail-side h2,
.rank-side h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.section-link {
  color: var(--orange);
  font-weight: 900;
}

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

.category-tile {
  position: relative;
  display: flex;
  min-height: 220px;
  overflow: hidden;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  color: #ffffff;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fdba74, #ef4444);
  box-shadow: var(--shadow);
}

.category-tile img {
  position: absolute;
  inset: 0;
  opacity: 0.56;
}

.category-tile-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.84));
}

.category-tile strong,
.category-tile small {
  position: relative;
  z-index: 2;
}

.category-tile strong {
  margin-bottom: 6px;
  font-size: 21px;
}

.category-tile small {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(127, 29, 29, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fecdd3);
}

.play-badge {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 6px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.92);
}

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

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 45px;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-body p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  margin: 9px 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #9a3412;
  font-size: 12px;
  font-weight: 800;
}

.movie-meta span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff7ed;
}

.feature-band {
  margin: 40px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444 60%, #ec4899);
}

.feature-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 56px 0;
}

.feature-band h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444 58%, #ec4899);
}

.page-hero .container {
  padding: 76px 0;
}

.page-hero h1 {
  max-width: 880px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
}

.soft-hero {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 30%), linear-gradient(135deg, #fb923c, #ef4444);
}

.category-overview-list {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  padding: 26px;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.category-overview-card p {
  color: var(--muted);
  font-size: 16px;
}

.inline-filter,
.search-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  margin-top: 28px;
}

.inline-filter input,
.inline-filter select,
.search-panel input,
.search-panel select {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
}

.inline-filter input,
.search-panel input {
  flex: 1 1 260px;
}

.inline-filter button,
.search-panel button {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
}

.empty-state,
.search-summary {
  display: none;
  margin: 18px 0 28px;
  color: var(--muted);
  font-weight: 800;
}

.search-summary {
  display: block;
}

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

.rank-panel,
.rank-side section,
.detail-article,
.detail-side,
.watch-panel {
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.rank-panel,
.detail-article,
.detail-side {
  padding: 24px;
}

.rank-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.rank-row {
  display: grid;
  grid-template-columns: 50px 68px minmax(0, 1fr) minmax(180px, 0.8fr) 52px;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 10px;
  border-radius: 18px;
  background: #fff7ed;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: #ffedd5;
}

.rank-row img {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fed7aa, #fecdd3);
}

.rank-number {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rank-title {
  color: #111827;
  font-weight: 900;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

.rank-score {
  color: #ffffff;
  padding: 7px 9px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.rank-side {
  display: grid;
  gap: 22px;
}

.rank-side section {
  padding: 20px;
}

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

.detail-hero {
  min-height: 620px;
}

.detail-bg {
  position: absolute;
  inset: 0;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: blur(3px);
  transform: scale(1.04);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 34px 0 64px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.detail-main {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.detail-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: linear-gradient(135deg, #fdba74, #ef4444);
  box-shadow: 0 28px 70px rgba(127, 29, 29, 0.4);
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.detail-info .lead {
  max-width: 800px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

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

.watch-section {
  padding-bottom: 20px;
}

.watch-panel {
  overflow: hidden;
  background: #111827;
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000000;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding-left: 5px;
  border-radius: 999px;
  font-size: 34px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.36);
}

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

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

.detail-article p {
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(249, 115, 22, 0.14);
}

.info-list dt {
  color: #9a3412;
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: #374151;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: #9a3412;
  font-weight: 900;
  background: #fff7ed;
}

.pager a.is-active,
.pager a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 36px;
  padding: 54px 0 36px;
}

.footer-brand {
  color: #ffffff;
  font-size: 21px;
}

.site-footer p {
  color: #9ca3af;
  line-height: 1.7;
}

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

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

.footer-links a {
  color: #d1d5db;
}

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

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.image-empty {
  opacity: 0;
}

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

  .menu-toggle {
    display: flex;
  }

  .hero-content,
  .detail-main,
  .detail-layout,
  .rank-layout,
  .feature-band-inner {
    grid-template-columns: 1fr;
  }

  .feature-band-inner {
    display: grid;
  }

  .hero-poster,
  .detail-cover {
    max-width: 360px;
  }

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

  .rank-layout,
  .detail-layout {
    display: grid;
  }

  .detail-side,
  .rank-side {
    width: 100%;
  }
}

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

  .hero,
  .hero-track,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding: 46px 0 86px;
  }

  .hero p,
  .page-hero p,
  .feature-band p,
  .detail-info .lead {
    font-size: 16px;
  }

  .movie-grid,
  .movie-grid-home,
  .movie-grid-mini,
  .category-tile-grid,
  .side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .section-heading,
  .category-overview-head {
    align-items: start;
    flex-direction: column;
  }

  .rank-row {
    grid-template-columns: 42px 58px minmax(0, 1fr) 48px;
  }

  .rank-row img {
    width: 58px;
    height: 58px;
  }

  .rank-meta {
    display: none;
  }

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

  .detail-hero {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 18px;
  }

  .movie-grid,
  .movie-grid-home,
  .movie-grid-mini,
  .category-tile-grid,
  .side-grid {
    grid-template-columns: 1fr;
  }

  .quick-channel-inner {
    gap: 14px;
  }

  .page-hero .container,
  .channel-section,
  .movie-section,
  .category-overview-list,
  .rank-layout,
  .detail-layout,
  .watch-section {
    padding: 42px 0;
  }
}
