:root {
    --pink: #ec4899;
    --pink-deep: #db2777;
    --purple: #8b5cf6;
    --purple-deep: #6d28d9;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --orange: #f97316;
    --yellow: #f59e0b;
    --green: #10b981;
    --dark: #111827;
    --muted: #6b7280;
    --soft: #f9fafb;
    --line: #e5e7eb;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --shadow: 0 20px 50px rgba(79, 70, 229, 0.13);
    --shadow-hover: 0 28px 60px rgba(79, 70, 229, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--dark);
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 45%, #eff6ff 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
    box-shadow: 0 12px 36px rgba(79, 70, 229, 0.25);
}

.nav-shell {
    width: min(1240px, calc(100% - 32px));
    height: 68px;
    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;
    color: #fff;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #f472b6, #8b5cf6 55%, #3b82f6);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 8px 24px rgba(236, 72, 153, 0.35);
}

.brand-text {
    font-size: 24px;
    letter-spacing: 0.02em;
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
}

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

.hero-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(131, 24, 67, 0.93), rgba(88, 28, 135, 0.84), rgba(30, 64, 175, 0.9));
}

.hero-content,
.page-hero-inner,
.detail-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
    margin-left: max(16px, calc((100vw - 1240px) / 2));
}

.hero-pill,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.25);
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 18px 0 16px;
    color: #fff;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p,
.detail-line {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

.hero-tags,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-tags span,
.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

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

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

.primary-btn {
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    box-shadow: 0 14px 34px rgba(236, 72, 153, 0.3);
}

.ghost-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.hero-control {
    position: absolute;
    z-index: 4;
    right: max(16px, calc((100vw - 1240px) / 2));
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 30px;
    background: #fff;
}

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

.content-section.soft-panel {
    width: 100%;
    margin: 0;
    padding: 64px max(16px, calc((100vw - 1240px) / 2));
    background: rgba(255, 255, 255, 0.55);
}

.category-band {
    padding-bottom: 36px;
}

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

.section-head h2 {
    margin: 12px 0 0;
    color: var(--dark);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.section-head p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.section-more {
    flex: 0 0 auto;
    color: var(--pink-deep);
    font-weight: 800;
}

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

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: var(--shadow);
}

.category-card {
    min-height: 172px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card::after,
.category-overview-card::after {
    content: "";
    position: absolute;
    right: -48px;
    top: -48px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 22px;
    font-weight: 900;
}

.category-card strong {
    display: block;
    font-size: 24px;
}

.category-card small,
.category-overview-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.accent-pink { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.accent-rose { background: linear-gradient(135deg, #f43f5e, #ec4899); }
.accent-purple { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.accent-orange { background: linear-gradient(135deg, #f97316, #ef4444); }
.accent-yellow { background: linear-gradient(135deg, #f59e0b, #f97316); }
.accent-cyan { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.accent-blue { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.accent-green { background: linear-gradient(135deg, #10b981, #14b8a6); }

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.poster-link img,
.detail-poster img,
.mini-poster img,
.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.year-badge,
.time-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 24, 39, 0.78);
    font-size: 12px;
    font-weight: 800;
}

.year-badge {
    left: 12px;
    top: 12px;
    padding: 6px 10px;
}

.time-badge {
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
}

.poster-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.72));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poster-hover span {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--pink-deep);
    background: rgba(255, 255, 255, 0.94);
    font-size: 26px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.movie-card:hover .poster-hover {
    opacity: 1;
}

.card-body {
    padding: 18px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.card-body h2 {
    margin: 9px 0 8px;
    font-size: 19px;
    line-height: 1.35;
}

.card-body h2 a,
.horizontal-info h2 a {
    transition: color 0.25s ease;
}

.card-body h2 a:hover,
.horizontal-info h2 a:hover {
    color: var(--pink-deep);
}

.card-body p {
    min-height: 48px;
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #be185d;
    background: #fce7f3;
    font-size: 12px;
    font-weight: 700;
}

.page-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.page-hero-inner {
    max-width: 820px;
}

.category-page-hero,
.search-hero,
.ranking-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
}

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

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

.category-card-title {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 26px;
    font-weight: 900;
}

.category-overview-card p,
.mini-grid {
    position: relative;
    z-index: 2;
}

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

.mini-grid .movie-card {
    color: var(--dark);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 220px;
    gap: 16px;
    align-items: end;
    margin-bottom: 26px;
    padding: 20px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--dark);
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.14);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.filter-chip {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    color: #4b5563;
    background: #fff;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.1);
    font-weight: 800;
}

.filter-chip.active,
.filter-chip:hover {
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

.empty-result {
    display: none;
    margin: 28px 0;
    padding: 30px;
    border-radius: var(--radius-xl);
    color: var(--muted);
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow);
}

.empty-result.show {
    display: block;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.mini-poster {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

.horizontal-info {
    min-width: 0;
}

.horizontal-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.horizontal-title h2 {
    margin: 0;
    font-size: 20px;
}

.rank-number {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    font-weight: 900;
}

.horizontal-info p {
    margin: 8px 0 12px;
    color: #4b5563;
    line-height: 1.65;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
    background: #111827;
}

.detail-bg,
.detail-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.detail-bg {
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.04);
}

.detail-shade {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(88, 28, 135, 0.86), rgba(30, 64, 175, 0.72));
}

.detail-inner {
    padding: 42px 0 64px;
}

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

.breadcrumb:hover {
    color: #fff;
}

.breadcrumb-sep {
    margin-left: 8px;
    margin-right: 8px;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.detail-info h1 {
    color: #fff;
}

.detail-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.player-section {
    padding-top: 48px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: var(--shadow-hover);
}

.player-shell video {
    width: 100%;
    height: 100%;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.player-cover.is-hidden {
    display: none;
}

.player-cover img,
.player-cover-shade {
    position: absolute;
    inset: 0;
}

.player-cover img {
    z-index: -2;
    filter: brightness(0.55);
}

.player-cover-shade {
    z-index: -1;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12), rgba(17, 24, 39, 0.82));
}

.play-circle {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--pink-deep);
    background: rgba(255, 255, 255, 0.95);
    font-size: 34px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease;
}

.player-cover:hover .play-circle {
    transform: scale(1.08);
}

.player-cover strong {
    max-width: min(720px, 90%);
    font-size: clamp(22px, 4vw, 42px);
    text-align: center;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

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

.detail-article,
.detail-side {
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow);
}

.detail-article {
    padding: 34px;
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.detail-article h2:not(:first-child) {
    margin-top: 28px;
}

.detail-article p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 1.95;
}

.detail-side {
    position: sticky;
    top: 92px;
    padding: 26px;
}

.detail-side dl {
    margin: 0;
}

.detail-side dt {
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.detail-side dd {
    margin: 5px 0 0;
    color: var(--dark);
    line-height: 1.6;
}

.site-footer {
    margin-top: 36px;
    color: #fff;
    background: linear-gradient(90deg, #111827, #581c87, #111827);
}

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

.footer-brand p {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 6px;
    font-size: 18px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-column a:hover {
    color: #f9a8d4;
}

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
    font-size: 14px;
}

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

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

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

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

    .search-box {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .nav-shell {
        height: auto;
        min-height: 64px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .brand-text {
        font-size: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 12px;
    }

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

    .nav-link {
        width: 100%;
    }

    .hero-carousel {
        height: 620px;
    }

    .hero-content {
        width: min(100% - 32px, 720px);
        margin: 0 auto;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .hero-control {
        left: 16px;
        right: 16px;
        justify-content: space-between;
    }

    .section-head {
        display: block;
    }

    .section-more {
        display: inline-block;
        margin-top: 14px;
    }

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

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

    .horizontal-card {
        grid-template-columns: 116px minmax(0, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .content-section,
    .content-section.soft-panel {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .category-grid,
    .movie-grid,
    .compact-grid,
    .category-overview-list,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .detail-inner {
        padding-top: 30px;
    }

    .detail-info h1,
    .hero-content h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .player-shell {
        border-radius: 18px;
    }

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