:root {
  --color-primary: #005bb3;
  --color-primary-dark: #003f7d;
  --color-secondary: #0284c7;
  --color-accent: #f59e0b;
  --color-bg: #fafafa;
  --color-text: #171717;
  --color-muted: #737373;
  --color-line: #e5e5e5;
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-card: 18px;
  --radius-small: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(18px);
}

.nav-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 10px 24px rgba(0, 91, 179, 0.25);
}

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #404040;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--color-primary);
  background: #e6f1ff;
}

.header-search,
.mobile-search,
.large-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-bar input,
.filter-bar select {
  height: 42px;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--color-text);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 91, 179, 0.12);
}

.header-search button,
.mobile-search button,
.large-search button,
.filter-bar button {
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--color-primary);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.large-search button:hover,
.filter-bar button:hover,
.primary-button:hover {
  transform: translateY(-1px);
  background: var(--color-primary-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--color-line);
  background: #ffffff;
}

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

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

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #171717;
}

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

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

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.05));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
  color: #ffffff;
  animation: fadeIn 0.55s ease both;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0 0 24px;
  max-width: 620px;
  color: #e5e5e5;
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #525252;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 14px 30px rgba(0, 91, 179, 0.25);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.ghost-button:not(.light) {
  color: #ffffff;
}

.ghost-button.light {
  color: #ffffff;
}

.ghost-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.42);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

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

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

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

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

.compact-heading {
  align-items: center;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.text-link {
  color: var(--color-primary);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
}

.intro-search-card,
.panel-card,
.content-card,
.table-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.intro-search-card {
  margin-top: -46px;
  position: relative;
  z-index: 8;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: center;
  gap: 24px;
}

.intro-search-card p,
.page-hero p,
.content-card p,
.spotlight-card p,
.movie-card p {
  color: var(--color-muted);
  line-height: 1.75;
}

.large-search input {
  flex: 1;
  height: 52px;
  min-width: 0;
}

.large-search button {
  height: 52px;
  padding: 0 26px;
}

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

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

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 91, 179, 0.3);
  box-shadow: var(--shadow-card);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #171717, #404040);
}

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

.movie-card:hover img {
  transform: scale(1.05);
}

.poster-badge,
.poster-play {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px);
}

.poster-badge {
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.poster-play {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: rgba(0, 91, 179, 0.82);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.card-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

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

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

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

.compact-card h3 {
  font-size: 17px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
}

.panel-card {
  padding: 24px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 48px 72px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.rank-item:hover {
  background: #f5faff;
}

.rank-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--color-primary);
  background: #e6f1ff;
  font-weight: 900;
}

.rank-item img {
  width: 72px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

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

.rank-copy em {
  color: var(--color-muted);
  font-size: 13px;
  font-style: normal;
}

.spotlight-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #111827;
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  opacity: 0.56;
}

.spotlight-card > div {
  position: absolute;
  inset: auto 0 0;
  padding: 34px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.spotlight-card h2 {
  margin: 0 0 12px;
  font-size: 34px;
  letter-spacing: -0.03em;
}

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

.category-tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius-card);
  color: #ffffff;
  box-shadow: var(--shadow-card);
  background: #111827;
}

.category-tile img,
.category-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-tile img {
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-layer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.82));
}

.category-tile strong,
.category-tile em,
.category-tile p {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 2;
}

.category-tile strong {
  bottom: 76px;
  font-size: 24px;
}

.category-tile em {
  bottom: 52px;
  color: #d4d4d4;
  font-style: normal;
}

.category-tile p {
  bottom: 16px;
  margin: 0;
  color: #f5f5f5;
  font-size: 13px;
  line-height: 1.5;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #111827;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.compact-page-hero {
  min-height: 300px;
  background: linear-gradient(135deg, #002f66, #0284c7);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34));
}

.page-hero-content,
.compact-page-hero .container-custom {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0;
  color: #f5f5f5;
  font-size: 17px;
}

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

.category-overview-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 160px;
  overflow: hidden;
}

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

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

.category-overview-copy span {
  color: var(--color-primary);
  font-weight: 800;
}

.category-overview-copy h2 {
  margin: 8px 0 10px;
  font-size: 25px;
}

.category-overview-copy p {
  color: var(--color-muted);
  line-height: 1.7;
}

.filter-bar {
  margin-bottom: 24px;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(130px, 180px)) auto;
  gap: 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.filter-bar input,
.filter-bar select,
.filter-bar button {
  width: 100%;
}

.filter-empty {
  margin: 0 0 18px;
  padding: 14px 18px;
  border-radius: var(--radius-small);
  color: #92400e;
  background: #fffbeb;
  font-weight: 700;
}

.table-card {
  overflow-x: auto;
  padding: 6px;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.ranking-table th,
.ranking-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
}

.ranking-table th {
  color: #525252;
  background: #f5f5f5;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ranking-table a {
  color: var(--color-primary);
  font-weight: 800;
}

.breadcrumb {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #525252;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--color-primary);
  font-weight: 700;
}

.detail-hero {
  position: relative;
  color: #ffffff;
  background: #111827;
  background-image: var(--detail-backdrop);
  background-size: cover;
  background-position: center;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.26));
  backdrop-filter: blur(2px);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 42px;
  padding-top: 46px;
  padding-bottom: 46px;
}

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

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 780px;
  color: #eeeeee;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
}

.site-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.68));
  cursor: pointer;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 16px 38px rgba(0, 91, 179, 0.42);
  font-size: 34px;
}

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

.player-shell.is-playing .player-overlay {
  display: none;
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  margin: 0;
  color: #fef3c7;
  text-align: center;
  font-weight: 700;
}

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

.content-card {
  padding: 28px;
}

.prose-card h2,
.info-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.prose-card h2:not(:first-child) {
  margin-top: 30px;
}

.prose-card p {
  font-size: 17px;
}

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

.info-card dt {
  color: #525252;
  font-weight: 800;
}

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

.info-card a {
  color: var(--color-primary);
  font-weight: 800;
}

.site-footer {
  margin-top: 40px;
  padding: 48px 0 24px;
  color: #d4d4d4;
  background: #171717;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  color: #ffffff;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 10px 0 0;
  max-width: 520px;
  color: #a3a3a3;
  line-height: 1.7;
}

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

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

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

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #262626;
  color: #a3a3a3;
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

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

  .hero-slider {
    height: 520px;
  }

  .hero-copy h1,
  .detail-copy h1 {
    font-size: 42px;
  }

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

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

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

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

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

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

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

  .brand {
    font-size: 18px;
  }

  .hero-slider {
    height: 560px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-copy p,
  .detail-copy p {
    font-size: 15px;
  }

  .hero-actions,
  .large-search,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .detail-hero-inner {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .info-card dl {
    grid-template-columns: 1fr;
  }
}
