:root {
    --amber-950: #3d2205;
    --amber-900: #5b3206;
    --amber-800: #7c4305;
    --amber-700: #9a5410;
    --amber-600: #c06a16;
    --amber-500: #e58a20;
    --amber-300: #ffd36b;
    --cream: #fff8ec;
    --paper: #fffaf2;
    --ink: #241607;
    --muted: #7a5a35;
    --line: rgba(122, 90, 53, 0.18);
    --shadow: 0 22px 60px rgba(91, 50, 6, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 211, 107, 0.22), transparent 32rem),
        linear-gradient(180deg, #fff7e8 0%, #fffaf2 42%, #fff6e4 100%);
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #fff;
    background: linear-gradient(90deg, var(--amber-950), var(--amber-800), var(--amber-950));
    box-shadow: 0 14px 35px rgba(61, 34, 5, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 1260px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd36b, #e56f1a);
    box-shadow: 0 12px 28px rgba(229, 111, 26, 0.3);
    font-size: 24px;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 22px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fff1b7, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    margin-top: 4px;
    color: #ffdca0;
    font-size: 12px;
}

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

.nav-link {
    position: relative;
    color: #fff7df;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 3px;
    border-radius: 999px;
    background: #ffd36b;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd36b;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.header-search input,
.mobile-panel input {
    width: 180px;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
}

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

.header-search button,
.mobile-panel button {
    border: 0;
    border-radius: 999px;
    color: var(--amber-950);
    background: #ffd36b;
    padding: 8px 15px;
    font-weight: 800;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: #fff;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 24px 22px;
    background: rgba(61, 34, 5, 0.96);
}

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

.mobile-panel nav {
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.mobile-panel input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #fff;
    background: var(--amber-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide-active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    filter: saturate(1.1) contrast(1.05);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 35%, rgba(255, 211, 107, 0.18), transparent 22rem),
        linear-gradient(90deg, rgba(45, 23, 3, 0.96), rgba(91, 50, 6, 0.76) 44%, rgba(45, 23, 3, 0.35)),
        linear-gradient(0deg, rgba(45, 23, 3, 0.88), transparent 45%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: center;
    gap: 56px;
    max-width: 1260px;
    min-height: 680px;
    margin: 0 auto;
    padding: 86px 24px 112px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(229, 138, 32, 0.25);
    border-radius: 999px;
    color: var(--amber-700);
    background: rgba(255, 211, 107, 0.17);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy .eyebrow,
.detail-head .eyebrow,
.page-hero .eyebrow,
.section-ranking .eyebrow,
.ranking-hero .eyebrow {
    color: #ffe2a0;
    border-color: rgba(255, 211, 107, 0.36);
    background: rgba(255, 255, 255, 0.12);
}

.hero-copy h1 {
    max-width: 820px;
    margin: 24px 0 18px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    background: linear-gradient(90deg, #fff8d6, #ffffff 52%, #ffd36b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 26px;
    color: #ffebbd;
    font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.tag-row span {
    border: 1px solid rgba(229, 138, 32, 0.22);
    border-radius: 999px;
    padding: 6px 12px;
    color: #6b4318;
    background: rgba(255, 211, 107, 0.2);
    font-size: 13px;
    font-weight: 800;
}

.hero-tags span {
    color: #fff8d6;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary,
.button.small {
    color: #fff;
    background: linear-gradient(90deg, var(--amber-500), #df5e12);
    box-shadow: 0 16px 35px rgba(223, 94, 18, 0.28);
}

.button.ghost {
    color: #fff8d6;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.button:hover {
    transform: translateY(-2px) scale(1.02);
}

.button.small {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 14px;
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    transform: rotate(2deg);
}

.hero-poster img {
    aspect-ratio: 3 / 4.1;
    height: 500px;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    border-radius: 999px;
    padding: 8px 14px;
    color: #3d2205;
    background: #ffd36b;
    font-weight: 900;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 18px;
    transform: translateX(-50%);
    z-index: 5;
}

.hero-controls button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
}

.hero-dots button.active {
    width: 30px;
    border-radius: 999px;
    background: #ffd36b;
}

.section {
    max-width: 1260px;
    margin: 0 auto;
    padding: 72px 24px;
}

.section-soft {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1260px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1260px) / 2 + 24px));
    background: linear-gradient(180deg, rgba(255, 248, 236, 0.88), rgba(255, 240, 207, 0.65));
}

.section-head {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-head.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: none;
    gap: 24px;
}

.section-head h2,
.page-hero h1,
.detail-head h1 {
    margin: 14px 0 10px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-head p,
.page-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.section-link {
    color: var(--amber-700);
    font-weight: 900;
}

.section-link.light {
    color: #ffe2a0;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--amber-900);
    box-shadow: var(--shadow);
}

.category-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(61, 34, 5, 0.1), rgba(61, 34, 5, 0.92));
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 22px;
}

.category-card span {
    margin-top: 112px;
    font-size: 24px;
    font-weight: 950;
}

.category-card p {
    margin: 8px 0 0;
    color: #ffebbd;
    font-size: 14px;
}

.category-card:hover img {
    opacity: 0.72;
    transform: scale(1.08);
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.9);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(229, 138, 32, 0.35);
    box-shadow: 0 28px 70px rgba(91, 50, 6, 0.23);
    transform: translateY(-6px);
}

.card-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #7c4305, #ffcf78);
}

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

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

.card-type,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-weight: 950;
}

.card-type {
    right: 12px;
    bottom: 12px;
    padding: 6px 11px;
    color: #fff;
    background: rgba(61, 34, 5, 0.78);
    backdrop-filter: blur(10px);
}

.rank-badge {
    top: 12px;
    left: 12px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #3d2205;
    background: linear-gradient(135deg, #ffd36b, #f59e0b);
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.32);
}

.card-content {
    padding: 18px;
}

.card-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.movie-card h3 {
    margin: 8px 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

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

.movie-card p {
    display: -webkit-box;
    min-height: 56px;
    margin: 0 0 14px;
    overflow: hidden;
    color: #684922;
    font-size: 14px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    font-size: 13px;
}

.card-actions a {
    color: var(--amber-700);
    font-weight: 950;
}

.card-actions span {
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section-ranking,
.ranking-hero {
    max-width: none;
    color: #fff;
    background:
        radial-gradient(circle at 15% 0, rgba(255, 211, 107, 0.18), transparent 25rem),
        linear-gradient(135deg, var(--amber-950), var(--amber-800), #8a3a0a);
}

.section-ranking .section-head,
.section-ranking .movie-grid {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.section-ranking .section-head p,
.ranking-hero p {
    color: #ffebbd;
}

.ranking-grid .movie-card,
.ranking-page-grid .movie-card {
    background: rgba(255, 250, 242, 0.96);
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 211, 107, 0.25), transparent 24rem),
        linear-gradient(135deg, var(--amber-950), var(--amber-800));
}

.page-hero {
    min-height: 330px;
    display: grid;
    align-items: center;
    padding: 72px 24px;
}

.page-hero > div,
.detail-head {
    position: relative;
    z-index: 1;
    width: min(1260px, 100%);
    margin: 0 auto;
}

.page-hero p,
.detail-head p {
    max-width: 780px;
    color: #ffebbd;
}

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

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 16px;
    margin-bottom: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 250, 242, 0.92);
    box-shadow: var(--shadow);
}

.filter-panel label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid rgba(122, 90, 53, 0.2);
    border-radius: 16px;
    outline: 0;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(229, 138, 32, 0.14);
}

.empty-state {
    display: none;
    border: 1px dashed rgba(122, 90, 53, 0.35);
    border-radius: 20px;
    padding: 28px;
    color: var(--muted);
    text-align: center;
    background: rgba(255, 250, 242, 0.86);
}

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

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

.category-overview-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 18px;
    background: rgba(255, 250, 242, 0.9);
    box-shadow: var(--shadow);
}

.category-overview-image img {
    height: 220px;
    border-radius: 22px;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 6px 0 8px;
    font-size: 28px;
}

.category-overview-card p {
    margin: 0 0 14px;
    color: var(--muted);
}

.category-overview-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.category-overview-card li a {
    color: var(--amber-700);
    font-weight: 800;
}

.detail-hero {
    min-height: 540px;
    display: grid;
    align-items: end;
    padding: 110px 24px 72px;
}

.detail-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
    filter: saturate(1.1) contrast(1.05);
}

.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 211, 107, 0.22), transparent 25rem),
        linear-gradient(90deg, rgba(45, 23, 3, 0.96), rgba(91, 50, 6, 0.68)),
        linear-gradient(0deg, rgba(45, 23, 3, 0.96), transparent 52%);
}

.detail-head h1 {
    max-width: 920px;
}

.detail-head p {
    margin: 0 0 22px;
    font-size: 20px;
}

.detail-section {
    padding-top: 56px;
}

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

.detail-poster-card {
    position: sticky;
    top: 102px;
    align-self: start;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 250, 242, 0.94);
    box-shadow: var(--shadow);
}

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

.detail-poster-card div {
    padding: 18px;
}

.detail-poster-card strong,
.detail-poster-card span {
    display: block;
}

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

.detail-poster-card span {
    color: var(--muted);
    font-weight: 800;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 211, 107, 0.22);
    border-radius: 30px;
    background: #000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 211, 107, 0.22), transparent 13rem),
        linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.32));
    cursor: pointer;
    text-align: center;
}

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

.play-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    color: #3d2205;
    background: #ffd36b;
    box-shadow: 0 18px 36px rgba(255, 211, 107, 0.38);
    font-size: 32px;
}

.player-cover strong {
    max-width: 80%;
    font-size: clamp(20px, 3vw, 34px);
}

.story-block {
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    background: rgba(255, 250, 242, 0.92);
    box-shadow: var(--shadow);
}

.story-block h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.story-block p {
    margin: 0 0 26px;
    color: #5f421c;
    font-size: 17px;
}

.movie-meta-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 22px;
}

.movie-meta-table div {
    border: 1px solid rgba(122, 90, 53, 0.16);
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.58);
}

.movie-meta-table dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.movie-meta-table dd {
    margin: 4px 0 0;
    font-weight: 900;
}

.big-tags span {
    font-size: 14px;
}

.related-section {
    padding-top: 36px;
}

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

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

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

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-copy strong {
        font-size: 19px;
    }

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

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

    .hero-poster {
        width: min(280px, 72vw);
        transform: none;
    }

    .hero-poster img {
        height: auto;
    }

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

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

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

    .detail-poster-card {
        position: relative;
        top: auto;
        max-width: 320px;
    }
}

@media (max-width: 620px) {
    .header-inner {
        padding: 0 16px;
    }

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

    .brand-copy small {
        display: none;
    }

    .section,
    .section-soft {
        padding: 50px 16px;
    }

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

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

    .hero-buttons {
        display: grid;
    }

    .hero-controls {
        bottom: 20px;
    }

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

    .section-head.split {
        display: grid;
        align-items: start;
    }

    .category-overview-card ul,
    .movie-meta-table {
        grid-template-columns: 1fr;
    }

    .detail-hero {
        min-height: 520px;
        padding: 88px 16px 54px;
    }

    .detail-head p {
        font-size: 17px;
    }

    .story-block {
        padding: 20px;
    }
}
