:root {
    color-scheme: light;
    --cyan: #0891b2;
    --cyan-dark: #0e7490;
    --blue: #2563eb;
    --indigo: #4f46e5;
    --slate-950: #06111f;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --soft-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    --card-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: linear-gradient(180deg, #f8fdff 0%, #eef8ff 42%, #ffffff 100%);
    color: var(--slate-900);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    font-size: 16px;
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.30);
}

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

.desktop-nav a {
    position: relative;
    color: var(--slate-700);
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--cyan);
}

.desktop-nav a.is-active::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    content: "";
}

.header-search {
    display: flex;
    align-items: center;
    width: 290px;
    padding: 4px;
    border: 1px solid rgba(8, 145, 178, 0.18);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.86);
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 8px 12px;
    background: transparent;
    color: var(--slate-800);
}

.header-search button,
.quick-search button,
.filter-panel button {
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.22);
}

.mobile-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    padding: 8px 10px;
    background: var(--slate-100);
    color: var(--slate-800);
    font-size: 22px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

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

.mobile-panel a,
.mobile-cats a {
    border-radius: 12px;
    padding: 10px 12px;
    background: var(--slate-100);
    color: var(--slate-700);
    font-weight: 700;
}

.mobile-panel a.is-active {
    background: rgba(8, 145, 178, 0.10);
    color: var(--cyan);
}

.mobile-panel form {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

.mobile-panel input {
    min-width: 0;
    flex: 1;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    padding: 10px 14px;
    outline: 0;
}

.mobile-panel button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    color: var(--white);
    font-weight: 800;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-backdrop::after {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.30), transparent 30%),
        linear-gradient(180deg, transparent 65%, var(--slate-950) 100%);
    content: "";
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
    align-items: center;
    width: min(1280px, calc(100% - 32px));
    min-height: 610px;
    margin: 0 auto;
    gap: 44px;
    padding: 70px 0 108px;
    color: var(--white);
}

.hero-copy {
    max-width: 790px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #67e8f9;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    font-weight: 950;
}

.hero-summary {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

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

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

.hero-tags span,
.detail-meta span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

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

.primary-btn,
.ghost-btn,
.section-more,
.filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    padding: 13px 24px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    color: var(--white);
    box-shadow: 0 20px 45px rgba(8, 145, 178, 0.32);
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.26);
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.filter-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

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

.hero-controls {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 82px;
    display: flex;
    gap: 10px;
    width: min(1280px, calc(100% - 32px));
    transform: translateX(-50%);
}

.hero-dot {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.hero-dot.is-active {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.38);
}

.hero-category-bar {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 18px;
    display: flex;
    gap: 10px;
    width: min(1280px, calc(100% - 32px));
    overflow-x: auto;
    transform: translateX(-50%);
    padding-bottom: 4px;
}

.hero-category-bar a {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    padding: 9px 15px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.quick-search,
.content-section,
.category-wall,
.page-main,
.detail-main,
.story-section {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.quick-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
    gap: 28px;
    align-items: center;
    margin-top: -42px;
    padding: 28px;
    border: 1px solid rgba(8, 145, 178, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(16px);
}

.quick-search h2,
.section-head h2,
.story-card h2 {
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 950;
}

.quick-search p,
.section-head p,
.page-hero p,
.story-card p,
.card-body p,
.category-tile span,
.footer-inner p {
    color: var(--slate-600);
}

.quick-search form {
    display: flex;
    gap: 10px;
    border: 1px solid rgba(8, 145, 178, 0.16);
    border-radius: 999px;
    padding: 6px;
    background: var(--white);
}

.quick-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 10px 14px;
    background: transparent;
}

.content-section,
.category-wall {
    margin-top: 70px;
}

.no-top {
    margin-top: 26px;
}

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

.section-head p {
    max-width: 760px;
    margin: 10px 0 0;
}

.section-more,
.filter-link {
    flex: 0 0 auto;
    padding: 10px 18px;
    background: rgba(8, 145, 178, 0.10);
    color: var(--cyan-dark);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(8, 145, 178, 0.10);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    border-color: rgba(8, 145, 178, 0.28);
    transform: translateY(-6px);
    box-shadow: var(--card-shadow);
}

.card-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #164e63);
}

.card-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(2, 6, 23, 0.62) 100%);
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--cyan-dark);
    font-size: 12px;
    font-weight: 900;
}

.rank-no {
    position: absolute;
    left: 12px;
    top: 12px;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: var(--white);
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.28);
}

.card-body {
    padding: 16px;
}

.card-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--slate-900);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 950;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    gap: 8px;
    margin-top: 10px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 700;
}

.card-meta span:not(:last-child)::after {
    margin-left: 8px;
    color: var(--slate-300);
    content: "·";
}

.card-body p {
    display: -webkit-box;
    min-height: 44px;
    margin: 10px 0 0;
    overflow: hidden;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag-row span {
    border-radius: 999px;
    padding: 5px 9px;
    background: rgba(8, 145, 178, 0.09);
    color: var(--cyan-dark);
    font-size: 12px;
    font-weight: 800;
}

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

.category-tile {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(8, 145, 178, 0.12);
    border-radius: var(--radius-md);
    padding: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.20), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 255, 0.90));
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile strong {
    color: var(--slate-900);
    font-size: 22px;
    font-weight: 950;
}

.category-tile span {
    margin-top: 12px;
    font-size: 14px;
}

.category-tile em {
    margin-top: 18px;
    color: var(--cyan-dark);
    font-style: normal;
    font-weight: 900;
}

.page-main,
.detail-main {
    padding: 42px 0 80px;
}

.page-hero {
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 58px;
    background:
        radial-gradient(circle at 90% 10%, rgba(34, 211, 238, 0.24), transparent 30%),
        linear-gradient(135deg, var(--slate-950), #0f3a55 56%, #155e75);
    color: var(--white);
    box-shadow: var(--soft-shadow);
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 66px);
}

.page-hero p:not(.eyebrow) {
    max-width: 780px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.small-hero,
.category-hero,
.ranking-hero {
    min-height: 280px;
}

.filter-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 26px 0 0;
    padding: 18px;
    border: 1px solid rgba(8, 145, 178, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.filter-panel input,
.filter-panel select {
    min-height: 44px;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    padding: 0 16px;
    background: var(--white);
    color: var(--slate-700);
    outline: 0;
}

.filter-panel input {
    min-width: min(100%, 360px);
    flex: 1;
}

.empty-state {
    display: none;
    margin-top: 28px;
    border-radius: var(--radius-md);
    padding: 30px;
    background: rgba(8, 145, 178, 0.08);
    color: var(--slate-700);
    text-align: center;
    font-weight: 900;
}

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

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

.breadcrumb a {
    color: var(--cyan-dark);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 30px;
    background:
        radial-gradient(circle at 88% 10%, rgba(34, 211, 238, 0.22), transparent 34%),
        linear-gradient(135deg, var(--slate-950), #0f3a55 58%, #155e75);
    color: var(--white);
    box-shadow: var(--soft-shadow);
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

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

.detail-info h1 {
    font-size: clamp(40px, 6vw, 76px);
}

.detail-one-line {
    max-width: 820px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.detail-meta {
    margin-top: 24px;
}

.large-tags span {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
}

.detail-info .primary-btn {
    margin-top: 28px;
}

.player-section {
    margin-top: 34px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #020617;
    box-shadow: var(--card-shadow);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.76));
    color: var(--white);
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-cover strong {
    padding: 0 20px;
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 950;
    text-align: center;
}

.player-cover span {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
}

.big-play {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 22px 55px rgba(8, 145, 178, 0.36);
}

.story-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.story-card {
    border: 1px solid rgba(8, 145, 178, 0.12);
    border-radius: var(--radius-md);
    padding: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.story-card p {
    margin: 16px 0 0;
    font-size: 16px;
}

.related-section {
    width: 100%;
}

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

.site-footer {
    margin-top: 80px;
    background: var(--slate-950);
    color: var(--white);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
    gap: 28px;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
}

.footer-inner strong {
    font-size: 24px;
}

.footer-inner p {
    color: rgba(255, 255, 255, 0.68);
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.footer-inner nav a {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-copy {
    grid-column: 1 / -1;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 18px;
    text-align: center;
}

@media (max-width: 1120px) {
    .header-search {
        display: none;
    }

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

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

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

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

    .hero {
        min-height: 760px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 44px;
    }

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

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

    .quick-search form {
        border-radius: 24px;
        flex-direction: column;
    }

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

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

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

    .page-hero {
        padding: 38px 24px;
    }

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

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

    .footer-inner nav {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .header-inner {
        height: 62px;
    }

    .brand {
        font-size: 19px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        min-height: 620px;
    }

    .hero-tags span,
    .detail-meta span {
        font-size: 12px;
    }

    .hero-controls {
        bottom: 88px;
    }

    .hero-category-bar {
        bottom: 20px;
    }

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

    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-panel input,
    .filter-panel select,
    .filter-link {
        width: 100%;
    }

    .story-card,
    .detail-hero {
        padding: 22px;
    }
}
