:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --pink: #ec4899;
  --amber: #f59e0b;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fff7ed;
  --line: #fed7aa;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(249, 115, 22, 0.14);
  --shadow-strong: 0 24px 70px rgba(236, 72, 153, 0.22);
}

* {
  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(--ink);
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.85), #ffffff 40%, rgba(253, 242, 248, 0.85));
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(254, 215, 170, 0.75);
  box-shadow: 0 8px 28px rgba(31, 41, 55, 0.06);
  backdrop-filter: blur(18px);
}

.nav-bar {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  background: linear-gradient(135deg, #fb923c, #ec4899);
  box-shadow: 0 12px 26px rgba(236, 72, 153, 0.28);
}

.brand-text {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.desktop-nav a {
  color: #4b5563;
  font-size: 15px;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

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

.header-search {
  flex: 0 0 250px;
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-toolbar input,
.filter-toolbar select {
  width: 100%;
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255, 247, 237, 0.78);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-toolbar input:focus,
.filter-toolbar select:focus {
  background: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.header-search button,
.mobile-search button,
.large-search button,
.primary-button {
  border: 0;
  color: #ffffff;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.large-search button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 18px 42px rgba(236, 72, 153, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 12px;
  background: #fff7ed;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(254, 215, 170, 0.75);
  padding: 16px;
  background: rgba(255, 255, 255, 0.97);
}

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

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mobile-panel nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff7ed;
  color: #4b5563;
  border: 1px solid rgba(254, 215, 170, 0.78);
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 540px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffedd5, #fce7f3, #fef3c7);
}

.hero-track,
.hero-slide,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.52) 48%, rgba(17, 24, 39, 0.12));
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
  color: #ffffff;
  padding-top: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #fed7aa;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 0;
  max-width: 620px;
  color: #f3f4f6;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 32px;
}

.hero-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.68);
}

.secondary-button.light {
  color: var(--orange);
  border-color: rgba(249, 115, 22, 0.25);
  background: #ffffff;
}

.hero-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.05);
}

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

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

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: #ffffff;
}

.intro-search,
.page-hero {
  margin-top: 56px;
  border: 1px solid rgba(254, 215, 170, 0.78);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.intro-search h2,
.page-hero h1,
.section-heading h2,
.detail-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.intro-search p,
.page-hero p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.8;
}

.large-search {
  margin-top: 22px;
  max-width: 700px;
}

.large-search input {
  padding: 15px 20px;
}

.large-search button {
  padding: 15px 24px;
  white-space: nowrap;
}

.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-nav a {
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  color: #9a3412;
  background: #fff7ed;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pill-nav a:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: #ffedd5;
}

.content-section {
  margin-top: 72px;
}

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

.section-heading a,
.text-link {
  color: var(--orange);
  font-weight: 800;
}

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

.compact-grid,
.rank-grid,
.catalog-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.movie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(254, 215, 170, 0.72);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.48);
  box-shadow: var(--shadow-strong);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f4f6;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.55));
}

.rating-pill,
.rank-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.rating-pill {
  right: 12px;
  bottom: 12px;
  min-width: 42px;
  height: 30px;
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .card-title {
  color: var(--orange);
}

.card-desc {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  color: #9a3412;
  font-size: 13px;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  color: #9a3412;
  font-size: 12px;
  font-weight: 700;
  background: #fff7ed;
  border: 1px solid rgba(254, 215, 170, 0.72);
}

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

.category-card,
.category-overview-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 210px;
  border: 1px solid rgba(254, 215, 170, 0.78);
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.94));
  box-shadow: 0 12px 34px rgba(249, 115, 22, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.48);
  box-shadow: var(--shadow);
}

.category-icon,
.category-title-link span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #fb923c, #ec4899);
}

.category-card strong,
.category-title-link strong {
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.category-card em,
.category-overview-card p {
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.category-samples,
.mini-link-list {
  display: grid;
  gap: 6px;
}

.category-samples a,
.mini-link-list a {
  color: #9a3412;
  font-size: 14px;
}

.category-title-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 14px;
  align-items: end;
  margin-bottom: 26px;
  border: 1px solid rgba(254, 215, 170, 0.78);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.06);
}

.filter-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-toolbar select {
  appearance: none;
}

.empty-state {
  display: none;
  border: 1px dashed rgba(249, 115, 22, 0.4);
  border-radius: 20px;
  padding: 26px;
  margin-bottom: 20px;
  color: var(--muted);
  text-align: center;
  background: #fff7ed;
}

.empty-state.is-visible {
  display: block;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  margin-top: 24px;
}

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

.player-card,
.detail-card,
.side-card {
  border: 1px solid rgba(254, 215, 170, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
  background: #111827;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-overlay span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 34px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 22px 60px rgba(236, 72, 153, 0.42);
  padding-left: 6px;
  transition: transform 0.22s ease;
}

.play-overlay:hover span {
  transform: scale(1.08);
}

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

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  border-radius: 14px;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(12px);
}

.player-message.is-visible {
  display: block;
}

.detail-card {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 36px);
}

.detail-card h1 {
  margin-bottom: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-meta span {
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid rgba(254, 215, 170, 0.78);
}

.lead-text {
  color: #374151;
  font-size: 18px;
  line-height: 1.8;
}

.detail-card h2,
.side-card h2,
.site-footer h2 {
  margin: 28px 0 12px;
  color: #111827;
  font-size: 22px;
  font-weight: 900;
}

.detail-card p {
  color: #4b5563;
  line-height: 1.9;
}

.detail-tags {
  margin: 18px 0 4px;
}

.detail-sidebar {
  display: grid;
  align-content: start;
  gap: 20px;
}

.side-card {
  padding: 22px;
}

.poster-card {
  overflow: hidden;
  padding: 0;
}

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

.side-card dl {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
}

.side-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(254, 215, 170, 0.72);
}

.side-card dt {
  color: var(--muted);
}

.side-card dd {
  margin: 0;
  color: #111827;
  font-weight: 800;
  text-align: right;
}

.side-card dd a {
  color: var(--orange);
}

.full-button {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}

.related-section {
  margin-top: 42px;
}

.site-footer {
  margin-top: 86px;
  border-top: 1px solid rgba(254, 215, 170, 0.78);
  background: linear-gradient(135deg, #fff7ed, #fdf2f8, #fffbeb);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding-block: 44px;
}

.footer-main p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer h2 {
  margin-top: 0;
  font-size: 18px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer a {
  color: #4b5563;
}

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

.footer-bottom {
  padding: 18px 0 28px;
  color: var(--muted);
  border-top: 1px solid rgba(254, 215, 170, 0.7);
}

.soft-hero,
.category-hero,
.ranking-hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.88));
}

.ranking-hero {
  background: linear-gradient(135deg, #111827, #7c2d12 50%, #831843);
}

.ranking-hero h1,
.ranking-hero p,
.ranking-hero .eyebrow {
  color: #ffffff;
}

.small-actions {
  margin-top: 20px;
}

[hidden] {
  display: none !important;
}

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

  .header-search {
    margin-left: auto;
  }

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

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-bar {
    height: 64px;
    gap: 12px;
  }

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

  .header-search {
    display: none;
  }

  .hero-carousel {
    min-height: 560px;
    height: 72vh;
  }

  .hero-copy {
    padding-inline: 8px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .hero-control {
    top: auto;
    bottom: 24px;
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

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

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

  .hero-dots {
    bottom: 34px;
  }

  .intro-search,
  .page-hero {
    margin-top: 28px;
    border-radius: 22px;
  }

  .large-search {
    display: grid;
  }

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

  .movie-grid,
  .compact-grid,
  .rank-grid,
  .catalog-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 13px;
  }

  .card-title {
    font-size: 15px;
    min-height: 42px;
  }

  .card-desc {
    font-size: 13px;
  }

  .filter-toolbar {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

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

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

@media (max-width: 440px) {
  .movie-grid,
  .compact-grid,
  .rank-grid,
  .catalog-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a {
    justify-content: center;
  }
}
