:root {
    color-scheme: light;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --teal: #14b8a6;
    --rose: #f43f5e;
    --yellow: #f59e0b;
    --slate: #0f172a;
    --muted: #64748b;
    --soft: #f1f5f9;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: #111827;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 45%, #ecfeff 100%);
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

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

.site-nav {
    width: min(1280px, calc(100% - 32px));
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.brand-text {
    font-size: 20px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    position: relative;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 650;
    color: #334155;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    border-radius: 99px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

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

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

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: #1e293b;
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 55%, #14b8a6 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(circle at 20px 20px, #ffffff 0, #ffffff 3px, transparent 4px);
    background-size: 60px 60px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.28), rgba(15, 23, 42, 0.72));
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 64px;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.66), rgba(15, 23, 42, 0.08)), var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(26px) saturate(1.2);
    opacity: 0.38;
    transform: scale(1.08);
    z-index: -1;
}

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

.hero-copy {
    max-width: 760px;
    color: #ffffff;
}

.eyebrow,
.section-heading span,
.page-hero span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 7vw, 80px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 720px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(18px, 2.5vw, 26px);
    line-height: 1.7;
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-tags span,
.detail-tags span {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 13px;
    font-weight: 700;
}

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

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

.primary-button {
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.2);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(10px);
}

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

.hero-poster {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 2 / 3;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
    transform: rotate(2deg);
}

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

.hero-poster img,
.detail-poster img,
.poster-wrap img,
.category-bg,
.rank-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-dots button {
    width: 40px;
    height: 5px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.34);
}

.hero-dots button.is-active {
    background: #ffffff;
}

.section {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}

.white-section,
.soft-section,
.ranking-preview,
.premium-section,
.player-section {
    width: 100%;
    padding-left: max(16px, calc((100% - 1280px) / 2));
    padding-right: max(16px, calc((100% - 1280px) / 2));
}

.white-section {
    background: #ffffff;
}

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

.ranking-preview {
    background: #ffffff;
}

.premium-section {
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1e3a8a 48%, #0e7490);
}

.section-heading {
    margin-bottom: 34px;
    text-align: center;
}

.section-heading.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

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

.premium-section .section-heading h2,
.premium-section .section-heading span,
.premium-section .section-heading p {
    color: #ffffff;
}

.section-heading p {
    max-width: 680px;
    margin: 12px auto 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-heading a,
.small-button {
    color: var(--blue);
    background: #eff6ff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
}

.featured-grid,
.movie-grid,
.category-grid {
    display: grid;
    gap: 24px;
}

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

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

.compact-grid,
.premium-grid,
.all-movie-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #dbeafe;
}

.featured-grid .poster-wrap {
    aspect-ratio: 4 / 3;
}

.poster-wrap img {
    transition: transform 0.45s ease;
}

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.82));
    opacity: 0.88;
}

.poster-year {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.66);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
}

.movie-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    gap: 8px;
    padding: 16px;
    color: #ffffff;
}

.movie-card-body strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 1.35;
}

.movie-card-body em {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
}

.card-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.filter-bar {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.search-box {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.search-box input {
    width: 100%;
    height: 48px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 0 16px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
}

.search-box input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-buttons button {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    color: #334155;
    background: #f8fafc;
    font-weight: 750;
}

.filter-buttons button.is-active,
.filter-buttons button:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

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

.category-card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background: #0f172a;
}

.category-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

.category-card:hover .category-bg {
    transform: scale(1.08);
}

.category-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 10px;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.86));
}

.category-content strong {
    font-size: 26px;
}

.category-content em {
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    line-height: 1.6;
}

.rank-list {
    display: grid;
    gap: 16px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 58px 78px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rank-number {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--yellow));
    font-size: 18px;
    font-weight: 900;
}

.rank-item img {
    width: 78px;
    height: 108px;
    border-radius: 14px;
    background: #dbeafe;
}

.rank-info {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.rank-info small {
    color: var(--blue);
    font-weight: 750;
}

.page-hero {
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #06b6d4 55%, #0f766e);
}

.small-hero {
    padding: 88px max(16px, calc((100% - 1280px) / 2));
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 6vw, 66px);
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

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

.category-strip-list {
    display: grid;
    gap: 18px;
}

.category-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 520px) auto;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.category-strip h2 {
    margin: 0 0 8px;
}

.category-strip p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.strip-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.strip-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: #1d4ed8;
    background: #eff6ff;
    font-weight: 750;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #0f172a;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.44)), var(--detail-image);
    background-size: cover;
    background-position: center;
    filter: blur(18px) saturate(1.1);
    transform: scale(1.08);
    opacity: 0.74;
}

.detail-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    aspect-ratio: 2 / 3;
}

.detail-copy h1 {
    margin: 18px 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-copy p {
    max-width: 850px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.8;
}

.player-section {
    background: #020617;
    color: #ffffff;
}

.player-section .section-heading h2 {
    color: #ffffff;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

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

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.72));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-shell.is-playing .player-start {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    width: 86px;
    height: 86px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.35);
    font-size: 32px;
    padding-left: 5px;
}

.player-start strong {
    font-size: 22px;
}

.detail-section {
    display: grid;
    gap: 28px;
}

.detail-article {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.detail-article h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 28px;
}

.detail-article p {
    margin: 0 0 24px;
    color: #334155;
    line-height: 2;
    font-size: 17px;
}

.detail-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-meta-list span {
    padding: 9px 12px;
    border-radius: 999px;
    color: #1d4ed8;
    background: #eff6ff;
    font-weight: 750;
}

.prev-next {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.prev-next a {
    padding: 12px 16px;
    border-radius: 999px;
    color: #0f172a;
    background: #f8fafc;
    font-weight: 750;
}

.site-footer {
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    max-width: 460px;
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-group {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-group h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.footer-group a {
    color: #cbd5e1;
}

.footer-group a:hover {
    color: #67e8f9;
}

.footer-bottom {
    padding: 18px;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 30px;
    }

    .movie-grid,
    .compact-grid,
    .premium-grid,
    .all-movie-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 820px) {
    .site-nav {
        width: min(100% - 24px, 1280px);
    }

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

    .nav-links {
        position: absolute;
        top: 64px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-link {
        padding: 12px;
        border-radius: 12px;
    }

    .nav-link:hover,
    .nav-link.is-active {
        background: #eff6ff;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
    }

    .hero-poster {
        width: 220px;
        margin: 0 auto;
    }

    .section-heading.split-heading,
    .category-strip,
    .detail-hero-inner,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

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

    .detail-hero-inner {
        padding: 44px 0;
    }

    .detail-poster {
        width: min(260px, 70vw);
    }
}

@media (max-width: 540px) {
    .brand-text {
        font-size: 18px;
    }

    .hero {
        min-height: 720px;
    }

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

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

    .section,
    .white-section,
    .soft-section,
    .ranking-preview,
    .premium-section,
    .player-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .featured-grid,
    .movie-grid,
    .compact-grid,
    .premium-grid,
    .all-movie-grid,
    .category-grid {
        gap: 14px;
    }

    .movie-card {
        border-radius: 18px;
    }

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

    .movie-card-body strong {
        font-size: 14px;
    }

    .movie-card-body em {
        display: none;
    }

    .rank-item {
        grid-template-columns: 44px 58px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .rank-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .rank-item img {
        width: 58px;
        height: 82px;
    }

    .detail-article {
        padding: 22px;
    }
}
