:root {
  --color-bg: #fff7ed;
  --color-bg-soft: #fffbeb;
  --color-surface: #ffffff;
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-line: #fed7aa;
  --color-accent: #f97316;
  --color-accent-dark: #ea580c;
  --color-accent-soft: #ffedd5;
  --color-gold: #f59e0b;
  --shadow-soft: 0 18px 45px rgba(124, 45, 18, 0.10);
  --shadow-strong: 0 26px 70px rgba(124, 45, 18, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.96));
  border-bottom: 1px solid rgba(251, 146, 60, 0.18);
  box-shadow: 0 10px 30px rgba(124, 45, 18, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.32);
}

.brand-text {
  font-size: 21px;
  color: #111827;
}

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

.nav-link,
.mobile-nav-link {
  border-radius: 12px;
  padding: 10px 14px;
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #ffffff;
  background: var(--color-accent);
  transform: translateY(-1px);
}

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.25);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-accent-dark);
}

.mobile-nav {
  display: none;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.section,
.section-white,
.search-strip {
  padding: 70px 0;
}

.section-white {
  background: rgba(255, 255, 255, 0.72);
}

.section-inner,
.hero-slider,
.page-hero-inner,
.detail-inner,
.footer-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading,
.category-overview-head,
.player-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.category-overview-head h2,
.rank-panel h2,
.player-heading h2,
.prose-card h2,
.info-card h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.12;
}

.section-heading a,
.category-overview-head a {
  color: var(--color-accent-dark);
  font-weight: 800;
}

.hero-slider {
  position: relative;
  min-height: 640px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 34px;
  background: radial-gradient(circle at 20% 15%, rgba(253, 186, 116, 0.95), transparent 34%), linear-gradient(135deg, #431407 0%, #9a3412 48%, #f97316 100%);
  box-shadow: var(--shadow-strong);
}

.hero-track,
.hero-slide {
  min-height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 6vw, 72px);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-image-layer {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  filter: blur(18px) saturate(1.35);
}

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

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.7;
}

.hero-tags,
.detail-meta-grid,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag,
.category-count-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 800;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.28);
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.page-hero .button-ghost,
.detail-copy .button-ghost {
  color: var(--color-accent-dark);
  border-color: rgba(249, 115, 22, 0.22);
  background: #fff7ed;
}

.button-full {
  width: 100%;
}

.hero-poster {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  transform: rotate(2deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

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

.hero-controls {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-controls button {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 26px;
}

.hero-dots {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

.hero-dot {
  width: 10px !important;
  height: 10px !important;
  min-width: 10px;
  border-radius: 999px;
  opacity: 0.45;
}

.hero-dot.is-active {
  width: 34px !important;
  opacity: 1;
}

.search-strip {
  padding: 36px 0 10px;
}

.search-strip-inner,
.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.search-strip h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
}

.quick-search,
.filter-search {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 560px;
}

.quick-search input,
.filter-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 0 16px;
  color: #111827;
  background: #fff7ed;
  outline: none;
}

.quick-search input:focus,
.filter-search input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.quick-search button {
  min-height: 48px;
  white-space: nowrap;
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--color-accent);
  font-weight: 900;
  cursor: pointer;
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c2d12, #fb923c);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.category-tile strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 44px;
  font-size: 24px;
}

.category-tile p,
.category-tile span {
  position: relative;
  z-index: 2;
}

.category-count {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  mix-blend-mode: screen;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(124, 45, 18, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-card.is-hidden {
  display: none;
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #ffedd5, #fdba74);
}

.poster-frame::after {
  content: attr(data-title);
  position: absolute;
  inset: auto 12px 12px;
  display: none;
  border-radius: 14px;
  padding: 12px;
  color: #ffffff;
  background: rgba(124, 45, 18, 0.70);
  font-weight: 900;
  text-align: center;
}

.poster-frame.is-missing::after {
  display: block;
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.52));
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: var(--color-accent);
}

.rank-badge {
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  background: rgba(17, 24, 39, 0.76);
}

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

.movie-title {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.28;
}

.movie-meta,
.movie-line {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.movie-line {
  min-height: 46px;
  margin-top: 8px;
}

.tag-row {
  margin-top: 14px;
}

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

.rank-panel,
.prose-card,
.info-card,
.player-panel,
.category-overview-block,
.filter-panel {
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.rank-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.rank-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #fff7ed;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
  transform: translateX(3px);
  background: #ffedd5;
}

.rank-number {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--color-accent);
  font-weight: 900;
}

.rank-title {
  font-weight: 900;
}

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

.page-hero {
  padding: 82px 0 32px;
  background: radial-gradient(circle at 18% 15%, rgba(251, 146, 60, 0.35), transparent 28%), linear-gradient(180deg, #fff7ed, rgba(255, 255, 255, 0));
}

.page-hero-inner {
  border-radius: 32px;
  padding: clamp(34px, 7vw, 70px);
  color: #431407;
  background: linear-gradient(135deg, #ffffff, #ffedd5);
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(42px, 8vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 780px;
  color: #7c2d12;
  font-size: 18px;
  line-height: 1.75;
}

.filter-panel {
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-search {
  max-width: none;
}

.filter-search span {
  min-width: 92px;
  color: var(--color-muted);
  font-weight: 800;
  text-align: right;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  min-height: 40px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 0 14px;
  color: #9a3412;
  background: #fff7ed;
  font-weight: 900;
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #ffffff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.category-overview-list {
  display: grid;
  gap: 26px;
}

.category-overview-block {
  padding: 26px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
  background: #431407;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  filter: blur(20px) saturate(1.25);
}

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

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

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

.detail-head-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.detail-poster {
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.detail-copy {
  color: #ffffff;
}

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

.detail-one-line {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.detail-meta-grid span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

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

.player-panel {
  padding: 24px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.55), rgba(17, 24, 39, 0.76));
  cursor: pointer;
}

.play-overlay.is-hidden {
  display: none;
}

.play-overlay.is-loading .play-icon {
  animation: pulse 0.9s infinite alternate;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.34);
}

.play-overlay strong {
  font-size: 24px;
}

.play-overlay small,
.player-status {
  color: rgba(255, 255, 255, 0.78);
}

.player-status {
  margin: 14px 0 0;
  color: var(--color-muted);
}

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

.prose-card,
.info-card {
  padding: 28px;
}

.prose-card p {
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

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

.info-card dt {
  color: var(--color-muted);
  font-weight: 900;
}

.info-card dd {
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.info-card a {
  color: var(--color-accent-dark);
}

.site-footer {
  padding: 48px 0;
  color: #7c2d12;
  background: #ffedd5;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.footer-brand {
  color: #431407;
  font-size: 24px;
}

.footer-inner p {
  max-width: 680px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

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

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

  .rank-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-poster {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .search-strip-inner,
  .section-heading,
  .category-overview-head,
  .player-heading,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }

  .quick-search,
  .filter-search {
    width: 100%;
    max-width: none;
  }

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

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

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .hero-slider,
  .page-hero-inner,
  .detail-inner,
  .footer-inner {
    width: min(100% - 22px, var(--max-width));
  }

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

  .hero-slider,
  .hero-track,
  .hero-slide {
    min-height: 580px;
  }

  .hero-slide {
    padding: 24px;
  }

  .hero-controls {
    left: 16px;
    right: 16px;
  }

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

  .filter-panel {
    padding: 16px;
  }

  .filter-search {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-search span {
    text-align: left;
  }

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

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