:root {
  --toffee-primary: #C87941;
  --toffee-secondary: #E5A76B;
  --toffee-light: #F5E6D3;
  --toffee-cream: #FFF8F0;
  --toffee-caramel: #B8784F;
  --toffee-brown: #8B5A3C;
  --toffee-dark: #6B4423;
  --cloud-white: #FFFFFF;
  --cloud-soft: #F9F9F9;
  --shadow-cloud: 0 8px 32px rgba(200, 121, 65, 0.12);
  --shadow-glow: 0 0 40px rgba(229, 167, 107, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--toffee-dark);
  background: linear-gradient(135deg, var(--toffee-cream) 0%, #ffffff 48%, rgba(245, 230, 211, 0.46) 100%);
  font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.94), rgba(255, 248, 240, 0.86));
  border-bottom: 1px solid rgba(245, 230, 211, 0.55);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-cloud);
}

.header-inner {
  width: min(1200px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-size: 24px;
  background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.desktop-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--toffee-dark);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--toffee-primary);
  background: rgba(245, 230, 211, 0.75);
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.large-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 248, 240, 0.92);
  border: 1px solid rgba(200, 121, 65, 0.12);
  border-radius: 999px;
  padding: 8px 10px 8px 16px;
}

.header-search input,
.mobile-search input,
.large-search input {
  width: 210px;
  border: 0;
  outline: 0;
  color: var(--toffee-dark);
  background: transparent;
}

.header-search button,
.mobile-search button {
  border: 0;
  color: white;
  background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
  border-radius: 999px;
  padding: 7px 13px;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  border: 0;
  color: var(--toffee-primary);
  background: rgba(245, 230, 211, 0.55);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-cloud);
}

.mobile-panel.is-open {
  display: block;
  animation: fadeIn 0.28s ease both;
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-panel nav a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--toffee-dark);
  background: rgba(255, 248, 240, 0.72);
}

.toffee-card {
  border: 1px solid rgba(245, 230, 211, 0.58);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(107, 68, 35, 0.08);
  backdrop-filter: blur(6px);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(107, 68, 35, 0.13);
}

.toffee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.toffee-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.toffee-btn-primary {
  color: white;
  background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: var(--shadow-glow);
}

.toffee-btn-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.hero-section {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 34px auto 70px;
  overflow: hidden;
  border-radius: 36px;
  min-height: 560px;
  background: linear-gradient(135deg, rgba(245, 230, 211, 0.85), rgba(255, 248, 240, 0.3));
  box-shadow: var(--shadow-cloud);
}

.hero-cloud {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.68;
  animation: float 7s ease-in-out infinite;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(229, 167, 107, 0.18));
}

.hero-cloud.one {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -70px;
}

.hero-cloud.two {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -80px;
  animation-delay: -2s;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 22, 8, 0.86) 0%, rgba(107, 68, 35, 0.62) 48%, rgba(255, 248, 240, 0.18) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 44px;
  align-items: center;
  padding: 58px;
}

.hero-copy {
  color: white;
  max-width: 650px;
}

.hero-kicker,
.detail-kicker,
.page-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 14px;
  color: white;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-tags,
.tag-row,
.detail-tags,
.category-chips,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin: 24px 0;
}

.hero-tags span,
.tag-row span,
.detail-tags a,
.category-chips a,
.tag-cloud a {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--toffee-dark);
  background: rgba(245, 230, 211, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

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

.hero-poster {
  display: block;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 58px;
  bottom: 34px;
  display: flex;
  gap: 9px;
}

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

.hero-dots button.is-active {
  width: 36px;
  background: white;
}

.section-wrap,
.page-main {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section-wrap {
  margin-bottom: 70px;
}

.no-side-padding {
  width: 100%;
}

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

.section-heading a {
  color: var(--toffee-primary);
  font-weight: 700;
}

.section-title {
  position: relative;
  display: inline-flex;
  margin: 0;
  color: var(--toffee-dark);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 800;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--toffee-secondary), rgba(229, 167, 107, 0));
}

.category-grid,
.movie-grid,
.overview-grid,
.rankings-grid {
  display: grid;
  gap: 22px;
}

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

.category-card {
  display: block;
  padding: 24px;
  min-height: 210px;
}

.category-card strong,
.overview-main strong {
  display: block;
  margin-bottom: 14px;
  font-size: 38px;
}

.category-card h3,
.overview-main h2 {
  margin: 0 0 8px;
  color: var(--toffee-dark);
  font-size: 20px;
}

.category-card p,
.overview-main p {
  margin: 0 0 16px;
  color: rgba(139, 90, 60, 0.76);
  font-size: 14px;
}

.category-card div,
.overview-links {
  display: grid;
  gap: 6px;
  color: var(--toffee-primary);
  font-size: 13px;
  font-weight: 700;
}

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

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

.movie-card {
  overflow: hidden;
}

.movie-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: rgba(245, 230, 211, 0.45);
}

.movie-cover img,
.list-cover img,
.rank-link img,
.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-cover img,
.movie-list-card:hover .list-cover img {
  transform: scale(1.08);
}

.cover-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: white;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
}

.movie-body {
  padding: 16px;
}

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(139, 90, 60, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.movie-meta-line span {
  display: inline-flex;
  align-items: center;
}

.movie-meta-line span + span::before {
  content: "·";
  margin-right: 8px;
  color: rgba(139, 90, 60, 0.42);
}

.movie-card h3,
.movie-list-card h3 {
  margin: 0 0 8px;
  color: var(--toffee-dark);
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a,
.movie-list-card h3 a {
  transition: color 0.25s ease;
}

.movie-card h3 a:hover,
.movie-list-card h3 a:hover {
  color: var(--toffee-primary);
}

.movie-card p,
.movie-list-card p {
  margin: 0 0 14px;
  color: rgba(139, 90, 60, 0.78);
  font-size: 14px;
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 28px;
}

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

.movie-list-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
}

.list-cover {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  background: rgba(245, 230, 211, 0.45);
}

.list-content {
  align-self: center;
}

.ranking-panel {
  padding: 24px;
}

.ranking-panel h2 {
  margin: 0 0 16px;
  color: var(--toffee-dark);
  font-size: 24px;
}

.ranking-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-panel li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.ranking-panel li > span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  font-size: 12px;
  font-weight: 800;
}

.rank-link {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}

.rank-link img {
  grid-row: 1 / span 2;
  width: 54px;
  height: 68px;
  border-radius: 12px;
}

.rank-title {
  color: var(--toffee-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.rank-meta {
  color: rgba(139, 90, 60, 0.72);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.tag-cloud {
  padding: 22px;
}

.tag-cloud a:hover,
.detail-tags a:hover,
.category-chips a:hover {
  color: white;
  background: var(--toffee-secondary);
  transform: translateY(-1px);
}

.callout-card {
  padding: 42px;
  text-align: center;
  background: linear-gradient(135deg, rgba(229, 167, 107, 0.18), rgba(255, 248, 240, 0.92));
}

.callout-card h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
}

.callout-card p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(139, 90, 60, 0.78);
}

.page-main {
  padding: 30px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: rgba(139, 90, 60, 0.72);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--toffee-primary);
  font-weight: 700;
}

.breadcrumb i {
  font-style: normal;
  color: rgba(139, 90, 60, 0.38);
}

.page-hero {
  margin-bottom: 42px;
  padding: 42px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 230, 211, 0.55));
}

.page-hero span {
  color: var(--toffee-primary);
  background: rgba(229, 167, 107, 0.16);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(139, 90, 60, 0.78);
  font-size: 18px;
}

.category-hero .category-chips {
  margin-top: 24px;
}

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

.overview-card {
  padding: 24px;
}

.overview-main {
  display: block;
}

.overview-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 230, 211, 0.7);
}

.overview-links a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rankings-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.full-panel {
  min-width: 0;
}

.detail-main {
  display: grid;
  gap: 28px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  padding: 28px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  background: rgba(245, 230, 211, 0.45);
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
}

.detail-info p {
  margin: 0 0 24px;
  color: rgba(139, 90, 60, 0.82);
  font-size: 18px;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.detail-facts li {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 248, 240, 0.82);
}

.detail-facts span {
  display: block;
  color: rgba(139, 90, 60, 0.64);
  font-size: 12px;
}

.detail-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--toffee-dark);
  font-size: 14px;
}

.player-section,
.content-section {
  padding: 28px;
}

.player-section h2,
.content-section h2 {
  margin: 0 0 18px;
  color: var(--toffee-dark);
  font-size: 26px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 16 / 9;
  background: #080604;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: white;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-left: 5px;
  color: white;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: var(--shadow-glow);
  font-size: 34px;
}

.content-section p {
  margin: 0 0 24px;
  color: rgba(139, 90, 60, 0.86);
  font-size: 17px;
}

.large-search {
  max-width: 680px;
  margin-top: 26px;
  padding: 10px;
}

.large-search input {
  flex: 1;
  width: auto;
  padding-left: 8px;
  font-size: 18px;
}

.search-empty {
  padding: 38px;
  text-align: center;
  color: rgba(139, 90, 60, 0.76);
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(245, 230, 211, 0.72);
  background: linear-gradient(135deg, var(--toffee-light), var(--toffee-cream) 55%, #fff);
}

.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-brand p,
.footer-bottom {
  color: rgba(139, 90, 60, 0.78);
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
}

.footer-column h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: rgba(139, 90, 60, 0.82);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--toffee-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(200, 121, 65, 0.12);
  padding: 18px 16px;
  text-align: center;
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .hero-content {
    grid-template-columns: 1fr;
    padding: 42px;
  }

  .hero-poster {
    display: none;
  }

  .category-grid,
  .movie-grid,
  .dense-grid,
  .overview-grid,
  .rankings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .footer-inner,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    max-width: 340px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    width: min(100% - 24px, 1200px);
    height: 68px;
  }

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

  .hero-section {
    width: min(100% - 24px, 1200px);
    min-height: 570px;
    margin-top: 18px;
    border-radius: 28px;
  }

  .hero-content {
    padding: 28px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

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

  .hero-dots {
    left: 28px;
    bottom: 24px;
  }

  .section-wrap,
  .page-main {
    width: min(100% - 24px, 1200px);
  }

  .category-grid,
  .movie-grid,
  .dense-grid,
  .overview-grid,
  .rankings-grid,
  .detail-facts {
    grid-template-columns: 1fr;
  }

  .movie-list-card {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .callout-card,
  .player-section,
  .content-section,
  .detail-hero {
    padding: 22px;
    border-radius: 22px;
  }

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

  .large-search,
  .mobile-search {
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
  }

  .large-search input,
  .mobile-search input {
    width: 100%;
    min-height: 44px;
  }
}
