:root {
  --bg: #fff7ed;
  --bg-soft: #fffbeb;
  --text: #2b1706;
  --muted: #765b40;
  --line: rgba(146, 64, 14, 0.16);
  --amber: #d97706;
  --orange: #ea580c;
  --deep: #451a03;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(120, 53, 15, 0.15);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 44%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

img {
  max-width: 100%;
}

main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 235, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--deep);
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.32);
}

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

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

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #6b3b13;
  font-weight: 700;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  min-width: 280px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 11px 14px;
  background: transparent;
  color: var(--text);
}

.header-search button,
.big-search button {
  border: 0;
  cursor: pointer;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  padding: 11px 18px;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 7px 6px;
  background: var(--deep);
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.mobile-panel.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--deep);
  background: #fff7ed;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, #451a03, #9a3412);
}

.hero-stage,
.hero-slide,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.05);
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 18%, rgba(251, 191, 36, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(69, 26, 3, 0.16), rgba(69, 26, 3, 0.66));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
}

.hero-content > * {
  max-width: 680px;
}

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

.hero-kicker span,
.hero-tags span,
.tag-row span,
.meta-row span,
.detail-meta span {
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker span,
.hero-tags span {
  color: #fde68a;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-content h2 {
  margin: 22px 0 14px;
  color: #fff;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -1px;
}

.hero-content p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.85;
}

.hero-overlay-content {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 88px;
  width: min(420px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.hero-overlay-content h1 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.hero-overlay-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.primary-button {
  padding: 12px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.28);
}

.primary-button:hover,
.section-more:hover,
.big-search button:hover,
.header-search button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.primary-button.small {
  padding: 9px 16px;
  font-size: 14px;
}

.primary-button.full {
  width: 100%;
  margin-top: 14px;
}

.ghost-button {
  padding: 11px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-button.dark {
  color: var(--deep);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: 0.25s ease;
}

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

.search-band {
  margin-top: -42px;
  position: relative;
  z-index: 8;
}

.search-band-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

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

.search-band p {
  color: var(--muted);
}

.big-search {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.big-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 15px 18px;
  font-size: 16px;
}

.content-section,
.split-feature,
.overview-grid,
.detail-layout,
.rank-hero,
.filter-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 56px auto;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more {
  padding: 10px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  white-space: nowrap;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(120, 53, 15, 0.1);
  transition: 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(120, 53, 15, 0.18);
}

.card-image {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #451a03;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.35s ease;
}

.movie-card:hover .card-image img {
  transform: scale(1.06);
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.play-chip {
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
}

.rank-badge {
  left: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.32);
}

.card-body {
  padding: 14px;
}

.meta-row {
  justify-content: space-between;
  margin-bottom: 9px;
}

.meta-row span,
.detail-meta span,
.tag-row span {
  color: #92400e;
  background: #ffedd5;
}

.movie-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: 16px;
  line-height: 1.35;
  min-height: 44px;
}

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

.movie-card p {
  display: -webkit-box;
  min-height: 62px;
  margin: 9px 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tag-row {
  gap: 6px;
}

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

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  box-shadow: var(--shadow);
}

.category-tile img,
.category-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-tile img {
  object-fit: cover;
  transition: 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-layer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(69, 26, 3, 0.88));
}

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 18px;
}

.category-tile strong {
  margin-top: 112px;
  font-size: 22px;
  font-style: normal;
}

.category-tile em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.feature-main,
.feature-list,
.detail-card,
.player-card,
.side-panel,
.poster-panel,
.filter-panel,
.category-overview-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

.feature-main {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
}

.feature-main img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-main div {
  padding: 34px;
}

.feature-main span,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #92400e;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 900;
}

.feature-main h2 {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: 36px;
  line-height: 1.18;
}

.feature-main p {
  color: var(--muted);
}

.feature-list {
  padding: 24px;
}

.feature-list h2,
.side-panel h2 {
  margin: 0 0 16px;
  color: var(--deep);
}

.side-recommend {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  transition: 0.22s ease;
}

.side-recommend:hover {
  background: #fff7ed;
}

.side-recommend img {
  width: 70px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
}

.side-recommend strong,
.side-recommend em {
  display: block;
}

.side-recommend strong {
  color: var(--deep);
  line-height: 1.35;
}

.side-recommend em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.block-link {
  width: 100%;
  margin-top: 14px;
}

.page-hero,
.rank-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 56px;
  padding: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.34), transparent 30%),
    linear-gradient(135deg, #fff7ed, #ffedd5);
  box-shadow: var(--shadow);
}

.page-hero h1,
.rank-hero h1 {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.page-hero p,
.rank-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.slim-hero {
  margin-bottom: 26px;
}

.page-actions {
  margin-top: 24px;
}

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

.category-overview-card {
  overflow: hidden;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 180px;
  overflow: hidden;
}

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

.category-overview-body {
  padding: 24px;
}

.category-overview-body h2 {
  margin: 0 0 10px;
  color: var(--deep);
}

.category-overview-body p {
  color: var(--muted);
}

.rank-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: center;
}

.rank-hero-image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(69, 26, 3, 0.22);
}

.rank-hero-text .primary-button {
  margin-top: 24px;
}

.filter-panel {
  padding: 24px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 16px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 900;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  font-size: 15px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

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

.breadcrumb a {
  color: #b45309;
  font-weight: 800;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.62));
  transition: 0.22s ease;
}

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

.play-ring {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 34px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.player-overlay strong {
  max-width: 80%;
  font-size: 22px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.detail-card,
.player-card {
  padding: 24px;
}

.player-card {
  padding: 12px;
}

.detail-card {
  margin-top: 22px;
}

.detail-title-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.detail-title-row h1 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
}

.type-pill {
  flex-shrink: 0;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

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

.detail-card section {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 20px;
}

.detail-card h2 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 24px;
}

.detail-card p {
  margin: 0;
  color: #4b2b12;
  font-size: 16px;
  line-height: 1.9;
}

.lead-text {
  font-size: 18px;
  font-weight: 700;
}

.review-box {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fffbeb, #ffedd5);
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.poster-panel,
.side-panel {
  padding: 18px;
}

.poster-panel img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.compact-card p {
  min-height: 42px;
  -webkit-line-clamp: 2;
}

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

.site-footer {
  margin-top: 70px;
  background: #451a03;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
}

.footer-inner strong {
  color: #fff;
  font-size: 22px;
}

.footer-inner p {
  margin: 8px 0;
}

.footer-links {
  margin: 18px 0;
  color: #fde68a;
}

.copyright {
  color: rgba(255, 255, 255, 0.58);
}

[data-card].is-hidden {
  display: none;
}

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

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

  .hero-overlay-content {
    display: none;
  }
}

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

  .mobile-toggle {
    display: inline-block;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-content h2 {
    font-size: 42px;
  }

  .search-band-inner,
  .split-feature,
  .feature-main,
  .overview-grid,
  .rank-hero,
  .filter-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .feature-main img {
    min-height: 360px;
  }

  .detail-side {
    position: static;
  }

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

@media (max-width: 640px) {
  .header-inner,
  .content-section,
  .split-feature,
  .overview-grid,
  .detail-layout,
  .rank-hero,
  .filter-panel,
  .page-hero,
  .search-band-inner {
    width: min(100% - 22px, 1180px);
  }

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

  .hero-carousel {
    height: 520px;
  }

  .hero-content {
    width: calc(100% - 28px);
  }

  .hero-content h2 {
    font-size: 34px;
  }

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

  .hero-actions {
    gap: 8px;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .hero-arrow {
    display: none;
  }

  .search-band {
    margin-top: -26px;
  }

  .big-search {
    flex-direction: column;
    border-radius: 18px;
  }

  .movie-grid,
  .movie-grid.large-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .section-heading {
    display: block;
  }

  .section-more {
    margin-top: 14px;
  }

  .page-hero,
  .rank-hero {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .detail-card,
  .player-card,
  .side-panel,
  .poster-panel {
    padding: 14px;
  }

  .detail-title-row {
    display: block;
  }

  .type-pill {
    display: inline-block;
    margin-top: 12px;
  }

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