:root {
  --sky: #0284c7;
  --sky-dark: #0369a1;
  --blue: #1d4ed8;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--sky), var(--blue));
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--sky);
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.22);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.logo-text em {
  font-size: 12px;
  font-style: normal;
  opacity: 0.86;
}

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

.nav-link {
  padding: 8px 0;
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #dbeafe;
  opacity: 1;
}

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

.header-search input,
.mobile-search input {
  width: 230px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  outline: none;
  backdrop-filter: blur(12px);
}

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

.header-search button,
.mobile-search button,
.callout-search button {
  border: 0;
  color: var(--sky);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 12px;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin: 14px auto;
  width: min(1180px, 100%);
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(2, 132, 199, 0.95), rgba(29, 78, 216, 0.98)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 32%);
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(70px);
  pointer-events: none;
}

.hero-glow-one {
  top: -140px;
  left: -100px;
}

.hero-glow-two {
  right: -80px;
  bottom: -140px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 42px;
  align-items: center;
  min-height: 640px;
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bae6fd;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-copy p,
.page-hero p,
.detail-one-line {
  max-width: 760px;
  color: #dbeafe;
  font-size: 20px;
}

.hero-actions,
.detail-actions,
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--sky);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.18);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.ghost-button.dark {
  color: var(--sky);
  border-color: rgba(2, 132, 199, 0.24);
  background: rgba(2, 132, 199, 0.08);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-stats div {
  min-width: 128px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
}

.hero-stats span {
  display: block;
  color: #dbeafe;
  font-size: 13px;
}

.hero-carousel {
  position: relative;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.40);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
  opacity: 0;
  transform: translateX(28px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(15, 23, 42, 0.86));
}

.hero-slide-content {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 2;
}

.hero-slide-content span {
  color: #bae6fd;
  font-size: 13px;
  font-weight: 800;
}

.hero-slide-content h2 {
  margin: 8px 0 8px;
  font-size: 30px;
  line-height: 1.1;
}

.hero-slide-content p {
  margin: 0 0 18px;
  color: #e0f2fe;
}

.hero-slide-content a {
  display: inline-flex;
  color: var(--sky);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

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

.hero-dots button.is-active {
  width: 26px;
  background: var(--white);
}

.section-block {
  padding: 72px 0;
}

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

.section-title.align-left {
  display: block;
}

.section-title span {
  display: block;
  color: var(--sky);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 6px 0 0;
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.section-title a,
.text-button {
  color: var(--sky);
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.90);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 132, 199, 0.24);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.movie-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.movie-poster {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.movie-card-large .movie-poster {
  aspect-ratio: 16 / 10;
}

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

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

.poster-play,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.poster-play {
  right: 14px;
  bottom: 14px;
  color: var(--white);
  background: rgba(2, 132, 199, 0.88);
  padding: 8px 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.rank-badge {
  top: 12px;
  left: 12px;
  color: var(--white);
  background: linear-gradient(135deg, #f97316, #ef4444);
  padding: 7px 11px;
  font-size: 12px;
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 8px 0;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.25;
}

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

.movie-card p {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--slate-600);
  font-size: 14px;
}

.tag-list,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span,
.detail-tags span {
  color: var(--sky-dark);
  background: #e0f2fe;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.soft-section {
  background: linear-gradient(135deg, #f8fafc, #eef6ff);
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--blue));
  border-radius: 50%;
  font-size: 22px;
}

.category-tile strong,
.category-tile em,
.category-tile p {
  position: relative;
  z-index: 2;
  display: block;
}

.category-tile strong {
  margin-top: 18px;
  color: var(--slate-900);
  font-size: 20px;
}

.category-tile em {
  color: var(--sky);
  font-style: normal;
  font-weight: 900;
}

.category-tile p {
  color: var(--slate-600);
  font-size: 13px;
}

.category-tile img {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 135px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.18;
  transform: rotate(8deg);
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: start;
}

.search-callout,
.ranking-card,
.prose-card,
.content-card,
.info-card,
.player-panel {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.search-callout {
  padding: 32px;
}

.search-callout p {
  margin: 0 0 24px;
  color: var(--slate-600);
  font-size: 18px;
}

.callout-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 13px 18px;
  outline: none;
}

.callout-search button {
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--blue));
}

.ranking-card {
  overflow: hidden;
}

.ranking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--blue));
}

.ranking-head span,
.ranking-head a {
  font-weight: 900;
}

.ranking-list {
  display: grid;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--slate-200);
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row span {
  grid-row: span 2;
  color: var(--sky);
  font-size: 22px;
  font-weight: 900;
}

.rank-row strong {
  overflow: hidden;
  color: var(--slate-900);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  color: var(--slate-500);
  font-size: 13px;
  font-style: normal;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(2, 132, 199, 0.95), rgba(29, 78, 216, 0.98)),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.25), transparent 32%);
  padding: 86px 0;
}

.page-hero h1 {
  max-width: 900px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.category-overview-cover {
  min-height: 270px;
  background: #e0f2fe;
}

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

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

.category-overview-body span {
  color: var(--sky);
  font-size: 13px;
  font-weight: 900;
}

.category-overview-body h2 {
  margin: 8px 0 10px;
  color: var(--slate-900);
  font-size: 30px;
}

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

.mini-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.mini-link-list a {
  color: var(--slate-700);
  background: var(--slate-100);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #dbeafe;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--white);
}

.filter-panel {
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.filter-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, minmax(140px, 1fr));
  gap: 14px;
}

.filter-row label {
  display: grid;
  gap: 8px;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 900;
}

.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: #ffffff;
  padding: 0 14px;
  color: var(--slate-800);
  outline: none;
}

.filter-row input:focus,
.filter-row select:focus,
.callout-search input:focus {
  border-color: rgba(2, 132, 199, 0.5);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.10);
}

.filter-count {
  margin: 14px 0 0;
  color: var(--slate-500);
  font-weight: 800;
}

.no-results {
  display: none;
  color: #dc2626;
  font-weight: 800;
}

.no-results.is-visible {
  display: block;
}

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

.detail-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 132, 199, 0.88)),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.22), transparent 30%);
  padding: 56px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

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

.detail-info h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.detail-tags span {
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.14);
}

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

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

.player-panel {
  overflow: hidden;
}

.player-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--blue));
}

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

.player-title-row span {
  color: #dbeafe;
  font-size: 13px;
  font-weight: 800;
}

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

.movie-video {
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-start {
  position: absolute;
  inset: auto auto 50% 50%;
  transform: translate(-50%, 50%);
  z-index: 4;
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--blue));
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(2, 132, 199, 0.36);
}

.player-shell.is-playing .player-start {
  display: none;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 3;
  margin: 0;
  color: #dbeafe;
  font-size: 13px;
}

.content-card,
.info-card,
.prose-card {
  padding: 26px;
}

.content-card h2,
.info-card h2,
.prose-card h2 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: 24px;
}

.content-card p,
.prose-card p {
  margin: 0 0 14px;
  color: var(--slate-700);
  font-size: 17px;
}

.info-card dl {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.info-card dt {
  color: var(--slate-500);
  font-weight: 900;
}

.info-card dd {
  margin: 0;
  color: var(--slate-800);
}

.info-card a {
  color: var(--sky);
  font-weight: 900;
}

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

.prose-card {
  max-width: 860px;
}

.site-footer {
  color: #dbeafe;
  background: var(--slate-900);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.site-footer p {
  color: #cbd5e1;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

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

[hidden] {
  display: none !important;
}

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

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

  .two-column-section,
  .detail-main-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-search {
    grid-column: 1 / -1;
  }
}

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

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

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

  .hero-carousel {
    min-height: 520px;
  }

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

  .movie-grid,
  .catalog-grid,
  .search-grid,
  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .site-container {
    width: min(100% - 22px, 1180px);
  }

  .hero-inner {
    min-height: auto;
    padding: 52px 0;
  }

  .hero-copy p,
  .page-hero p,
  .detail-one-line {
    font-size: 17px;
  }

  .hero-carousel {
    min-height: 460px;
  }

  .movie-grid,
  .catalog-grid,
  .search-grid,
  .ranking-grid,
  .category-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-large {
    grid-column: span 1;
  }

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

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

  .mobile-search {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-search input {
    width: 100%;
  }

  .callout-search {
    align-items: stretch;
    flex-direction: column;
  }
}
