:root {
  --stellar-dark: #0a0e27;
  --stellar-deep: #141b3d;
  --stellar-mid: #1e2847;
  --stellar-light: #2a3857;
  --stellar-glow: #4a90e2;
  --stellar-sky: #38bdf8;
  --text-main: #ffffff;
  --text-soft: #d7deee;
  --text-muted: #96a1bb;
  --card-border: rgba(42, 56, 87, 0.55);
  --shadow-glow: 0 0 26px rgba(74, 144, 226, 0.32);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(74, 144, 226, 0.24), transparent 30rem),
    linear-gradient(180deg, var(--stellar-dark), var(--stellar-deep));
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 1px solid rgba(42, 56, 87, 0.42);
  backdrop-filter: blur(16px);
}

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

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

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--stellar-glow), var(--stellar-sky));
  box-shadow: var(--shadow-glow);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link,
.mobile-nav-link {
  color: var(--text-soft);
  font-weight: 600;
  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(--stellar-sky);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
}

.site-search input {
  width: 260px;
  height: 42px;
  padding: 0 48px 0 16px;
  color: #ffffff;
  border: 1px solid rgba(42, 56, 87, 0.8);
  border-radius: 14px;
  background: rgba(30, 40, 71, 0.78);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.site-search input:focus {
  border-color: var(--stellar-glow);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.18);
}

.site-search button {
  position: absolute;
  right: 6px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: var(--stellar-glow);
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(30, 40, 71, 0.9);
  cursor: pointer;
}

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

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

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(30, 40, 71, 0.66);
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #000000;
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 39, 0.92), rgba(10, 14, 39, 0.46) 48%, rgba(10, 14, 39, 0.18)),
    linear-gradient(0deg, var(--stellar-dark), transparent 46%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 76px;
  width: min(720px, calc(100% - 48px));
}

.hero-kicker,
.detail-tags,
.card-tags,
.hero-actions,
.center-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-kicker span,
.card-tags span,
.detail-tags span,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #ffffff;
  border: 1px solid rgba(74, 144, 226, 0.42);
  border-radius: 999px;
  background: rgba(74, 144, 226, 0.22);
}

.hero h1,
.hero h2,
.page-hero h1,
.detail-copy h1 {
  margin: 14px 0 0;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 64px);
}

.hero h2 {
  font-size: clamp(28px, 4vw, 52px);
}

.hero p,
.page-hero p,
.section-heading p,
.category-overview-copy p,
.detail-one-line,
.content-card p,
.footer-brand p {
  color: var(--text-soft);
}

.hero p {
  max-width: 660px;
  margin: 18px 0 26px;
  font-size: clamp(16px, 2vw, 20px);
}

.primary-button,
.ghost-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: var(--stellar-glow);
  box-shadow: var(--shadow-glow);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(74, 144, 226, 0.5);
  background: rgba(30, 40, 71, 0.68);
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

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

.hero-dot.is-active {
  width: 34px;
  background: var(--stellar-glow);
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: var(--stellar-dark);
}

.section-deep {
  background: var(--stellar-deep);
}

.section-gradient {
  background: linear-gradient(180deg, var(--stellar-dark), var(--stellar-deep));
}

.section-gradient.reverse {
  background: linear-gradient(180deg, var(--stellar-deep), var(--stellar-dark));
}

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

.section-heading,
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.section-heading {
  justify-content: flex-start;
}

.section-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(74, 144, 226, 0.22);
  box-shadow: inset 0 0 0 1px rgba(74, 144, 226, 0.28);
}

.section-heading h2,
.panel-heading h2,
.content-card h2,
.footer-links h2 {
  margin: 0;
  color: #ffffff;
  line-height: 1.15;
}

.section-heading h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section-heading p {
  margin: 6px 0 0;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

.rank-grid {
  margin-bottom: 56px;
}

.movie-card {
  min-width: 0;
  border: 1px solid var(--card-border);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(20, 27, 61, 0.74);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 144, 226, 0.72);
  box-shadow: var(--shadow-card);
}

.movie-card-link {
  display: block;
  height: 100%;
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--stellar-mid);
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.poster-badge,
.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.62);
}

.poster-badge {
  left: 12px;
  top: 12px;
  background: rgba(74, 144, 226, 0.9);
}

.poster-year {
  right: 12px;
  top: 12px;
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  min-width: 34px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

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

.movie-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card p {
  margin: 0 0 12px;
  min-height: 46px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-tags span {
  min-height: 22px;
  padding: 2px 8px;
  color: var(--text-soft);
  font-size: 12px;
  background: rgba(42, 56, 87, 0.42);
}

.movie-rail {
  display: flex;
  gap: 18px;
  padding-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--stellar-glow) var(--stellar-mid);
}

.rail-item {
  width: 210px;
  flex: 0 0 auto;
}

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

.rank-panel,
.content-card,
.category-overview-card,
.filter-bar,
.detail-panel {
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: rgba(20, 27, 61, 0.78);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.rank-panel {
  position: sticky;
  top: 90px;
  padding: 20px;
}

.panel-heading a,
.text-link {
  color: var(--stellar-sky);
  font-weight: 800;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 54px minmax(0, 1fr);
  grid-template-areas:
    "num img title"
    "num img meta";
  gap: 2px 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  background: rgba(10, 14, 39, 0.55);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: rgba(74, 144, 226, 0.16);
  transform: translateX(4px);
}

.rank-number {
  grid-area: num;
  color: var(--stellar-sky);
  font-weight: 900;
}

.rank-row img {
  grid-area: img;
  width: 54px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-title {
  grid-area: title;
  color: #ffffff;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.category-tile {
  position: relative;
  min-height: 230px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: rgba(20, 27, 61, 0.7);
  transition: transform 0.2s ease, border 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 144, 226, 0.72);
}

.tile-images {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  opacity: 0.32;
}

.tile-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 194px;
  flex-direction: column;
  justify-content: flex-end;
}

.tile-copy span {
  width: fit-content;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(74, 144, 226, 0.9);
}

.tile-copy h3 {
  margin: 12px 0 8px;
  font-size: 24px;
}

.tile-copy p {
  margin: 0;
  color: var(--text-soft);
}

.center-actions {
  justify-content: center;
  margin-top: 34px;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(74, 144, 226, 0.22), transparent 25rem),
    linear-gradient(180deg, var(--stellar-deep), var(--stellar-dark));
}

.compact-hero {
  padding: 72px 0 46px;
}

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

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(32px, 5vw, 58px);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 18px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 290px;
  overflow: hidden;
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--stellar-mid);
}

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

.category-overview-copy {
  padding: 24px;
}

.category-overview-copy h2 {
  margin: 0 0 10px;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.category-samples a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-soft);
}

.category-samples a:hover {
  color: var(--stellar-sky);
}

.category-samples span {
  color: var(--text-muted);
  font-size: 13px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 220px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
}

.filter-field input,
.filter-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: #ffffff;
  border: 1px solid rgba(42, 56, 87, 0.75);
  border-radius: 14px;
  background: rgba(10, 14, 39, 0.72);
  outline: none;
}

.detail-main {
  padding: 26px 0 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--stellar-sky);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 26px;
  background: #000000;
  box-shadow: var(--shadow-card);
}

.movie-player {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  background: #000000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.18), rgba(10, 14, 39, 0.72));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  background: var(--stellar-glow);
  box-shadow: var(--shadow-glow);
}

.play-text {
  font-size: 18px;
  font-weight: 900;
}

.detail-panel {
  overflow: hidden;
}

.detail-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--stellar-mid);
}

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

.detail-copy {
  padding: 24px;
}

.detail-copy h1 {
  font-size: clamp(28px, 4vw, 44px);
}

.detail-one-line {
  margin: 16px 0;
}

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

.meta-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
}

.meta-list dt {
  color: var(--text-muted);
}

.meta-list dd {
  margin: 0;
  color: #ffffff;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.content-card {
  padding: 26px;
}

.content-card p {
  margin: 14px 0 0;
  font-size: 17px;
}

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

.narrow-inner {
  width: 100%;
}

.search-summary {
  margin-bottom: 22px;
  color: var(--text-soft);
  font-size: 18px;
}

.hero-search {
  width: min(640px, 100%);
  margin-top: 24px;
}

.hero-search input {
  width: 100%;
  height: 54px;
  padding-right: 120px;
}

.hero-search button {
  width: 104px;
  height: 44px;
  right: 5px;
}

.rank-channel {
  margin-top: 46px;
}

.site-footer {
  border-top: 1px solid rgba(42, 56, 87, 0.45);
  background: var(--stellar-deep);
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
}

.footer-links h2 {
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-link-grid a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(10, 14, 39, 0.5);
}

.footer-link-grid a:hover {
  color: #ffffff;
  background: rgba(74, 144, 226, 0.24);
}

.footer-bottom {
  padding: 18px;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid rgba(42, 56, 87, 0.42);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--stellar-glow);
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

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

  .split-layout,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-nav,
  .header-tools > .site-search {
    display: none;
  }

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

  .mobile-search {
    display: flex;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    bottom: 64px;
  }

  .hero-arrow {
    display: none;
  }

  .featured-grid,
  .compact-grid,
  .library-grid,
  .category-grid,
  .category-overview-grid,
  .detail-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .category-cover {
    min-height: 220px;
  }

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

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

@media (max-width: 560px) {
  .site-header-inner,
  .mobile-panel,
  .section-inner,
  .page-hero-inner,
  .detail-main,
  .breadcrumb {
    width: min(100% - 24px, 1180px);
  }

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

  .hero {
    height: 78vh;
    min-height: 560px;
  }

  .hero-content {
    left: 16px;
    width: calc(100% - 32px);
  }

  .section {
    padding: 52px 0;
  }

  .featured-grid,
  .compact-grid,
  .library-grid,
  .category-grid,
  .category-overview-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .rail-item {
    width: 180px;
  }

  .player-shell,
  .movie-player {
    min-height: 260px;
  }

  .detail-copy,
  .content-card {
    padding: 20px;
  }
}
