:root {
    --bg: #fffaf3;
    --bg-soft: #fff7ed;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #fed7aa;
    --orange: #ea580c;
    --orange-dark: #c2410c;
    --amber: #f59e0b;
    --shadow: 0 20px 45px rgba(124, 45, 18, 0.14);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 35%, #fffaf3 100%);
}

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

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

button,
input {
    font: inherit;
}

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

.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: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(251, 146, 60, 0.18);
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 10px 28px rgba(234, 88, 12, 0.32);
}

.brand-name {
    font-size: 22px;
    letter-spacing: -0.02em;
}

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

.nav-link,
.mobile-link {
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--orange);
}

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

.header-search input,
.mobile-search input,
.large-search input,
.filter-search-row input,
.table-card-head input {
    border: 1px solid var(--line);
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 16px;
    outline: none;
    color: var(--text);
    min-width: 210px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-search-row input:focus,
.table-card-head input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.18);
}

.header-search button,
.mobile-search button,
.large-search button {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--orange);
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--orange);
    font-size: 28px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(251, 146, 60, 0.18);
}

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

.mobile-panel-inner {
    padding: 14px 0 20px;
}

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

.mobile-link {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff7ed;
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
    background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.80) 45%, rgba(124, 45, 18, 0.35) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(251, 146, 60, 0.35), transparent 30%),
        linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.75) 100%);
}

.hero-content {
    position: relative;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    align-items: center;
    gap: 54px;
    color: #ffffff;
    padding: 78px 0 88px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    color: var(--orange);
    background: rgba(255, 247, 237, 0.95);
    border: 1px solid rgba(251, 146, 60, 0.35);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(46px, 8vw, 86px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-lead {
    max-width: 760px;
    margin: 0;
    font-size: clamp(18px, 3vw, 25px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.tag-row span {
    border-radius: 999px;
    background: rgba(251, 146, 60, 0.14);
    color: var(--orange-dark);
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 13px 22px;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 16px 32px rgba(234, 88, 12, 0.26);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline {
    color: var(--orange);
    background: #ffffff;
    border-color: var(--line);
}

.hero-poster {
    position: relative;
    display: block;
    min-height: 510px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #fb923c, #f59e0b);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    transform: rotate(2deg);
}

.hero-poster img,
.detail-cover-card img,
.poster-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-image.is-missing {
    opacity: 0;
}

.hero-poster span,
.poster-play {
    position: absolute;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(234, 88, 12, 0.92);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(234, 88, 12, 0.36);
}

.hero-poster span {
    left: 50%;
    top: 50%;
    width: 76px;
    height: 76px;
    transform: translate(-50%, -50%);
    font-size: 28px;
}

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

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

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

.stats-strip {
    transform: translateY(-34px);
    position: relative;
    z-index: 8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 22px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.stats-grid div {
    display: grid;
    gap: 4px;
    text-align: center;
}

.stats-grid strong {
    font-size: 30px;
    color: var(--orange);
}

.stats-grid span {
    color: var(--muted);
    font-weight: 700;
}

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

.soft-bg {
    background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.section-heading-row,
.category-overview-head,
.table-card-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.compact-heading {
    margin-bottom: 20px;
}

.section-heading-row h2,
.category-overview-head h2,
.ranking-panel h2,
.table-card-head h2,
.prose-card h2,
.player-side-card h2 {
    margin: 14px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading-row p,
.category-overview-head p,
.ranking-panel p,
.player-side-card p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.text-link {
    color: var(--orange);
    font-weight: 900;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(251, 146, 60, 0.16);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(124, 45, 18, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(124, 45, 18, 0.16);
}

.poster-link {
    display: block;
}

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

.poster-shell img {
    transition: transform 0.3s ease;
}

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

.poster-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.78));
}

.poster-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--orange);
    background: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 900;
}

.poster-play {
    left: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    font-size: 17px;
}

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

.movie-card-title {
    display: -webkit-box;
    min-height: 52px;
    overflow: hidden;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-card-body p {
    display: -webkit-box;
    min-height: 46px;
    margin: 10px 0 14px;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
}

.tag-row {
    margin-top: 14px;
}

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

.category-card,
.ranking-panel,
.table-card,
.prose-card,
.player-side-card,
.category-overview-card,
.filter-panel {
    border: 1px solid rgba(251, 146, 60, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(124, 45, 18, 0.08);
}

.category-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    font-weight: 900;
}

.category-card strong {
    font-size: 22px;
}

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

.category-card p,
.category-card small {
    color: var(--muted);
    line-height: 1.65;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 42px;
    align-items: start;
}

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

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 26px;
}

.rank-list {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.rank-item {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #fff7ed;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    background: #ffedd5;
    transform: translateX(3px);
}

.rank-no {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: var(--orange);
    background: #ffffff;
    font-weight: 900;
}

.top-rank .rank-no {
    color: #ffffff;
    background: var(--orange);
}

.rank-main {
    display: grid;
    gap: 2px;
}

.rank-main strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-main em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.rank-score {
    color: var(--orange);
    font-weight: 900;
    text-align: right;
}

.full-width {
    width: 100%;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #7c2d12 55%, #f97316);
}

.page-hero {
    padding: 92px 0 72px;
}

.compact-page-hero {
    padding: 78px 0 60px;
}

.page-hero h1,
.detail-copy h1 {
    max-width: 860px;
    margin: 16px 0;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.page-hero p,
.detail-one-line {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.75;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.filter-panel-wrap {
    margin-top: -28px;
    position: relative;
    z-index: 2;
}

.filter-panel {
    padding: 22px;
}

.filter-search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.filter-search-row input {
    width: min(100%, 520px);
    border-radius: 18px;
}

.filter-search-row span {
    color: var(--orange);
    font-weight: 900;
}

.quick-filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.quick-filter-group strong {
    min-width: 48px;
}

.quick-filter-group button {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #7c2d12;
    background: #ffffff;
    padding: 7px 12px;
    cursor: pointer;
    font-weight: 800;
}

.quick-filter-group button.is-active,
.quick-filter-group button:hover {
    color: #ffffff;
    background: var(--orange);
    border-color: var(--orange);
}

.category-overview-list {
    display: grid;
    gap: 26px;
}

.category-overview-card {
    padding: 26px;
}

.table-card {
    padding: 26px;
}

.responsive-table {
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

.ranking-table th,
.ranking-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #ffedd5;
    text-align: left;
}

.ranking-table th {
    color: #7c2d12;
    background: #fff7ed;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.ranking-table a {
    color: #111827;
    font-weight: 900;
}

.ranking-table a:hover {
    color: var(--orange);
}

.table-rank {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    color: var(--orange);
    background: #fff7ed;
    font-weight: 900;
}

.large-search {
    max-width: 720px;
    margin-top: 28px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.large-search input {
    flex: 1;
    min-width: 0;
    border: 0;
}

.search-summary {
    margin-bottom: 24px;
    color: var(--muted);
    font-weight: 800;
}

.detail-hero {
    min-height: 640px;
    background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(124, 45, 18, 0.72)), var(--detail-image);
    background-size: cover;
    background-position: center;
}

.detail-hero-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(251, 146, 60, 0.25), transparent 30%),
        linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.85) 100%);
}

.detail-hero-inner {
    position: relative;
    padding: 72px 0;
}

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

.detail-cover-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    background: linear-gradient(135deg, #fb923c, #f59e0b);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

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

.detail-meta-grid span {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
}

.detail-meta-grid strong {
    color: #ffffff;
}

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

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

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.25);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.66));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-overlay span {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    font-size: 34px;
    box-shadow: 0 20px 42px rgba(234, 88, 12, 0.36);
}

.player-side-card,
.prose-card {
    padding: 26px;
}

.mini-meta-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.mini-meta-list span {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff7ed;
    color: #7c2d12;
    font-weight: 800;
}

.prose-card {
    color: #374151;
    line-height: 1.9;
    font-size: 17px;
}

.prose-card h2:first-child {
    margin-top: 0;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 34px;
}

.footer-brand {
    color: #ffffff;
    margin-bottom: 16px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer p,
.site-footer li,
.footer-bottom {
    color: #9ca3af;
    line-height: 1.8;
}

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

.site-footer a:hover {
    color: #fb923c;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

[data-movie-card].is-hidden,
.ranking-table tr.is-hidden {
    display: none;
}

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

    .menu-toggle {
        display: block;
    }

    .hero-content,
    .split-layout,
    .two-column-section,
    .player-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        min-height: 420px;
        max-width: 360px;
        margin: 0 auto;
    }

    .movie-grid,
    .small-grid,
    .mini-grid,
    .category-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranking-panel {
        position: static;
    }
}

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

    .header-inner {
        height: 64px;
    }

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

    .hero-slider,
    .hero-content {
        min-height: 760px;
    }

    .hero-content {
        padding: 48px 0 92px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 42px;
    }

    .hero-poster {
        min-height: 360px;
        transform: none;
    }

    .stats-grid,
    .movie-grid,
    .small-grid,
    .mini-grid,
    .category-grid,
    .footer-grid,
    .detail-intro-grid,
    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

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

    .section-heading-row,
    .category-overview-head,
    .table-card-head,
    .filter-search-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-cover-card {
        max-width: 280px;
    }

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

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