* {
  box-sizing: border-box;
}

:root {
  --forest-50: #f5f7f5;
  --forest-100: #e8ede7;
  --forest-400: #84a380;
  --forest-600: #4a6644;
  --forest-700: #3c5238;
  --forest-800: #32432f;
  --earth-200: #ddd8ca;
  --earth-300: #c5bcaa;
  --earth-400: #aa9b85;
  --earth-800: #4e443a;
  --earth-900: #423a32;
  --deer-500: #c68b46;
  --amber-500: #f59e0b;
  --text-900: #111827;
  --text-700: #374151;
  --text-600: #4b5563;
  --text-500: #6b7280;
  --line: #e5e7eb;
  --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);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-900);
  background: linear-gradient(180deg, var(--forest-50) 0%, #ffffff 46%, #ffffff 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.88);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--forest-800);
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: var(--forest-600);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.nav-link {
  color: var(--text-700);
  transition: color 180ms ease;
}

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

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--forest-50);
  color: var(--forest-800);
}

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

.mobile-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--text-700);
  border-radius: 10px;
}

.mobile-nav a:hover {
  background: var(--forest-50);
  color: var(--forest-600);
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
  background: var(--earth-900);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) brightness(0.62);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 39, 30, 0.96) 0%, rgba(34, 39, 30, 0.74) 42%, rgba(34, 39, 30, 0.28) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 42%);
}

.hero-content {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.hero-kicker,
.sub-hero span,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(74, 102, 68, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.hero-tags span,
.tag-list a {
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest-600), var(--forest-700));
  box-shadow: 0 18px 34px rgba(74, 102, 68, 0.28);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-poster {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  aspect-ratio: 3 / 4;
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

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

.home-search-block {
  margin-top: -44px;
  position: relative;
  z-index: 10;
}

.home-search-inner {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(14px);
}

.home-search-form,
.inline-filter,
.search-line {
  display: flex;
  gap: 12px;
}

.home-search-form input,
.inline-filter input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text-900);
  background: #ffffff;
  outline: none;
}

.home-search-form input:focus,
.inline-filter input:focus {
  border-color: var(--forest-600);
  box-shadow: 0 0 0 4px rgba(74, 102, 68, 0.12);
}

.home-search-form button,
.clear-filter {
  min-width: 96px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: var(--forest-600);
  font-weight: 700;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-quick-links a {
  padding: 8px 12px;
  color: var(--forest-700);
  background: var(--forest-50);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.category-overview,
.content-section,
.rank-strip,
.page-block,
.detail-layout,
.related-section,
.info-grid {
  margin-top: 64px;
}

.section-stack {
  display: grid;
  gap: 72px;
  margin-top: 72px;
}

.section-heading h2,
.rank-strip h2,
.toolbar-copy h2,
.detail-content h2,
.detail-side h2 {
  margin: 0 0 8px;
  color: var(--text-900);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading p,
.rank-strip p,
.toolbar-copy p {
  margin: 0;
  color: var(--text-600);
}

.heading-line {
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--forest-600), var(--deer-500));
}

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

.more-link {
  color: var(--forest-600);
  font-size: 14px;
  font-weight: 700;
}

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

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

.category-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.category-card span {
  align-self: flex-start;
  padding: 5px 10px;
  color: #ffffff;
  background: var(--forest-600);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.category-card strong {
  margin-top: 18px;
  color: var(--forest-800);
  font-size: 24px;
  line-height: 1.2;
}

.category-card p {
  margin: 14px 0 0;
  color: var(--text-600);
  font-size: 14px;
}

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

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

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

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--forest-50);
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.055);
}

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64));
  opacity: 0;
  transition: opacity 180ms ease;
}

.movie-card:hover .poster-wrap::after {
  opacity: 1;
}

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

.rank-number {
  left: auto;
  right: 10px;
  background: var(--amber-500);
}

.poster-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 44px;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: scale(1);
}

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

.movie-card-body h3 {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--text-900);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 180ms ease;
}

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

.movie-card-body p {
  display: -webkit-box;
  min-height: 38px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--text-600);
  font-size: 13px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-500);
  font-size: 12px;
}

.rank-strip {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  padding: 30px;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest-700), var(--earth-900));
  box-shadow: var(--shadow-hover);
}

.rank-strip h2,
.rank-strip p {
  color: #ffffff;
}

.rank-strip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rank-strip-list a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.rank-strip-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--deer-500);
  font-weight: 800;
}

.rank-strip-list strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-strip-list em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
}

.sub-hero {
  padding: 82px 0;
  color: #ffffff;
  background: radial-gradient(circle at 24% 20%, rgba(198, 139, 70, 0.32), transparent 30%), linear-gradient(135deg, var(--forest-700), var(--earth-900));
}

.sub-hero h1 {
  max-width: 850px;
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.sub-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.page-toolbar {
  padding: 40px 0 0;
}

.toolbar-copy {
  margin-bottom: 22px;
}

.inline-filter {
  margin-bottom: 28px;
}

.clear-filter {
  background: var(--earth-900);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.rank-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.rank-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--forest-600);
  font-weight: 800;
}

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

.rank-info {
  min-width: 0;
}

.rank-info strong {
  display: block;
  overflow: hidden;
  color: var(--text-900);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em {
  color: var(--text-500);
  font-style: normal;
  font-size: 13px;
}

.rank-tag {
  max-width: 280px;
  overflow: hidden;
  color: var(--forest-600);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--earth-900);
}

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

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.46);
  transform: scale(1.08);
}

.detail-mask {
  background: linear-gradient(90deg, rgba(28, 33, 26, 0.96), rgba(28, 33, 26, 0.68));
}

.detail-head {
  position: relative;
  padding: 48px 0 60px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.detail-intro {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  width: 240px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-hover);
}

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

.detail-intro p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

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

.detail-main,
.detail-side,
.info-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.player-card {
  padding: 18px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
  transition: opacity 180ms ease;
}

.player-overlay span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(74, 102, 68, 0.92);
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

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

.detail-content {
  padding: 10px 28px 32px;
}

.detail-content p {
  margin: 0 0 28px;
  color: var(--text-700);
  font-size: 16px;
}

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

.detail-side dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.detail-side div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-side dt {
  color: var(--text-500);
  font-size: 13px;
}

.detail-side dd {
  margin: 4px 0 0;
  color: var(--text-900);
  font-weight: 700;
}

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

.info-card {
  padding: 28px;
}

.info-card h2 {
  margin: 0 0 12px;
  color: var(--forest-800);
}

.info-card p {
  margin: 0;
  color: var(--text-700);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 36px;
  padding: 46px 0 34px;
}

.footer-logo {
  color: #ffffff;
}

.footer-brand p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--earth-300);
  font-size: 14px;
}

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

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: var(--earth-300);
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--earth-800);
  color: var(--earth-400);
  font-size: 14px;
}

.is-hidden-by-filter {
  display: none !important;
}

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

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

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

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

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

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
  }

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

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .hero-poster {
    width: min(260px, 76vw);
  }

  .hero-control {
    display: none;
  }

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

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

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

  .detail-poster {
    width: min(220px, 60vw);
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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

  .home-search-form,
  .inline-filter,
  .search-line,
  .section-topline {
    flex-direction: column;
  }

  .home-search-form button,
  .clear-filter {
    width: 100%;
  }

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

  .rank-tag {
    grid-column: 3;
    max-width: 100%;
  }

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

  .movie-card-body h3 {
    font-size: 14px;
  }

  .sub-hero {
    padding: 56px 0;
  }

  .detail-head {
    padding-top: 34px;
  }
}
