/*
  Static movie site styles generated from the uploaded site theme.
  The visual system mirrors the source bundle: light background, dawn-orange accents,
  sticky translucent header, large image Hero, rounded cards and responsive grids.
*/
:root {
  --dawn-50: #fff7ed;
  --dawn-100: #ffedd5;
  --dawn-300: #ffd699;
  --dawn-400: #ffc56b;
  --dawn-500: #ffb347;
  --dawn-600: #ff9f24;
  --dawn-700: #f58700;
  --ink-900: #111827;
  --ink-800: #1f2937;
  --ink-700: #374151;
  --ink-600: #4b5563;
  --ink-500: #6b7280;
  --paper: #ffffff;
  --paper-soft: #f9fafb;
  --line: #e5e7eb;
  --shadow-card: 0 4px 18px rgba(17, 24, 39, 0.08);
  --shadow-card-hover: 0 10px 30px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 42%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  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-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
  box-shadow: 0 1px 8px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1280px;
  height: 64px;
  padding: 0 18px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dawn-600);
  font-weight: 800;
  transition: color 0.2s ease;
}

.brand:hover,
.footer-brand:hover {
  color: var(--dawn-700);
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--dawn-500), var(--dawn-700));
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(255, 159, 36, 0.28);
}

.brand-text {
  white-space: nowrap;
  font-size: 21px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-700);
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--dawn-600);
}

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

.header-search input,
.mobile-search input,
.filter-control input,
.filter-control select,
.search-panel input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-800);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-control input:focus,
.filter-control select:focus,
.search-panel input:focus {
  border-color: var(--dawn-500);
  box-shadow: 0 0 0 4px rgba(255, 159, 36, 0.16);
}

.header-search button,
.mobile-search button,
.primary-button,
.secondary-button,
.filter-button,
.play-button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search button,
.mobile-search button,
.primary-button,
.filter-button,
.play-button {
  color: #ffffff;
  background: var(--dawn-600);
}

.header-search button {
  padding: 9px 16px;
}

.header-search button:hover,
.mobile-search button:hover,
.primary-button:hover,
.filter-button:hover,
.play-button:hover {
  background: var(--dawn-700);
  transform: translateY(-1px);
}

.secondary-button {
  color: var(--dawn-700);
  background: #ffffff;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
}

.mobile-menu-button span {
  width: 22px;
  height: 2px;
  background: var(--ink-700);
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  padding: 14px 18px 20px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.mobile-panel.is-open {
  display: grid;
  gap: 13px;
}

.mobile-panel a {
  padding: 8px 0;
  color: var(--ink-700);
  font-weight: 650;
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
  background: #111827;
}

.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;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: 1280px;
  padding: 56px 24px;
  margin: 0 auto;
  color: #ffffff;
}

.hero-content h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 24px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.hero-tags,
.detail-tags,
.card-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tags span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 159, 36, 0.95);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.7);
}

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

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

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

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

.hero-dots button.is-active {
  width: 34px;
  background: var(--dawn-500);
}

.main-wrap,
.page-wrap {
  max-width: 1280px;
  padding: 48px 18px;
  margin: 0 auto;
}

.page-hero {
  padding: 52px 18px;
  background: linear-gradient(135deg, var(--dawn-50), #fff, #eff6ff);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.03em;
}

.page-hero p {
  max-width: 860px;
  margin: 0;
  color: var(--ink-600);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-500);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--dawn-700);
}

.content-section {
  margin-bottom: 64px;
}

.content-section.section-soft {
  padding: 34px;
  background: linear-gradient(90deg, var(--dawn-50), #fff7ed 48%, #eff6ff 100%);
  border-radius: 28px;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.section-desc {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--ink-600);
  line-height: 1.7;
}

.section-more {
  color: var(--dawn-700);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.movie-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 260px);
  gap: 18px;
  padding-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.movie-strip::-webkit-scrollbar {
  display: none;
}

.movie-card a {
  display: block;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3f4f6, #fed7aa);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-wrap {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

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

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

.poster-mask {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.04));
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-mask {
  opacity: 1;
}

.year-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.year-badge {
  right: 10px;
  background: var(--dawn-600);
}

.rank-badge {
  left: 10px;
  background: rgba(17, 24, 39, 0.76);
}

.play-hover {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 11px 12px;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  background: rgba(255, 159, 36, 0.94);
  border-radius: 999px;
  transform: translateY(120%);
  transition: transform 0.25s ease;
}

.movie-card:hover .play-hover {
  transform: translateY(0);
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 6px;
  overflow: hidden;
  color: var(--ink-900);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

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

.movie-card p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card.compact h3 {
  min-height: auto;
  font-size: 15px;
  -webkit-line-clamp: 1;
}

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

.card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta span {
  padding: 5px 9px;
  color: var(--dawn-700);
  background: var(--dawn-50);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.card-meta em {
  color: var(--ink-500);
  font-size: 13px;
  font-style: normal;
}

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

.category-tile {
  min-height: 180px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.category-tile h2 {
  margin: 0 0 10px;
  color: var(--ink-900);
  font-size: 23px;
}

.category-tile p {
  margin: 0 0 18px;
  color: var(--ink-600);
  line-height: 1.65;
}

.category-count {
  color: var(--dawn-700);
  font-weight: 800;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(160px, 220px));
  gap: 12px;
  padding: 18px;
  margin: 0 0 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.filter-control input,
.filter-control select {
  height: 46px;
  padding: 0 15px;
}

.filter-status {
  margin-bottom: 16px;
  color: var(--ink-600);
  font-weight: 650;
}

.list-row {
  display: grid;
  gap: 14px;
}

.latest-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.latest-row:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.latest-row img {
  width: 150px;
  height: 94px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--dawn-50);
}

.latest-row h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.latest-row p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--ink-600);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.latest-meta {
  display: flex;
  gap: 12px;
  color: var(--ink-500);
  font-size: 14px;
}

.detail-hero {
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  color: #ffffff;
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 36px;
  max-width: 1280px;
  padding: 44px 18px;
  margin: 0 auto;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: linear-gradient(135deg, #374151, #92400e);
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.detail-info .lead {
  margin: 0 0 24px;
  color: #e5e7eb;
  font-size: 19px;
  line-height: 1.75;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 159, 36, 0.9);
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 12px;
  margin: 26px 0;
}

.detail-meta div {
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.detail-meta b {
  display: block;
  margin-bottom: 3px;
  color: #f3f4f6;
}

.detail-meta span {
  color: #d1d5db;
}

.player-section {
  padding: 44px 18px 12px;
  background: #0b1220;
}

.player-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.player-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: #ffffff;
}

.player-title h2 {
  margin: 0;
  font-size: 26px;
}

.player-box {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.player-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: radial-gradient(circle at center, rgba(255, 159, 36, 0.24), rgba(0, 0, 0, 0.72) 58%);
}

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

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 54px;
  padding: 14px 26px;
  box-shadow: 0 16px 34px rgba(255, 159, 36, 0.25);
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.source-list button {
  padding: 9px 14px;
  color: #f3f4f6;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
}

.source-list button.is-active {
  color: #ffffff;
  background: var(--dawn-600);
  border-color: var(--dawn-600);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  max-width: 1280px;
  padding: 46px 18px;
  margin: 0 auto;
}

.article-panel,
.side-panel,
.search-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.article-panel {
  padding: 30px;
}

.article-panel h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.article-panel p {
  margin: 0 0 22px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.9;
}

.side-panel {
  padding: 22px;
  align-self: start;
}

.side-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.side-item img {
  width: 72px;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--dawn-50);
}

.side-item h3 {
  display: -webkit-box;
  margin: 0 0 5px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.search-panel {
  padding: 22px;
  margin-bottom: 26px;
}

.search-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.search-panel input {
  min-height: 48px;
  padding: 0 18px;
}

.empty-state {
  display: none;
  padding: 34px;
  color: var(--ink-600);
  text-align: center;
  background: #ffffff;
  border: 1px dashed #d1d5db;
  border-radius: 22px;
}

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

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  max-width: 1280px;
  padding: 46px 18px 28px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 32px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.footer-grid p,
.footer-grid li {
  color: #9ca3af;
  line-height: 1.75;
}

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

.footer-grid a:hover {
  color: var(--dawn-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  color: #9ca3af;
  border-top: 1px solid #1f2937;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
    font-size: 14px;
  }

  .header-search input {
    width: 180px;
  }

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

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

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

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero {
    height: 66vh;
    min-height: 520px;
  }

  .hero-content {
    padding: 46px 18px 68px;
  }

  .hero-control {
    display: none;
  }

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

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

@media (max-width: 620px) {
  .brand-text {
    font-size: 18px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-tags {
    gap: 8px;
  }

  .main-wrap,
  .page-wrap {
    padding-top: 32px;
  }

  .content-section.section-soft,
  .article-panel {
    padding: 20px;
    border-radius: 22px;
  }

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

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

  .movie-card h3 {
    font-size: 15px;
  }

  .movie-card p {
    font-size: 13px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .latest-row {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .latest-row img {
    width: 110px;
    height: 82px;
  }

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

  .player-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .player-box {
    border-radius: 18px;
  }

  .search-panel form {
    grid-template-columns: 1fr;
  }

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