* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: #172033;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f8fafc 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0f766e 0%, #0891b2 100%);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.22);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f59e0b;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

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

.brand-text small {
  color: #ccfbf1;
  font-size: 12px;
  margin-top: 3px;
}

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

.nav-link {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fbbf24;
  transform: translateY(-1px);
}

.nav-search {
  display: flex;
  align-items: center;
}

.nav-search input {
  width: 190px;
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  padding: 9px 13px;
  border-radius: 999px 0 0 999px;
  outline: none;
}

.nav-search input::placeholder {
  color: #d9fffb;
}

.nav-search button {
  border: 0;
  cursor: pointer;
  padding: 9px 15px;
  border-radius: 0 999px 999px 0;
  color: #ffffff;
  background: #f59e0b;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 11px;
  cursor: pointer;
}

.hero-slider {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.75s ease;
  pointer-events: none;
}

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

.hero-content {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 24px 82px;
  color: #ffffff;
}

.hero-content h1,
.hero-content h2 {
  max-width: 780px;
  margin: 16px 0 14px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-tags-top span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.hero-tags span:first-child {
  background: #f59e0b;
}

.hero-meta {
  margin: 0 0 10px;
  color: #e2e8f0;
  font-size: 18px;
}

.hero-desc {
  max-width: 720px;
  margin: 0 0 28px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions,
.quick-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.search-page-form button,
.wide-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.search-page-form button,
.wide-search button {
  border: 0;
  color: #ffffff;
  background: #0d9488;
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.28);
}

.primary-btn:hover,
.search-page-form button:hover,
.wide-search button:hover {
  transform: translateY(-2px);
  background: #0f766e;
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

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

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 54px;
  background: #f59e0b;
}

.quick-search-panel {
  width: min(1120px, calc(100% - 48px));
  margin: -38px auto 0;
  position: relative;
  z-index: 6;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
}

.wide-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.wide-search input,
.search-page-form input,
.search-page-form select,
.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  padding: 0 16px;
  color: #172033;
  background: #ffffff;
  outline: none;
}

.wide-search input:focus,
.search-page-form input:focus,
.search-page-form select:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.quick-links {
  margin-top: 14px;
}

.quick-links a,
.footer-links a,
.tag-cloud a,
.sample-links a {
  color: #0f766e;
  font-weight: 700;
}

.content-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0 0;
}

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

.section-heading h2 {
  margin: 0;
  color: #101827;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
}

.section-heading p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #667085;
  line-height: 1.7;
}

.section-more {
  flex: 0 0 auto;
  color: #0d9488;
  font-weight: 800;
}

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

.category-tile {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px;
  border-radius: 22px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.highlight-card:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.category-tile span {
  font-size: 36px;
}

.category-tile strong {
  font-size: 20px;
}

.category-tile em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

.tile-1,
.tile-5 {
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
}

.tile-2,
.tile-6 {
  background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
}

.tile-3,
.tile-7 {
  background: linear-gradient(135deg, #f97316 0%, #e11d48 100%);
}

.tile-4,
.tile-8 {
  background: linear-gradient(135deg, #0d9488 0%, #059669 100%);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  background: #111827;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.highlight-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.88));
}

.highlight-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.highlight-content em,
.highlight-content small {
  font-style: normal;
  color: #cbd5e1;
}

.highlight-content strong {
  font-size: 24px;
  line-height: 1.25;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

.movie-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 18px;
  color: #101827;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #0f766e, #0f172a);
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
  opacity: 0.8;
}

.play-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.84);
  border-radius: 50%;
  color: #ffffff;
  background: #0d9488;
  opacity: 0;
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.38);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.corner-tag,
.poster-meta,
.rank-badge {
  position: absolute;
  z-index: 3;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.corner-tag {
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.corner-tag.left {
  left: 12px;
  background: #0d9488;
}

.corner-tag.right {
  right: 12px;
  background: #f59e0b;
}

.poster-meta {
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #e5e7eb;
}

.rank-badge {
  left: 12px;
  bottom: 40px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e11d48;
}

.movie-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 17px;
}

.movie-card-body strong {
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-body em {
  color: #667085;
  font-style: normal;
  line-height: 1.6;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 700;
}

.two-column-layout,
.ranking-layout,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.ranking-panel,
.detail-side,
.detail-article,
.player-card,
.category-overview-card,
.detail-info-card,
.side-related {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.ranking-panel {
  position: sticky;
  top: 92px;
  padding: 26px;
}

.ranking-panel h2,
.detail-info-card h2,
.side-related h2 {
  margin: 0 0 20px;
  font-size: 24px;
}

.ranking-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ranking-panel li a {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  row-gap: 4px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-panel li a:hover {
  background: #ecfeff;
  transform: translateX(3px);
}

.ranking-panel li span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  font-weight: 900;
}

.ranking-panel li strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-panel li em {
  grid-column: 2;
  color: #667085;
  font-size: 13px;
  font-style: normal;
}

.soft-section {
  width: min(1280px, calc(100% - 48px));
  margin: 68px auto 0;
  padding: 34px;
  border-radius: 34px;
}

.soft-asian-latest {
  background: linear-gradient(90deg, #eff6ff, #ecfeff);
}

.soft-new-collection {
  background: linear-gradient(90deg, #faf5ff, #fdf2f8);
}

.soft-popular-picks {
  background: linear-gradient(90deg, #fff7ed, #fff1f2);
}

.page-hero {
  color: #ffffff;
}

.teal-hero {
  background: linear-gradient(120deg, #0f766e 0%, #0891b2 100%);
}

.warm-hero {
  background: linear-gradient(120deg, #e11d48 0%, #f59e0b 100%);
}

.page-hero-inner,
.detail-breadcrumb-wrap,
.detail-layout {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.page-hero-inner {
  padding: 56px 0;
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb a {
  color: inherit;
  opacity: 0.82;
  font-weight: 700;
}

.breadcrumb a:hover {
  opacity: 1;
}

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

.category-overview-card {
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-main-link span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #ecfeff;
  font-size: 26px;
}

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

.category-main-link em {
  margin-left: auto;
  color: #0d9488;
  font-style: normal;
  font-weight: 800;
}

.category-overview-card p {
  color: #667085;
  line-height: 1.7;
}

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sample-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 13px;
}

.filter-bar,
.search-page-form {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.search-page-form {
  grid-template-columns: 1.5fr 1fr 1fr auto;
}

.search-summary {
  margin: 0 0 20px;
  color: #475467;
  font-weight: 800;
}

.empty-state {
  margin-top: 28px;
  padding: 38px;
  text-align: center;
  border-radius: 24px;
  color: #667085;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.detail-breadcrumb-wrap {
  padding: 22px 0;
  color: #667085;
}

.detail-layout {
  padding-bottom: 12px;
}

.detail-main {
  min-width: 0;
}

.player-card {
  overflow: hidden;
  margin-bottom: 24px;
  background: #030712;
}

.movie-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: pointer;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #020617;
}

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #ffffff;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.08), rgba(2, 6, 23, 0.58));
}

.play-cover span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0d9488;
  box-shadow: 0 18px 46px rgba(13, 148, 136, 0.38);
  font-size: 32px;
}

.play-cover strong {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
}

.movie-player.is-playing .play-cover {
  display: none;
}

.detail-article {
  padding: 32px;
}

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

.detail-tags-top span {
  background: #0d9488;
}

.detail-tags-top span:nth-child(2) {
  background: #f59e0b;
}

.detail-tags-top span:nth-child(3) {
  background: #2563eb;
}

.detail-article h1 {
  margin: 0 0 10px;
  color: #101827;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-meta {
  margin: 0 0 24px;
  color: #667085;
  font-weight: 800;
}

.detail-article section {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid #e5e7eb;
}

.detail-article h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.detail-article p {
  margin: 0;
  color: #475467;
  line-height: 1.9;
  font-size: 16px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid #e5e7eb;
}

.tag-cloud a {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5f9;
}

.detail-side {
  position: sticky;
  top: 92px;
  padding: 22px;
}

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

.detail-info-card,
.side-related {
  padding: 22px;
  margin-top: 18px;
  box-shadow: none;
  background: #f8fafc;
}

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

.detail-info-card dt {
  color: #667085;
}

.detail-info-card dd {
  margin: 0;
  font-weight: 800;
}

.side-related {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-related h2 {
  margin-bottom: 6px;
}

.side-related-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
}

.side-related-item img {
  width: 94px;
  height: 66px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
}

.side-related-item span {
  min-width: 0;
}

.side-related-item strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
}

.side-related-item em {
  display: block;
  margin-top: 6px;
  color: #667085;
  font-size: 12px;
  font-style: normal;
}

.compact-card .poster-wrap {
  aspect-ratio: 16 / 10;
}

.site-footer {
  margin-top: 78px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.footer-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

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

.site-footer p {
  margin: 0;
  max-width: 520px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-links a {
  color: #cbd5e1;
}

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 18px 24px;
  text-align: center;
  color: #94a3b8;
}

@media (max-width: 1080px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 12px 18px;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav,
  .nav-search {
    display: none;
    width: 100%;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .nav-search {
    display: flex;
  }

  .site-nav {
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-search {
    order: 5;
  }

  .nav-search input {
    flex: 1;
  }

  .category-tiles,
  .four-cols,
  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-grid,
  .three-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column-layout,
  .ranking-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .detail-side {
    position: static;
  }

  .filter-bar,
  .search-page-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .hero-slider {
    min-height: 74vh;
  }

  .hero-content {
    padding: 0 18px 72px;
  }

  .quick-search-panel,
  .content-section,
  .soft-section,
  .page-hero-inner,
  .detail-breadcrumb-wrap,
  .detail-layout,
  .footer-grid {
    width: min(100% - 28px, 1280px);
  }

  .wide-search,
  .category-tiles,
  .highlight-grid,
  .four-cols,
  .three-cols,
  .overview-grid,
  .footer-grid,
  .filter-bar,
  .search-page-form {
    grid-template-columns: 1fr;
  }

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

  .highlight-card {
    min-height: 360px;
  }

  .soft-section,
  .detail-article {
    padding: 22px;
  }
}
