* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: #182033;
    background: linear-gradient(135deg, #f8fbff 0%, #edf8ff 45%, #f9f1ff 100%);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #06b6d4, #2563eb, #8b5cf6);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.site-nav {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 68px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.32);
    font-weight: 800;
    box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.18);
}

.brand-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.nav-search,
.mobile-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.nav-search {
    flex: 1;
    max-width: 420px;
    margin-left: auto;
}

.nav-search input,
.mobile-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 12px 14px 12px 18px;
    font-size: 14px;
    color: #1f2937;
    background: transparent;
}

.nav-search button,
.mobile-search button {
    border: 0;
    padding: 12px 18px;
    color: #ffffff;
    background: #0f75ff;
    font-weight: 700;
    cursor: pointer;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: #e0fbff;
    transform: translateY(-1px);
}

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

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

.mobile-panel {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px 18px;
}

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

.mobile-search {
    margin-bottom: 14px;
}

.mobile-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mobile-links a {
    padding: 12px 14px;
    color: #ffffff;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.24), transparent 30%), linear-gradient(135deg, #0891b2, #2563eb 48%, #7c3aed);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(28px);
    opacity: 0.36;
    animation: floatGlow 6s ease-in-out infinite alternate;
}

.hero::before {
    width: 280px;
    height: 280px;
    left: 6%;
    top: 8%;
    background: rgba(255, 255, 255, 0.36);
}

.hero::after {
    width: 420px;
    height: 420px;
    right: 4%;
    bottom: -8%;
    background: rgba(103, 232, 249, 0.36);
}

@keyframes floatGlow {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(18px, -18px, 0) scale(1.08);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 640px;
    padding: 68px 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 36px;
    align-items: center;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ecfeff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    font-weight: 700;
}

.hero h1 {
    margin: 22px 0 20px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: #bff5ff;
}

.hero-lead {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.8;
}

.hero-actions,
.section-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

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

.btn-primary {
    color: #1d4ed8;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
}

.btn-dark {
    color: #ffffff;
    background: linear-gradient(90deg, #0ea5e9, #2563eb, #7c3aed);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

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

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

.hero-panel {
    position: relative;
    min-height: 510px;
}

.hero-slider {
    position: relative;
    min-height: 510px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-card {
    display: block;
    height: 510px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(15, 23, 42, 0.28);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.7s ease;
}

.hero-card:hover img {
    transform: scale(1.1);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 10%, rgba(8, 13, 29, 0.22) 38%, rgba(8, 13, 29, 0.9) 100%);
}

.hero-card-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
}

.hero-card-content h2 {
    margin: 12px 0 10px;
    font-size: 30px;
    line-height: 1.2;
}

.hero-card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.hero-label,
.tag-pill,
.movie-tags span,
.meta-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.hero-label {
    padding: 7px 12px;
    color: #ffffff;
    background: linear-gradient(90deg, #ec4899, #f97316);
    font-size: 12px;
}

.hero-dots {
    position: absolute;
    z-index: 5;
    right: 28px;
    top: 28px;
    display: flex;
    gap: 9px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 28px;
    background: #ffffff;
}

.section,
.detail-wrap,
.search-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 22px;
}

.section-narrow {
    max-width: 960px;
}

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

.section-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    color: #10213f;
    line-height: 1.2;
}

.section-subtitle {
    margin: 10px 0 0;
    color: #64748b;
    line-height: 1.8;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
    border-color: rgba(14, 165, 233, 0.3);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
}

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

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

.poster-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.7));
    opacity: 0.82;
}

.play-chip {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #0f3e8a;
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ec4899);
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.26);
}

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

.movie-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 45px;
    overflow: hidden;
    color: #111827;
    font-weight: 900;
    line-height: 1.45;
}

.movie-title:hover {
    color: #2563eb;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 9px;
    color: #64748b;
    font-size: 12px;
}

.movie-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 40px;
    overflow: hidden;
    margin: 10px 0 12px;
    color: #475569;
    font-size: 13px;
    line-height: 1.55;
}

.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.movie-tags span,
.tag-pill,
.meta-pill {
    padding: 6px 10px;
    color: #155e75;
    background: #e0f7ff;
    font-size: 12px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: minmax(230px, auto);
    gap: 22px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 30px;
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13);
}

.feature-card:first-child {
    grid-row: span 2;
}

.feature-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover img {
    transform: scale(1.07);
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 8%, rgba(7, 13, 29, 0.18) 38%, rgba(7, 13, 29, 0.88) 100%);
}

.feature-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
}

.feature-content h3 {
    margin: 12px 0 8px;
    font-size: 24px;
}

.feature-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

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

.category-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9, #2563eb 54%, #7c3aed);
    box-shadow: 0 22px 46px rgba(37, 99, 235, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:nth-child(2n) {
    background: linear-gradient(135deg, #ec4899, #f97316);
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, #14b8a6, #06b6d4, #2563eb);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.28);
}

.category-card h2,
.category-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.category-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

.category-card span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 800;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 56px 78px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.rank-num {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ec4899);
    font-weight: 900;
}

.rank-row img {
    width: 78px;
    height: 104px;
    object-fit: cover;
    border-radius: 16px;
}

.rank-row h2,
.rank-row h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.rank-row p {
    margin: 0;
    color: #64748b;
    line-height: 1.55;
}

.rank-heat {
    color: #0f766e;
    font-weight: 900;
    white-space: nowrap;
}

.filter-box {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    margin-bottom: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.filter-box input,
.filter-box select {
    min-width: 0;
    flex: 1;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 14px 16px;
    color: #1f2937;
    background: #ffffff;
    font-size: 15px;
    outline: 0;
}

.filter-box input:focus,
.filter-box select:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
}

.empty-state {
    display: none;
    padding: 32px;
    text-align: center;
    color: #64748b;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #2563eb;
}

.detail-hero {
    background: radial-gradient(circle at 12% 18%, rgba(103, 232, 249, 0.26), transparent 32%), linear-gradient(135deg, #0f172a, #17337f 52%, #581c87);
    color: #ffffff;
}

.detail-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 66px 22px;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-cover {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.16;
}

.detail-copy p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.9;
    font-size: 18px;
}

.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.detail-tags .tag-pill,
.detail-meta .meta-pill {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player-card {
    overflow: hidden;
    border-radius: 32px;
    background: #07111f;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.video-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #020617;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.08), rgba(2, 6, 23, 0.42));
}

.video-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 999px;
    color: #2563eb;
    background: #ffffff;
    font-size: 34px;
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.32);
    transition: transform 0.2s ease;
}

.video-overlay:hover .play-icon {
    transform: scale(1.08);
}

.article-block {
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.article-block h2 {
    margin: 0 0 16px;
    color: #10213f;
    font-size: 28px;
}

.article-block p {
    margin: 0 0 16px;
    color: #334155;
    line-height: 2;
}

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

.side-panel {
    padding: 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.side-panel h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.mini-list {
    display: grid;
    gap: 14px;
}

.mini-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.mini-card img {
    width: 72px;
    height: 96px;
    object-fit: cover;
    border-radius: 16px;
}

.mini-card strong {
    display: block;
    color: #111827;
    line-height: 1.45;
}

.mini-card em {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-style: normal;
    font-size: 13px;
}

.site-footer {
    color: #e5f2ff;
    background: linear-gradient(135deg, #0f172a, #172554 60%, #111827);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 22px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.footer-brand .brand-mark {
    background: rgba(14, 165, 233, 0.42);
}

.footer-inner p {
    max-width: 520px;
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.8;
}

.footer-inner h2 {
    margin: 0 0 14px;
    color: #67e8f9;
    font-size: 18px;
}

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

.footer-links a {
    color: rgba(226, 232, 240, 0.78);
}

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

.footer-bottom {
    padding: 18px 22px;
    text-align: center;
    color: rgba(226, 232, 240, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

    .menu-toggle {
        display: block;
    }

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

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

@media (max-width: 900px) {
    .hero-inner,
    .detail-hero-inner,
    .detail-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .hero-slider,
    .hero-card {
        min-height: 430px;
        height: 430px;
    }

    .feature-grid,
    .rank-list {
        grid-template-columns: 1fr;
    }

    .feature-card:first-child {
        grid-row: span 1;
    }

    .nav-search {
        display: none;
    }

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

@media (max-width: 640px) {
    .site-nav {
        padding: 0 16px;
    }

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

    .hero-inner,
    .section,
    .detail-wrap,
    .search-wrap,
    .detail-hero-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero,
    .hero-inner {
        min-height: auto;
    }

    .hero h1 {
        font-size: 42px;
    }

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

    .hero-panel,
    .hero-slider,
    .hero-card {
        min-height: 390px;
        height: 390px;
    }

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

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

    .rank-row {
        grid-template-columns: 44px 64px minmax(0, 1fr);
    }

    .rank-heat {
        grid-column: 3;
    }

    .rank-row img {
        width: 64px;
        height: 86px;
    }

    .filter-box {
        display: grid;
    }

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