:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-800: #9a3412;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-500: #78716c;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --white: #ffffff;
  --shadow-soft: 0 12px 35px rgba(41, 37, 36, 0.12);
  --shadow-strong: 0 22px 50px rgba(41, 37, 36, 0.22);
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-800);
  background: var(--stone-50);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-900), var(--orange-800), var(--amber-900));
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.32);
}

.nav-inner {
  max-width: var(--max-width);
  height: 64px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 26px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-900);
  background: var(--amber-300);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

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

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

.nav-link {
  font-weight: 600;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-200);
  opacity: 1;
}

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

.nav-search input,
.mobile-search input,
.search-large input {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition: width 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.nav-search input {
  width: 180px;
  padding: 9px 16px;
}

.nav-search input:focus {
  width: 240px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.3);
}

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

.nav-search button,
.mobile-search button,
.search-large button {
  border: 0;
  cursor: pointer;
  color: var(--amber-900);
  background: var(--amber-300);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-button span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 14px 18px 20px;
  background: rgba(120, 53, 15, 0.96);
  backdrop-filter: blur(12px);
}

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

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.mobile-search input {
  width: 100%;
  padding: 10px 14px;
}

.mobile-nav-link {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  background: rgba(255, 255, 255, 0.1);
}

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

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--stone-900), var(--amber-900));
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.32) 55%, rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 18% 70%, rgba(245, 158, 11, 0.35), transparent 34%);
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--amber-300);
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-kicker::before {
  content: "★";
  margin-right: 8px;
}

.hero h1,
.hero h2 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--amber-50);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--amber-700);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 0;
  cursor: pointer;
  color: var(--white);
  background: rgba(0, 0, 0, 0.46);
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
  transition: background 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;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

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

.hero-dot.is-active {
  width: 34px;
  background: var(--amber-400);
}

.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 52px 18px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.section-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--amber-600);
  border-radius: 999px;
}

.section-icon.flame {
  background: #ea580c;
}

.highlight-section,
.year-section {
  max-width: none;
  background: linear-gradient(90deg, #fff7ed, var(--amber-50));
}

.highlight-section > *,
.year-section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.movie-card {
  height: 100%;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--stone-200), var(--amber-100));
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.movie-card-link:hover .movie-cover img {
  transform: scale(1.08);
  opacity: 0.82;
}

.movie-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-700);
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.movie-play::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  z-index: -1;
}

.movie-card-link:hover .movie-play {
  opacity: 1;
}

.movie-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 9px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.movie-card-body h3 {
  min-height: 52px;
  margin: 0 0 10px;
  color: var(--stone-800);
  font-size: 18px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

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

.movie-card-body p {
  min-height: 44px;
  margin: 0 0 12px;
  color: #57534e;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--stone-500);
  font-size: 13px;
}

.movie-meta span,
.detail-meta span {
  padding: 5px 9px;
  background: var(--stone-100);
  border-radius: 999px;
}

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

.movie-card-compact .movie-card-body h3 {
  min-height: 44px;
  font-size: 15px;
}

.movie-card-compact .movie-card-body p {
  display: none;
}

.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x proximity;
}

.scroll-card {
  width: 320px;
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.region-block {
  margin-top: 34px;
}

.region-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--stone-700);
  font-size: 22px;
}

.bar {
  width: 5px;
  height: 26px;
  border-radius: 999px;
}

.bar.red {
  background: #ef4444;
}

.bar.blue {
  background: #3b82f6;
}

.bar.green {
  background: #22c55e;
}

.year-block {
  margin-top: 28px;
}

.year-block h3 {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 16px;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 10px;
}

.latest-section {
  border-top: 2px solid var(--amber-200);
}

.horizontal-list {
  display: grid;
  gap: 16px;
}

.horizontal-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.horizontal-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.horizontal-item img {
  width: 220px;
  height: 124px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--stone-200);
}

.horizontal-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.horizontal-item p {
  margin: 0 0 10px;
  color: #57534e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.horizontal-item span {
  color: var(--stone-500);
  font-size: 13px;
}

.category-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 30%, rgba(251, 191, 36, 0.42), transparent 28%),
    linear-gradient(90deg, var(--amber-900), var(--orange-800), var(--amber-900));
}

.category-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 58px 18px;
}

.category-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 48px);
}

.category-hero p {
  margin: 0;
  color: var(--amber-100);
  font-size: 18px;
}

.category-content {
  padding-top: 34px;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.filter-title {
  font-weight: 800;
  color: var(--stone-700);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  color: var(--stone-700);
  background: var(--stone-100);
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.pill:hover,
.pill.is-active {
  color: var(--white);
  background: var(--amber-600);
}

.sub-nav {
  position: sticky;
  top: 64px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px max(18px, calc((100vw - var(--max-width)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--stone-200);
  backdrop-filter: blur(14px);
}

.sub-nav a {
  color: var(--amber-700);
  font-weight: 700;
}

.sub-nav strong {
  color: var(--stone-700);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 28px;
}

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

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.36));
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
}

.player-overlay button {
  width: 82px;
  height: 82px;
  border: 0;
  cursor: pointer;
  color: var(--amber-700);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 32px;
  pointer-events: auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.player-message {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.52);
  border-radius: 999px;
  font-size: 13px;
  pointer-events: none;
}

.player-message.is-hidden {
  display: none;
}

.detail-card,
.related-panel {
  margin-top: 22px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.detail-card h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
}

.detail-meta {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--stone-200);
}

.detail-meta span:first-child {
  color: var(--amber-800);
  background: var(--amber-100);
}

.detail-copy h2,
.related-panel h2 {
  margin: 22px 0 10px;
  color: var(--stone-800);
  font-size: 21px;
}

.detail-copy p {
  margin: 0;
  color: #57534e;
  text-align: justify;
}

.detail-copy blockquote {
  margin: 0;
  padding: 16px 18px;
  color: var(--stone-700);
  background: var(--amber-50);
  border-left: 4px solid var(--amber-500);
  border-radius: 10px;
  font-style: italic;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  padding: 7px 12px;
  color: var(--stone-700);
  background: var(--stone-100);
  border-radius: 999px;
  font-size: 14px;
}

.related-panel {
  margin-top: 0;
  align-self: start;
  position: sticky;
  top: 128px;
}

.related-panel h2 {
  margin-top: 0;
}

.related-list {
  display: grid;
  gap: 16px;
}

.related-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.related-item img {
  width: 120px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--stone-200);
}

.related-item h3 {
  margin: 0 0 6px;
  color: var(--stone-800);
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-item:hover h3 {
  color: var(--amber-700);
}

.related-item p {
  margin: 0;
  color: var(--stone-500);
  font-size: 13px;
}

.rank-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 18px;
  display: grid;
  gap: 18px;
}

.rank-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.rank-cover {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  background: var(--stone-200);
}

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

.rank-cover span {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(217, 119, 6, 0.92);
  border-radius: 999px;
  font-weight: 900;
}

.rank-body h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.rank-body a:hover h2 {
  color: var(--amber-700);
}

.rank-body p {
  margin: 0 0 14px;
  color: #57534e;
}

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

.search-heading {
  margin-bottom: 20px;
}

.search-heading h1 {
  margin: 0 0 8px;
  font-size: 40px;
}

.search-heading p {
  margin: 0;
  color: var(--stone-500);
}

.search-large {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.search-large input {
  width: 100%;
  color: var(--stone-800);
  background: var(--stone-100);
  border-color: var(--stone-200);
  padding: 13px 16px;
}

.search-large button {
  min-width: 110px;
}

.search-status {
  margin-bottom: 18px;
  color: var(--stone-500);
  font-weight: 700;
}

.site-footer {
  margin-top: 48px;
  color: #d6d3d1;
  background: linear-gradient(180deg, var(--stone-800), var(--stone-900));
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 18px 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-about p,
.site-footer a {
  color: #a8a29e;
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 17px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--amber-300);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #a8a29e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-search {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
    margin-left: auto;
  }

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

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

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

  .related-panel {
    position: static;
  }

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

@media (max-width: 760px) {
  .hero {
    height: 520px;
  }

  .hero-content {
    bottom: 62px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .content-section {
    padding: 38px 14px;
  }

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

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

  .movie-card-body h3 {
    min-height: 44px;
    font-size: 15px;
  }

  .movie-card-body p {
    display: none;
  }

  .scroll-card {
    width: 260px;
    flex-basis: 260px;
  }

  .horizontal-item,
  .rank-item {
    grid-template-columns: 1fr;
  }

  .horizontal-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

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

  .detail-layout {
    padding: 24px 14px;
  }

  .detail-card,
  .related-panel {
    padding: 18px;
  }

  .related-item {
    grid-template-columns: 105px 1fr;
  }

  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .four-columns,
  .six-columns {
    grid-template-columns: 1fr;
  }

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

  .hero-tags span {
    font-size: 13px;
  }
}
