:root {
  color-scheme: light;
  --stone-950: #1c1917;
  --stone-900: #292524;
  --stone-800: #44403c;
  --stone-700: #57534e;
  --stone-600: #78716c;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  --white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(28, 25, 23, 0.12);
  --shadow-card: 0 12px 28px rgba(28, 25, 23, 0.10);
  --radius-large: 28px;
  --radius-card: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--stone-800);
  background: linear-gradient(180deg, #fffaf0 0%, #fafaf9 32%, #f5f5f4 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, #78350f 0%, #b45309 48%, #d97706 100%);
  box-shadow: 0 10px 32px rgba(120, 53, 15, 0.24);
}

.site-header-inner {
  max-width: var(--container);
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #78350f;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 8px 18px rgba(0, 0, 0, 0.16);
}

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

.nav-link {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
}

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

.header-search input,
.mobile-search input,
.wide-search input,
.inline-filter input {
  border: 1px solid rgba(255, 255, 255, 0.22);
  outline: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  padding: 10px 15px;
  min-width: 180px;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.header-search input:focus {
  width: 250px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(253, 230, 138, 0.28);
}

.header-search button,
.mobile-search button,
.wide-search button,
.primary-button,
.small-button {
  border: none;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(180, 83, 9, 0.24);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.header-search button:hover,
.mobile-search button:hover,
.wide-search button:hover,
.primary-button:hover,
.small-button:hover {
  transform: translateY(-1px);
  background: var(--amber-700);
  box-shadow: 0 14px 26px rgba(180, 83, 9, 0.30);
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 18px;
}

.mobile-nav .nav-link {
  display: block;
  margin: 4px 0;
}

.mobile-search {
  margin-top: 12px;
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--stone-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.18) 0%, rgba(28, 25, 23, 0.62) 45%, rgba(0, 0, 0, 0.96) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 70px;
  width: min(var(--container), calc(100% - 40px));
  transform: translateX(-50%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.detail-meta-row,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.hero-tags span,
.detail-meta-row span,
.tag-row span,
.detail-tags a {
  border-radius: 999px;
  padding: 6px 12px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #fff7ed;
  background: rgba(245, 158, 11, 0.80);
}

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

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  font-size: 30px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease;
}

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

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.hero-dot.active {
  width: 32px;
  background: var(--amber-500);
}

.search-band {
  max-width: var(--container);
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  padding: 0 20px;
}

.search-band-inner {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 500px);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.search-band h2,
.search-band p {
  margin: 0;
}

.search-band h2 {
  font-size: 26px;
  color: var(--stone-900);
}

.search-band p {
  margin-top: 8px;
  color: var(--stone-600);
}

.wide-search input {
  width: 100%;
  min-width: 0;
  color: var(--stone-800);
  background: #fff;
  border: 1px solid var(--stone-200);
}

.category-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 16px 4px 6px;
}

.category-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 9px 15px;
  color: #92400e;
  background: #fef3c7;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.category-pill:hover {
  transform: translateY(-1px);
  background: #fde68a;
}

.page-shell,
.content-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 20px;
}

.content-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.flat-section {
  padding-top: 34px;
}

.warm-section {
  max-width: none;
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  padding-right: max(20px, calc((100% - var(--container)) / 2));
  background: linear-gradient(90deg, #fff7ed, #fffbeb);
}

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

.section-title-row h2,
.page-hero h1,
.detail-intro h1 {
  margin: 0;
  color: var(--stone-900);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-title-row h2 {
  font-size: 30px;
}

.section-title-row a {
  color: var(--amber-700);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(231, 229, 228, 0.9);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 7px 20px rgba(28, 25, 23, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.32);
  box-shadow: var(--shadow-card);
}

.movie-card-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #292524, #78350f);
}

.movie-card-cover img,
.detail-poster img,
.simple-movie-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.movie-card:hover .movie-card-cover img {
  transform: scale(1.06);
  opacity: 0.86;
}

.play-dot,
.rank-badge {
  position: absolute;
  z-index: 2;
}

.play-dot {
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(217, 119, 6, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.rank-badge {
  top: 10px;
  left: 10px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(180, 83, 9, 0.94);
  padding: 5px 10px;
  font-size: 12px;
}

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

.movie-card-body h3 {
  margin: 0 0 8px;
  color: var(--stone-900);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
}

.movie-card-body h3 a:hover {
  color: var(--amber-700);
}

.movie-card-body p {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--stone-600);
  font-size: 14px;
  line-height: 1.7;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--stone-600);
  font-size: 12px;
}

.tag-row span {
  font-size: 12px;
  padding: 4px 9px;
}

.horizontal-list {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.horizontal-list .movie-card {
  width: 270px;
  flex: 0 0 auto;
}

.two-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.panel-card,
.category-overview-card {
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-large);
  background: #fff;
  padding: 24px;
  box-shadow: 0 7px 22px rgba(28, 25, 23, 0.05);
}

.compact-title {
  margin-bottom: 18px;
}

.compact-title h2 {
  font-size: 24px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  padding: 12px;
  background: var(--stone-50);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.ranking-row:hover {
  transform: translateX(2px);
  background: #fffbeb;
}

.ranking-row span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--amber-600);
  font-weight: 900;
}

.ranking-row strong {
  color: var(--stone-900);
}

.ranking-row em {
  color: var(--amber-700);
  font-style: normal;
  font-weight: 800;
}

.ranking-row small {
  grid-column: 2 / -1;
  color: var(--stone-600);
}

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

.simple-movie-link {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 9px;
  background: var(--stone-50);
  color: var(--stone-800);
  font-weight: 750;
  transition: background-color 0.2s ease;
}

.simple-movie-link:hover {
  background: #fffbeb;
  color: var(--amber-700);
}

.simple-movie-link img {
  height: 76px;
  border-radius: 12px;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
}

.category-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-card);
  color: #fff;
  padding: 22px;
  background: linear-gradient(135deg, #92400e, #f59e0b);
  box-shadow: var(--shadow-card);
}

.category-card span {
  font-size: 22px;
  font-weight: 900;
}

.category-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.page-hero {
  border-radius: var(--radius-large);
  padding: 54px;
  color: #fff;
  background: radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.45), transparent 30%), linear-gradient(135deg, #1c1917, #78350f 70%, #d97706);
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 18px;
  line-height: 1.8;
}

.small-hero {
  margin-top: 28px;
}

.category-overview-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.category-overview-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-overview-head h2 {
  margin: 0 0 8px;
  color: var(--stone-900);
  font-size: 26px;
}

.category-overview-head p {
  margin: 0;
  color: var(--stone-600);
}

.inline-filter input {
  color: var(--stone-800);
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--stone-200);
}

.inline-filter input:focus,
.wide-search input:focus {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 24px 0;
  color: var(--stone-600);
  font-size: 14px;
}

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

.detail-shell {
  padding-top: 0;
}

.detail-hero {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 34px;
  align-items: end;
  border-radius: var(--radius-large);
  padding: 34px;
  color: #fff;
  background: radial-gradient(circle at 76% 0%, rgba(245, 158, 11, 0.30), transparent 26%), linear-gradient(135deg, #1c1917, #292524 52%, #78350f);
  box-shadow: var(--shadow-soft);
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  background: #292524;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.30);
}

.detail-intro h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
}

.detail-intro p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.85;
}

.detail-tags {
  margin-top: 14px;
}

.player-section {
  margin-top: 34px;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: #000;
  box-shadow: var(--shadow-soft);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.46));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--amber-600);
  font-size: 34px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.player-wrap.is-playing .play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-text-block {
  margin-top: 28px;
  border-radius: var(--radius-large);
  padding: 30px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(28, 25, 23, 0.05);
}

.detail-text-block h2 {
  margin: 0 0 14px;
  color: var(--stone-900);
  font-size: 25px;
}

.detail-text-block p {
  margin: 0;
  color: var(--stone-700);
  font-size: 17px;
  line-height: 1.95;
}

.related-section {
  padding-left: 0;
  padding-right: 0;
}

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

.search-page-form {
  margin-top: 24px;
  max-width: 720px;
}

.extended-rankings {
  margin-top: 28px;
}

.accent-red,
.accent-amber,
.accent-orange {
  --accent-color: #d97706;
}

.accent-blue,
.accent-cyan {
  --accent-color: #0284c7;
}

.accent-green,
.accent-lime,
.accent-teal {
  --accent-color: #0f766e;
}

.accent-pink,
.accent-purple {
  --accent-color: #9333ea;
}

.category-hero {
  background: radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.24), transparent 20%), linear-gradient(135deg, #1c1917, var(--accent-color, #d97706));
}

.site-footer {
  margin-top: 40px;
  color: #d6d3d1;
  background: #1c1917;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 42px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  color: #fff;
}

.site-footer p {
  max-width: 460px;
  color: #a8a29e;
  line-height: 1.8;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  text-align: center;
  color: #a8a29e;
}

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

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

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

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

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

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

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-carousel {
    height: 520px;
  }

  .hero-arrow {
    display: none;
  }

  .search-band-inner,
  .two-column-section,
  .detail-hero,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .page-hero,
  .detail-hero {
    padding: 30px;
  }

  .inline-filter input {
    min-width: 0;
    width: 100%;
  }

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

@media (max-width: 620px) {
  .site-header-inner {
    height: 62px;
  }

  .site-logo {
    font-size: 18px;
  }

  .hero-carousel {
    height: 500px;
  }

  .hero-content {
    bottom: 54px;
  }

  .hero-content p {
    font-size: 15px;
  }

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

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

  .movie-card-body p {
    min-height: auto;
  }

  .simple-link-grid {
    grid-template-columns: 1fr;
  }

  .ranking-row {
    grid-template-columns: 38px 1fr;
  }

  .ranking-row em {
    grid-column: 2;
  }

  .page-shell,
  .content-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .detail-text-block {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .category-grid,
  .ranking-grid,
  .related-grid,
  .category-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-tags,
  .detail-meta-row {
    gap: 6px;
  }

  .wide-search,
  .mobile-search {
    flex-direction: column;
    align-items: stretch;
  }
}
