:root {
  --forest-50: #f5f7f5;
  --forest-100: #e8ede7;
  --forest-500: #5f7e56;
  --forest-600: #4a6644;
  --forest-700: #3c5238;
  --forest-800: #32432f;
  --earth-100: #f2eee5;
  --earth-200: #ddd8ca;
  --earth-300: #c5bcaa;
  --earth-400: #aa9b85;
  --earth-900: #423a32;
  --deer-500: #a88558;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --white: #ffffff;
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--forest-50), #ffffff 48%, #ffffff);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--forest-800);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 12px;
  background: var(--forest-600);
  box-shadow: var(--shadow-soft);
}

.brand-text {
  white-space: nowrap;
  font-size: 20px;
}

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

.nav-link,
.mobile-link {
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
}

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

.header-search,
.hero-search-box,
.mobile-search {
  position: relative;
}

.header-search input,
.hero-search-box input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.hero-search-box input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--forest-600);
  box-shadow: 0 0 0 4px rgba(74, 102, 68, 0.12);
}

.header-search {
  width: 260px;
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-hover);
}

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

.search-result {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result img {
  width: 44px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--earth-100);
}

.search-result strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  color: var(--ink);
}

.search-result span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #374151;
  border-radius: 99px;
}

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

.mobile-link {
  display: block;
  border-radius: 12px;
  padding: 10px 12px;
}

.mobile-link.is-active {
  background: var(--forest-50);
}

.mobile-search {
  margin-top: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 0;
  min-height: 640px;
  border-radius: 32px;
  background: radial-gradient(circle at top left, rgba(168, 133, 88, 0.38), transparent 36%), linear-gradient(135deg, var(--forest-800), var(--forest-600));
  box-shadow: var(--shadow-hover);
}

.hero-glow {
  position: absolute;
  inset: auto -10% -42% 42%;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 62%);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  min-height: 460px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 44px;
  padding: 64px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(50, 67, 47, 0.96), rgba(50, 67, 47, 0.76), rgba(50, 67, 47, 0.44)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.03);
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--earth-200);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-summary {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--forest-100);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--forest-700);
  background: var(--forest-50);
  font-size: 13px;
  font-weight: 600;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

.primary-button {
  color: #ffffff;
  background: var(--forest-600);
  box-shadow: var(--shadow-soft);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--forest-700);
  box-shadow: var(--shadow-hover);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-poster {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(74, 102, 68, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-hover);
}

.hero-controls {
  position: absolute;
  left: 64px;
  bottom: 150px;
  z-index: 5;
  display: flex;
  gap: 9px;
}

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

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

.hero-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 18px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.36);
  backdrop-filter: blur(20px);
}

.hero-search-block strong,
.hero-hot-list strong {
  display: block;
  margin-bottom: 12px;
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-category-links a {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--forest-100);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.hero-hot-list {
  display: grid;
  gap: 8px;
}

.ranking-row {
  display: grid;
  grid-template-columns: auto 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-radius: 14px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.ranking-row:hover {
  background: rgba(255, 255, 255, 0.18);
}

.ranking-row img {
  width: 42px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
}

.ranking-row strong,
.ranking-row em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-row strong {
  color: #ffffff;
  font-size: 14px;
}

.ranking-row em {
  color: var(--earth-300);
  font-size: 12px;
  font-style: normal;
}

.small-rank {
  color: var(--earth-200);
  font-family: Georgia, serif;
  font-weight: 700;
}

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

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

.section-heading h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section-more {
  color: var(--forest-700);
  background: var(--forest-50);
}

.section-more:hover {
  color: #ffffff;
  background: var(--forest-600);
}

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--earth-100);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.25s ease;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  opacity: 0;
  background: rgba(74, 102, 68, 0.92);
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-shade,
.movie-card:hover .play-mark {
  opacity: 1;
}

.movie-card:hover .play-mark {
  transform: translate(-50%, -50%) scale(1);
}

.type-badge,
.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 8px;
  padding: 4px 8px;
  color: #ffffff;
  background: var(--forest-600);
  font-size: 12px;
  font-weight: 700;
}

.rank-badge {
  min-width: 34px;
  text-align: center;
  background: var(--deer-500);
}

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

.movie-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
}

.movie-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card h3 a:hover {
  color: var(--forest-600);
}

.movie-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.movie-line {
  display: -webkit-box;
  overflow: hidden;
  min-height: 40px;
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.category-card,
.category-overview-card {
  display: block;
  min-height: 140px;
  border: 1px solid rgba(74, 102, 68, 0.12);
  border-radius: 22px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 102, 68, 0.36);
  box-shadow: var(--shadow-hover);
}

.category-card span,
.category-overview-card h2 {
  display: block;
  margin: 0 0 10px;
  color: var(--forest-700);
  font-size: 20px;
  font-weight: 800;
}

.category-card strong,
.category-overview-card p {
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
}

.category-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: var(--forest-600);
  font-weight: 800;
}

.category-overview-card em {
  display: inline-flex;
  margin-top: 14px;
  color: var(--deer-500);
  font-style: normal;
  font-weight: 700;
}

.page-hero {
  color: #ffffff;
  background: radial-gradient(circle at 18% 10%, rgba(168, 133, 88, 0.34), transparent 32%), linear-gradient(135deg, var(--forest-800), var(--forest-600));
}

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

.page-hero p {
  max-width: 760px;
  color: var(--forest-100);
  font-size: 18px;
}

.category-hero {
  padding: 58px 0;
}

.category-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.filter-section {
  margin-top: 42px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 24px;
  border-radius: 22px;
  padding: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

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

.rank-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  border-radius: 22px;
  padding: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rank-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

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

.rank-cover span {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 10px;
  padding: 5px 9px;
  color: #ffffff;
  background: var(--deer-500);
  font-family: Georgia, serif;
  font-weight: 800;
}

.rank-card h2 {
  margin: 4px 0 8px;
  font-size: 24px;
}

.rank-card h2 a:hover {
  color: var(--forest-600);
}

.rank-card p {
  color: #4b5563;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding-top: 32px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--forest-600);
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: var(--shadow-hover);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  color: #ffffff;
  background: #000000;
  cursor: pointer;
}

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

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

.player-cover-bg {
  background-position: center;
  background-size: cover;
  filter: blur(8px) saturate(1.05);
  transform: scale(1.04);
}

.player-cover-mask {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.76), rgba(17, 24, 39, 0.48));
}

.player-button {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  margin: auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(74, 102, 68, 0.92);
  box-shadow: var(--shadow-hover);
  font-size: 28px;
}

.player-state {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  min-height: 1px;
  color: #ffffff;
  font-size: 14px;
}

.detail-card,
.side-card {
  margin-top: 22px;
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-card h1 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.08;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: #4b5563;
  font-size: 14px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--forest-50);
}

.detail-card section {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
}

.detail-card p {
  color: #374151;
  line-height: 1.9;
}

.lead-text {
  font-weight: 700;
}

.detail-side {
  position: relative;
}

.detail-side .side-card {
  position: sticky;
  top: 86px;
}

.poster-side img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 16px;
}

.poster-side .primary-button {
  width: 100%;
}

.related-section {
  width: auto;
  margin-top: 34px;
}

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

.site-footer {
  margin-top: 80px;
  color: var(--earth-300);
  background: var(--earth-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0 34px;
}

.footer-brand {
  color: #ffffff;
}

.site-footer p {
  max-width: 520px;
  color: var(--earth-300);
}

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

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

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(221, 216, 202, 0.16);
  padding: 22px 0;
  color: var(--earth-400);
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

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

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

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

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-controls {
    bottom: 260px;
  }
}

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

  .menu-button {
    display: block;
    margin-left: auto;
  }

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

  .hero {
    min-height: 820px;
  }

  .hero-slider {
    min-height: 590px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 34px;
  }

  .hero-poster {
    width: min(260px, 70vw);
    margin: 8px auto 0;
  }

  .hero-controls {
    left: 34px;
    bottom: 260px;
  }

  .hero-panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

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

  .detail-side .side-card {
    position: static;
  }

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

@media (max-width: 700px) {
  .container,
  .content-section,
  .hero,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

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

  .hero {
    margin-top: 18px;
    border-radius: 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-slide {
    padding: 24px;
  }

  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .rank-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .rank-card h2 {
    font-size: 18px;
  }

  .category-hero-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-card,
  .side-card {
    padding: 18px;
  }
}
