:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.78);
  --bg-card-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(51, 65, 85, 0.72);
  --line-soft: rgba(51, 65, 85, 0.42);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --teal: #14b8a6;
  --teal-light: #5eead4;
  --cyan: #67e8f9;
  --amber: #fbbf24;
  --danger: #fb7185;
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.48);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 4%, rgba(20, 184, 166, 0.16), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(103, 232, 249, 0.12), transparent 25%),
    linear-gradient(180deg, #020617 0%, #07111f 38%, #020617 100%);
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.93), rgba(15, 23, 42, 0.95));
  backdrop-filter: blur(16px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(94, 234, 212, 0.48);
  border-radius: 999px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.12);
  box-shadow: 0 0 32px rgba(20, 184, 166, 0.26);
}

.logo-text,
.footer-logo span:last-child {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--teal-light), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.site-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
}

.site-search-form input,
.filter-form input,
.filter-form select {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search-form input {
  padding: 10px 14px;
}

.site-search-form button,
.filter-form button,
.primary-button,
.secondary-button,
.rank-action {
  border: 0;
  border-radius: 999px;
  color: #00110f;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal-light), var(--cyan));
  box-shadow: 0 12px 36px rgba(20, 184, 166, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.site-search-form button {
  padding: 10px 16px;
}

.site-search-form input:focus,
.filter-form input:focus,
.filter-form select:focus {
  border-color: rgba(94, 234, 212, 0.85);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
  background: rgba(15, 23, 42, 0.96);
}

.site-search-form button:hover,
.filter-form button:hover,
.primary-button:hover,
.secondary-button:hover,
.rank-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(20, 184, 166, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: rgba(2, 6, 23, 0.96);
}

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

.mobile-panel-inner {
  display: grid;
  gap: 14px;
  padding: 18px 0 22px;
}

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: #cbd5e1;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.62);
}

.mobile-search {
  min-width: 0;
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #020617;
}

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

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

.hero-bg,
.detail-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  filter: saturate(1.05);
}

.hero-overlay,
.detail-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.38) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.22) 36%, rgba(2, 6, 23, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 330px;
  gap: 56px;
  align-items: end;
  min-height: 680px;
  padding: 110px 0 80px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero-copy h1 {
  max-width: 880px;
  font-size: clamp(40px, 7vw, 78px);
}

.hero-copy h2 {
  margin-top: 12px;
  font-size: clamp(34px, 6vw, 70px);
}

.hero-summary,
.page-hero p,
.detail-one-line {
  max-width: 720px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.85;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.secondary-button {
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.6);
  box-shadow: none;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: var(--shadow);
}

.hero-poster img,
.detail-poster img,
.poster-link img,
.category-cover img,
.rank-cover img,
.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span,
.detail-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #00110f;
  background: linear-gradient(135deg, var(--teal-light), var(--cyan));
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.42);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  border-color: rgba(94, 234, 212, 0.6);
  background: rgba(15, 23, 42, 0.85);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.28);
  cursor: pointer;
}

.hero-dot.active {
  background: linear-gradient(90deg, var(--teal-light), var(--cyan));
}

.section-block {
  padding: 72px 0;
}

.soft-panel {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.34), rgba(2, 6, 23, 0));
}

.rank-panel {
  background: radial-gradient(circle at 20% 0%, rgba(20, 184, 166, 0.1), transparent 28%);
}

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

.section-heading h2,
.filter-panel h2,
.prose-card h2,
.side-card h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.section-link {
  color: var(--teal-light);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 234, 212, 0.38);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.42);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f172a;
}

.poster-link img {
  transition: transform 0.4s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 45%, rgba(2, 6, 23, 0.78) 100%);
}

.year-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(94, 234, 212, 0.28);
  border-radius: 999px;
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 900;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(8px);
}

.play-mark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #00110f;
  background: linear-gradient(135deg, var(--teal-light), var(--cyan));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.movie-card-body {
  padding: 17px 16px 18px;
}

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

.movie-card-body h2 a:hover,
.rank-content h2 a:hover,
.category-card-body h2 a:hover {
  color: var(--teal-light);
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.movie-card-body p,
.category-card-body p,
.rank-content p,
.footer-brand p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-list span {
  padding: 5px 9px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 999px;
  color: var(--teal-light);
  font-size: 12px;
  background: rgba(20, 184, 166, 0.08);
}

.horizontal-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.horizontal-row::-webkit-scrollbar {
  display: none;
}

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

.category-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
}

.category-cover {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
}

.category-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.85));
}

.category-cover span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-size: 22px;
  font-weight: 900;
}

.category-card-body {
  padding: 18px;
}

.category-card-body h2 {
  margin: 0;
  font-size: 21px;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-samples a {
  padding: 6px 10px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.9);
}

.category-samples a:hover {
  color: var(--teal-light);
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 74px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 20% 0%, rgba(20, 184, 166, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 1));
}

.compact-hero h1,
.category-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 76px);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.74);
}

.filter-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.filter-form {
  display: grid;
  grid-template-columns: minmax(160px, 1.4fr) minmax(120px, 0.75fr) minmax(120px, 0.75fr) auto;
  gap: 12px;
}

.filter-form input,
.filter-form select {
  min-height: 46px;
  padding: 0 14px;
}

.filter-form button {
  min-height: 46px;
  padding: 0 20px;
}

.empty-state {
  display: none;
  margin-top: 24px;
  padding: 28px;
  border: 1px dashed rgba(148, 163, 184, 0.32);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

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

.rank-list {
  display: grid;
  gap: 16px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 84px 48px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.72);
}

.rank-cover {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: #0f172a;
}

.rank-number {
  color: var(--teal-light);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.rank-content h2 {
  margin: 0;
  font-size: 19px;
}

.rank-content p {
  margin-top: 7px;
}

.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 38px;
  color: #00110f;
}

.detail-hero {
  min-height: 640px;
  padding: 100px 0 70px;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--teal-light);
}

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

.detail-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(94, 234, 212, 0.25);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.large-tags span {
  padding: 7px 11px;
  font-size: 13px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle at center, rgba(20, 184, 166, 0.2), rgba(2, 6, 23, 0.48));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: #00110f;
  font-size: 36px;
  background: linear-gradient(135deg, var(--teal-light), var(--cyan));
  box-shadow: 0 22px 60px rgba(20, 184, 166, 0.36);
}

.play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

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

.prose-card,
.side-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.24);
}

.prose-card {
  padding: 30px;
}

.prose-card p {
  margin: 16px 0 28px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 2;
}

.side-card {
  align-self: start;
  padding: 24px;
}

.movie-info-list {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px 16px;
  margin: 22px 0 0;
}

.movie-info-list dt {
  color: var(--muted-2);
}

.movie-info-list dd {
  margin: 0;
  color: var(--text);
}

.mini-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.62);
}

.mini-card img {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  background: #0f172a;
}

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45), rgba(2, 6, 23, 1));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 46px;
  padding: 50px 0 34px;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

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

.footer-bottom {
  padding: 20px 0 30px;
  border-top: 1px solid rgba(51, 65, 85, 0.32);
  color: var(--muted-2);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

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

  .nav-toggle {
    display: block;
  }

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

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

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

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

@media (max-width: 820px) {
  .hero-slider,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: end;
    padding: 90px 0 72px;
  }

  .hero-poster {
    display: none;
  }

  .hero-arrow {
    display: none;
  }

  .section-heading,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .filter-form {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .logo-text {
    font-size: 20px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .compact-hero h1,
  .category-hero h1,
  .detail-copy h1 {
    font-size: 38px;
  }

  .hero-summary,
  .page-hero p,
  .detail-one-line {
    font-size: 16px;
  }

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

  .movie-grid,
  .featured-grid,
  .related-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 70px 40px minmax(0, 1fr);
  }

  .rank-action {
    grid-column: 3;
    width: max-content;
  }

  .play-overlay span {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .prose-card,
  .side-card {
    padding: 22px;
  }
}
