* {
  box-sizing: border-box;
}

:root {
  --brand-red: #dc2626;
  --brand-pink: #db2777;
  --brand-dark: #111827;
  --brand-muted: #6b7280;
  --brand-soft: #f9fafb;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brand-dark);
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 46%, #fff7f7 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.6;
}

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

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

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.85);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-pink));
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-text small {
  margin-top: 3px;
  color: var(--brand-muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-link {
  color: #374151;
  font-weight: 700;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--brand-red);
  background: #fee2e2;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #374151;
}

.category-strip {
  border-top: 1px solid rgba(229, 231, 235, 0.72);
  background: rgba(249, 250, 251, 0.82);
}

.category-strip-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
}

.category-strip a {
  white-space: nowrap;
  padding: 6px 12px;
  color: #4b5563;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

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

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

.mobile-link {
  padding: 12px 14px;
}

.hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(220, 38, 38, 0.25), transparent 38%), linear-gradient(135deg, #111827 0%, #1f2937 48%, #450a0a 100%);
}

.hero-slides,
.hero-slide,
.hero-backdrop,
.hero-backdrop img {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-backdrop {
  opacity: 0.58;
  background: linear-gradient(135deg, #1f2937, #991b1b);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.15);
  transform: scale(1.04);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.72) 48%, rgba(17, 24, 39, 0.42) 100%);
}

.hero-backdrop[data-missing="true"]::after,
.poster[data-missing="true"]::after,
.detail-poster[data-missing="true"]::after,
.hero-poster[data-missing="true"]::after,
.detail-backdrop[data-missing="true"]::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-weight: 800;
  background: linear-gradient(135deg, #ef4444, #be185d 52%, #111827);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 76vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 50px;
  padding: 70px 0 86px;
}

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

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

.hero-chip,
.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.hero-chip {
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.chip {
  padding: 7px 12px;
  color: #991b1b;
  background: #fee2e2;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 18px 0 18px;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.hero p,
.page-hero p,
.detail-info .one-line {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
}

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

.btn,
.home-search button,
.filter-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary,
.home-search button,
.filter-panel button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-pink));
  box-shadow: 0 14px 26px rgba(220, 38, 38, 0.28);
}

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

.btn.full {
  width: 100%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-pink));
}

.btn:hover,
.home-search button:hover,
.filter-panel button:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, #ef4444, #111827);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.hero-control.prev {
  left: 18px;
}

.hero-control.next {
  right: 18px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

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

.quick-search-section,
.content-section {
  padding: 48px 0;
}

.quick-search-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  align-items: center;
  gap: 20px;
  margin-top: -82px;
  position: relative;
  z-index: 5;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-search-card h2,
.section-heading h2,
.ranking-panel h2,
.copy-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.home-search {
  display: flex;
  gap: 10px;
}

.home-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: var(--brand-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.home-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.16);
}

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

.section-more {
  color: var(--brand-red);
  font-weight: 900;
}

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

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

.compact-grid {
  gap: 16px;
}

.movie-card {
  min-width: 0;
  transition: transform 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
}

.poster-link {
  display: block;
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #ef4444, #111827);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

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

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

.poster-gradient {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18), transparent);
  transition: opacity 0.24s ease;
}

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

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  color: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.year-badge {
  top: 10px;
  left: 10px;
  background: var(--brand-red);
}

.rank-badge {
  top: 10px;
  right: 10px;
  background: rgba(17, 24, 39, 0.78);
}

.card-body {
  padding: 10px 3px 0;
}

.card-body h3 {
  min-height: 44px;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.card-body h3 a:hover {
  color: var(--brand-red);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  color: var(--brand-muted);
  font-size: 12px;
}

.card-meta span {
  padding: 2px 7px;
  background: #f3f4f6;
  border-radius: 999px;
}

.card-summary {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 13px;
}

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

.ranking-panel,
.copy-card,
.category-card-large,
.filter-panel,
.table-wrap {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.ranking-panel {
  position: sticky;
  top: 112px;
  padding: 22px;
}

.ranking-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.ranking-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #f9fafb;
  border-radius: 14px;
}

.ranking-number,
.table-rank {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-pink));
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
}

.ranking-number {
  padding: 4px 0;
}

.ranking-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.ranking-score {
  color: var(--brand-red);
  font-weight: 900;
}

.categories-home {
  display: grid;
  gap: 28px;
}

.category-preview {
  padding-top: 10px;
}

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

.page-hero {
  color: #ffffff;
  background: radial-gradient(circle at 20% 10%, rgba(248, 113, 113, 0.45), transparent 36%), linear-gradient(135deg, #111827, #7f1d1d 52%, #be185d);
}

.page-hero .container {
  padding: 74px 0;
}

.page-hero.small-hero .container {
  padding: 58px 0;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-stats span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 800;
}

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

.category-card-large {
  padding: 24px;
}

.category-main-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.category-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-pink));
  border-radius: 16px;
  font-weight: 900;
}

.category-main-link strong {
  display: block;
  font-size: 22px;
}

.category-main-link small {
  color: var(--brand-muted);
}

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

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-links a {
  padding: 6px 10px;
  color: #991b1b;
  background: #fee2e2;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 170px 190px auto auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel button {
  height: 46px;
}

.filter-panel output {
  min-width: 90px;
  color: var(--brand-muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

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

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

.table-wrap {
  overflow-x: auto;
}

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

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

.ranking-table th {
  color: #4b5563;
  background: #f9fafb;
  font-size: 13px;
}

.ranking-table td a {
  color: #111827;
  font-weight: 900;
}

.ranking-table td a:hover {
  color: var(--brand-red);
}

.table-rank {
  display: inline-block;
  min-width: 44px;
  padding: 3px 8px;
}

.detail-main {
  background: linear-gradient(135deg, #f8fafc, #fff7f7);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-backdrop,
.detail-backdrop img,
.detail-backdrop::before {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: blur(4px) saturate(1.15);
  transform: scale(1.05);
}

.detail-backdrop::before {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.62));
}

.detail-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  min-height: 520px;
  padding: 54px 0;
}

.detail-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #ef4444, #111827);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}

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

.detail-info h1 {
  font-size: clamp(34px, 5vw, 62px);
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: radial-gradient(circle at center, #1f2937, #030712);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.26);
}

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

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-grid;
  place-items: center;
  gap: 8px;
  min-width: 150px;
  min-height: 112px;
  padding: 20px;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.92);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(220, 38, 38, 0.32);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.player-start span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  background: #ffffff;
  border-radius: 50%;
}

.player-shell.is-playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  left: 16px;
  bottom: 12px;
  margin: 0;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.36);
  border-radius: 999px;
  font-size: 13px;
}

.detail-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
}

.copy-card {
  padding: 24px;
}

.copy-card p {
  color: #374151;
}

.tags-card {
  grid-column: 1 / -1;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 20px;
}

.info-list div {
  padding: 14px;
  background: #f9fafb;
  border-radius: 16px;
}

.info-list dt {
  color: var(--brand-muted);
  font-size: 13px;
  font-weight: 800;
}

.info-list dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.article-page .copy-card {
  max-width: 820px;
  margin: 0 auto;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  gap: 22px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-brand p {
  max-width: 780px;
  margin: 6px 0 0;
  color: #9ca3af;
}

.footer-links,
.footer-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a,
.footer-links button,
.footer-categories a {
  padding: 8px 12px;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

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

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .brand-text small {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 62px 0 76px;
  }

  .hero-poster {
    display: none;
  }

  .hero-control {
    display: none;
  }

  .quick-search-card,
  .detail-hero-inner,
  .detail-copy,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .quick-search-card {
    margin-top: -48px;
  }

  .home-search {
    flex-direction: column;
  }

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

  .filter-panel output {
    text-align: left;
  }

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

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

@media (max-width: 620px) {
  .container,
  .header-inner,
  .category-strip-inner,
  .mobile-nav,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

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

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

  .page-hero .container {
    padding: 50px 0;
  }

  .quick-search-section,
  .content-section {
    padding: 34px 0;
  }

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

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