:root {
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-100: #d1fae5;
  --green-50: #ecfdf5;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 38px rgba(15, 23, 42, 0.13);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.24);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 46%, #ffffff 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-800), var(--green-600));
  box-shadow: 0 10px 30px rgba(5, 95, 70, 0.22);
}

.nav-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--green-700);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

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

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.top-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 270px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.top-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 10px 74px 10px 16px;
  color: var(--white);
  background: transparent;
}

.top-search input::placeholder {
  color: var(--green-100);
}

.top-search button {
  position: absolute;
  top: 4px;
  right: 4px;
  border: 0;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--green-800);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 16px;
}

main {
  min-height: 60vh;
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  color: var(--white);
  background: var(--gray-950);
  overflow: hidden;
}

.hero-track,
.hero-slide,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 24%, rgba(16, 185, 129, 0.33), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(6, 78, 59, 0.72) 48%, rgba(6, 78, 59, 0.2)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.7));
}

.hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 640px;
  padding: 120px 20px 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-900);
  background: rgba(209, 250, 229, 0.92);
}

.hero-content h1 {
  max-width: 780px;
  margin: 26px 0 18px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.hero-tags,
.detail-tags,
.card-meta,
.tag-cloud,
.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero-tags span,
.detail-tags span,
.card-meta span,
.tag-cloud span,
.category-links a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--green-800);
  background: var(--green-50);
}

.hero-tags span,
.detail-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-actions,
.detail-actions,
.green-banner div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.ghost-button,
.section-more,
.page-search-form button,
.hero-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  box-shadow: 0 16px 32px rgba(5, 150, 105, 0.26);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover,
.page-search-form button:hover,
.hero-search button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(14px);
}

.primary-button.light {
  color: var(--green-800);
  background: var(--white);
}

.ghost-button.light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

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

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

.hero-dot.active {
  width: 72px;
  background: var(--white);
}

.quick-panel,
.content-section,
.detail-content,
.player-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 20px;
}

.quick-panel {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-search,
.page-search-form {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-search input,
.page-search-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0 20px;
  outline: 0;
  background: var(--white);
}

.hero-search input:focus,
.page-search-form input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.hero-search button,
.page-search-form button {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--green-600);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.quick-links a {
  min-height: 104px;
  border-radius: var(--radius-lg);
  padding: 16px;
  color: var(--green-900);
  background: linear-gradient(180deg, var(--green-50), #ffffff);
  border: 1px solid rgba(16, 185, 129, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-links a:hover,
.movie-card:hover,
.horizontal-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quick-links span {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.quick-links small {
  color: var(--gray-600);
  line-height: 1.5;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3.8vw, 38px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-more {
  min-height: 40px;
  color: var(--green-700);
  background: var(--green-50);
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-poster {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
}

.card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.movie-card:hover .card-poster img,
.horizontal-card:hover img,
.category-card:hover img {
  transform: scale(1.06);
}

.rating-chip,
.play-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rating-chip {
  top: 12px;
  right: 12px;
  min-width: 46px;
  height: 28px;
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.play-chip {
  left: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(5, 150, 105, 0.9);
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.28);
}

.card-body {
  padding: 16px;
}

.card-body h2,
.horizontal-card h2,
.category-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.card-body p,
.horizontal-card p,
.category-card p {
  margin: 10px 0 14px;
  color: var(--gray-600);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card-meta span {
  color: var(--gray-700);
  background: var(--gray-100);
}

.two-column-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.rank-list,
.stack-list {
  display: grid;
  gap: 12px;
}

.rank-row,
.horizontal-card {
  display: grid;
  align-items: center;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row {
  grid-template-columns: 46px 74px 1fr 52px;
  gap: 14px;
  min-height: 76px;
  padding: 10px 14px 10px 10px;
}

.rank-row img {
  width: 74px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

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

.rank-title {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-score {
  color: var(--green-700);
  font-weight: 900;
}

.horizontal-card {
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 10px;
}

.horizontal-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--green-50);
}

.horizontal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.green-banner {
  max-width: var(--max-width);
  margin: 36px auto 54px;
  padding: 54px 20px;
  border-radius: var(--radius-xl);
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.25), transparent 22%),
    linear-gradient(135deg, var(--green-800), var(--green-500));
  box-shadow: var(--shadow-lg);
}

.green-banner h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
}

.green-banner p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.green-banner div {
  justify-content: center;
}

.green-banner.slim {
  margin-top: 0;
  padding: 42px 20px;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(52, 211, 153, 0.45), transparent 26%),
    linear-gradient(135deg, var(--green-800), var(--green-500));
}

.compact-hero {
  padding: 74px 20px;
}

.compact-hero > div {
  max-width: var(--max-width);
  margin: 0 auto;
}

.compact-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 58px);
  letter-spacing: -0.05em;
}

.compact-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

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

.category-card {
  border-radius: var(--radius-lg);
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.category-covers img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  object-fit: cover;
  background: var(--green-50);
  transition: transform 0.3s ease;
}

.category-card span {
  color: var(--green-700);
  font-weight: 800;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--green-700);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pagination .current {
  color: var(--white);
  background: var(--green-600);
}

.ranking-layout {
  max-width: 860px;
}

.rank-list.large .rank-row {
  grid-template-columns: 56px 96px 1fr 64px;
  min-height: 96px;
}

.rank-list.large .rank-row img {
  width: 96px;
  height: 66px;
}

.search-hero .page-search-form {
  max-width: 720px;
  margin-top: 28px;
  margin-bottom: 0;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 80px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--gray-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-hero {
  position: relative;
  min-height: 560px;
  color: var(--white);
  overflow: hidden;
  background: var(--gray-950);
}

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

.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: blur(8px) saturate(1.08);
}

.detail-bg-mask {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(6, 78, 59, 0.76), rgba(6, 78, 59, 0.32)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.88));
}

.detail-shell {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 84px 20px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 42px;
  align-items: center;
}

.detail-poster {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-900);
}

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

.detail-info h1 {
  margin: 22px 0 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

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

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gray-950);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 36%, rgba(16, 185, 129, 0.34), transparent 26%),
    rgba(2, 6, 23, 0.56);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.big-play {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(255, 255, 255, 0.25);
  font-size: 32px;
}

.player-overlay strong {
  font-size: 24px;
}

.player-overlay em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
}

.detail-main,
.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.content-card {
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.content-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.95;
}

.info-card dl {
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 14px;
}

.info-card dt {
  color: var(--gray-500);
}

.info-card dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 700;
}

.related-section {
  padding-top: 10px;
}

.movie-card.compact .card-body p {
  -webkit-line-clamp: 1;
}

.site-footer {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 46px 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
}

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

.site-footer p {
  margin: 0;
  line-height: 1.8;
}

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

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-size: 14px;
}

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

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

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

  .two-column-section,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-shell {
    grid-template-columns: 260px 1fr;
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .nav-shell {
    min-height: 64px;
  }

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

  .hero-carousel,
  .hero-content {
    min-height: 590px;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .quick-panel {
    margin-top: -42px;
    border-radius: 22px;
  }

  .hero-search,
  .page-search-form,
  .section-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-links,
  .movie-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-card {
    grid-template-columns: 118px 1fr;
  }

  .rank-row,
  .rank-list.large .rank-row {
    grid-template-columns: 42px 74px 1fr 44px;
  }

  .rank-list.large .rank-row img {
    width: 74px;
    height: 52px;
  }

  .detail-shell {
    grid-template-columns: 1fr;
    padding-top: 58px;
    gap: 24px;
  }

  .detail-poster {
    width: min(260px, 80vw);
  }

  .content-card {
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .hero-control {
    bottom: 22px;
  }

  .hero-dot {
    width: 30px;
  }

  .hero-dot.active {
    width: 50px;
  }

  .quick-panel,
  .content-section,
  .detail-content,
  .player-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .compact-hero {
    padding: 56px 14px;
  }
}
