:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-500: #ec4899;
    --amber-100: #fef3c7;
    --amber-400: #fbbf24;
    --green-50: #f0fdf4;
    --blue-50: #eff6ff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-500: #64748b;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 30px rgba(244, 63, 94, 0.12);
    --radius: 24px;
    --wrap: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-900);
    background: linear-gradient(135deg, var(--rose-50), var(--white) 46%, var(--amber-100));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(244, 63, 94, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.nav-shell {
    width: min(var(--wrap), calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    font-weight: 900;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.24);
}

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

.brand-text strong,
.footer-brand strong {
    font-size: 20px;
    background: linear-gradient(90deg, var(--rose-600), var(--pink-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    color: var(--slate-500);
    font-size: 12px;
}

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

.nav-link,
.mobile-link {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--slate-700);
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--rose-600);
    background: var(--rose-50);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--rose-50);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--rose-600);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    width: min(var(--wrap), calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.hero-carousel {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: var(--slate-900);
}

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

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

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

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

.hero-overlay,
.detail-hero-shade,
.ranking-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.54), rgba(225, 29, 72, 0.18)),
        linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--wrap), calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    padding-top: 72px;
}

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

.hero-content h1 {
    max-width: 760px;
    margin: 18px 0 18px;
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 720px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.tag-row span,
.detail-tags span {
    color: var(--rose-600);
    background: var(--rose-50);
}

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

.primary-button,
.ghost-button,
.section-more,
.search-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}

.primary-button {
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-600), var(--pink-500));
    box-shadow: 0 16px 30px rgba(225, 29, 72, 0.28);
}

.primary-button:hover,
.section-more:hover,
.search-clear:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(225, 29, 72, 0.34);
}

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

.ghost-button.dark {
    color: var(--rose-600);
    border-color: rgba(225, 29, 72, 0.22);
    background: var(--white);
}

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

.hero-dot {
    width: 38px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: 0.25s ease;
}

.hero-dot.is-active {
    width: 64px;
    background: var(--white);
}

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

.home-search {
    position: relative;
    z-index: 10;
    margin-top: -54px;
}

.search-panel {
    padding: 22px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-label {
    display: block;
    margin-bottom: 10px;
    color: var(--slate-700);
    font-weight: 900;
}

.search-box {
    display: flex;
    gap: 12px;
}

.site-search {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    color: var(--slate-900);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    background: var(--slate-50);
    outline: none;
}

.site-search:focus {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.search-clear,
.section-more {
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-600), var(--pink-500));
}

.empty-state {
    display: none;
    margin: 16px 0 0;
    color: var(--slate-500);
    font-weight: 700;
}

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

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--slate-500);
}

.section-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    color: var(--white);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    box-shadow: var(--soft-shadow);
    font-weight: 900;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

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

.poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-100), var(--amber-100));
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent);
}

.type-badge,
.rank-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    color: var(--white);
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.88);
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.rank-badge {
    right: 14px;
    left: auto;
    background: rgba(251, 191, 36, 0.92);
    color: var(--slate-900);
}

.card-body {
    padding: 18px;
}

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

.card-body h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
}

.card-body h2 a:hover {
    color: var(--rose-600);
}

.card-body p {
    min-height: 52px;
    margin: 0 0 14px;
    color: var(--slate-500);
    font-size: 14px;
}

.soft-section {
    background: linear-gradient(135deg, var(--green-50), var(--white), var(--blue-50));
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 36px;
}

.rank-box {
    display: grid;
    gap: 12px;
}

.rank-line {
    display: grid;
    grid-template-columns: 46px 58px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: 18px;
    background: var(--white);
    transition: 0.25s ease;
}

.rank-line:hover {
    transform: translateX(4px);
    box-shadow: var(--soft-shadow);
}

.rank-line img {
    width: 58px;
    height: 74px;
    object-fit: cover;
    border-radius: 14px;
}

.rank-number {
    color: var(--rose-600);
    font-size: 22px;
    font-weight: 900;
}

.rank-copy {
    display: grid;
    gap: 4px;
}

.rank-copy small {
    color: var(--slate-500);
}

.rank-line em {
    color: var(--amber-400);
    font-style: normal;
    font-weight: 900;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 184px;
    padding: 22px;
    border: 1px solid rgba(244, 63, 94, 0.14);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--white), var(--rose-50));
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

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

.category-card span {
    color: var(--rose-600);
    font-weight: 900;
}

.category-card strong {
    display: block;
    margin: 8px 0;
    font-size: 28px;
}

.category-card p {
    max-width: 360px;
    margin: 0;
    color: var(--slate-500);
}

.category-stack {
    position: absolute;
    right: 18px;
    bottom: 16px;
    display: flex;
    align-items: flex-end;
}

.category-stack img {
    width: 58px;
    height: 78px;
    object-fit: cover;
    margin-left: -16px;
    border: 3px solid var(--white);
    border-radius: 14px;
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.2);
    transform: rotate(-5deg);
}

.category-stack img:nth-child(2) {
    transform: translateY(-10px) rotate(5deg);
}

.category-stack img:nth-child(3) {
    transform: rotate(9deg);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--rose-100), #fce7f3, var(--amber-100));
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 54px);
}

.cta-inner p {
    max-width: 680px;
    margin: 0 auto 24px;
    color: var(--slate-700);
}

.sub-hero,
.ranking-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 82px;
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-900), var(--rose-600));
}

.sub-hero::after,
.category-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
        radial-gradient(circle at 82% 35%, rgba(251, 191, 36, 0.18), transparent 26%);
}

.sub-hero .wrap {
    position: relative;
    z-index: 2;
}

.sub-hero h1,
.ranking-copy h1 {
    max-width: 760px;
    margin: 14px 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
}

.sub-hero p,
.ranking-copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.small-actions {
    margin-top: 24px;
}

.filter-panel {
    display: grid;
    gap: 16px;
    margin: 22px 0 30px;
    padding: 20px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius);
    background: var(--white);
}

.filter-panel div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.filter-panel strong {
    margin-right: 4px;
}

.filter-panel button {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    color: var(--slate-700);
    background: var(--white);
    cursor: pointer;
}

.filter-panel button.active,
.filter-panel button:hover {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(90deg, var(--rose-600), var(--pink-500));
}

.category-overview-block {
    margin-bottom: 48px;
}

.category-overview-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.category-overview-title h2 {
    margin: 0 0 6px;
    font-size: 30px;
}

.category-overview-title p {
    margin: 0;
    color: var(--slate-500);
}

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

.ranking-hero {
    min-height: 560px;
    padding: 0;
}

.ranking-hero img,
.ranking-hero-shade {
    position: absolute;
    inset: 0;
}

.ranking-copy {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ranking-grid .movie-card-horizontal:nth-child(-n + 12) {
    grid-column: span 2;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 172px 1fr;
}

.movie-card-horizontal .poster {
    aspect-ratio: auto;
    min-height: 240px;
}

.movie-card-horizontal .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-hero {
    min-height: 680px;
    padding: 96px 0 70px;
}

.detail-bg,
.detail-hero-shade {
    position: absolute;
    inset: 0;
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
}

.breadcrumb,
.breadcrumb-sep {
    display: inline-block;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

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

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

.detail-poster {
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

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

.detail-copy h1 {
    margin: 16px 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
}

.lead {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.detail-stats span {
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.player-section {
    margin-top: -70px;
    position: relative;
    z-index: 4;
}

.player-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    background: #000000;
    box-shadow: var(--shadow);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--white);
    border: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.74));
    cursor: pointer;
}

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

.play-icon {
    width: 86px;
    height: 86px;
    display: inline-grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 50%;
    color: var(--rose-600);
    background: var(--white);
    font-size: 36px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.detail-content {
    display: grid;
    gap: 24px;
    padding: 44px 0 0;
}

.story-card {
    padding: 30px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.story-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.story-card p {
    margin: 0;
    color: var(--slate-700);
    font-size: 18px;
}

.accent-card {
    background: linear-gradient(135deg, var(--rose-50), var(--white));
}

.neighbor-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.neighbor-links a {
    padding: 18px 20px;
    border-radius: 18px;
    color: var(--rose-600);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-weight: 900;
}

.site-footer {
    margin-top: 20px;
    border-top: 1px solid rgba(244, 63, 94, 0.14);
    background: linear-gradient(135deg, var(--rose-50), var(--white), var(--amber-100));
}

.footer-grid {
    width: min(var(--wrap), calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0 34px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 36px;
}

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

.site-footer p,
.footer-bottom {
    color: var(--slate-500);
}

.footer-links {
    display: grid;
    gap: 10px;
}

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

.footer-links a:hover {
    color: var(--rose-600);
}

.footer-bottom {
    width: min(var(--wrap), calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 32px;
    border-top: 1px solid rgba(244, 63, 94, 0.14);
    text-align: center;
}

@media (max-width: 1060px) {
    .movie-grid,
    .mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .ranking-grid .movie-card-horizontal:nth-child(-n + 12) {
        grid-column: span 1;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .brand-text small {
        display: none;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .section-heading,
    .category-overview-title {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .movie-card-horizontal {
        grid-template-columns: 128px 1fr;
    }

    .movie-card-horizontal .poster {
        min-height: 196px;
    }

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

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

    .neighbor-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .nav-shell {
        height: 66px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 17px;
    }

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

    .hero-content {
        padding-top: 64px;
    }

    .hero-content h1,
    .detail-copy h1,
    .sub-hero h1,
    .ranking-copy h1 {
        letter-spacing: -0.02em;
    }

    .search-box {
        flex-direction: column;
    }

    .movie-grid,
    .mini-grid,
    .category-grid,
    .footer-categories {
        grid-template-columns: 1fr;
    }

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

    .movie-card-horizontal .poster {
        aspect-ratio: 3 / 4;
    }

    .card-body p {
        min-height: auto;
    }

    .sub-hero,
    .detail-hero {
        padding: 90px 0 64px;
    }

    .story-card {
        padding: 22px;
    }
}
