:root {
    --site-bg: #fff7ed;
    --site-bg-soft: #fffbeb;
    --site-card: #ffffff;
    --site-text: #1f2937;
    --site-muted: #6b7280;
    --site-line: #fed7aa;
    --site-primary: #ea580c;
    --site-primary-dark: #9a3412;
    --site-accent: #f59e0b;
    --site-rose: #f43f5e;
    --site-shadow: 0 18px 45px rgba(154, 52, 18, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--site-text);
    background: var(--site-bg);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #ffffff;
    background: linear-gradient(90deg, #d97706, #f97316, #d97706);
    box-shadow: 0 12px 32px rgba(124, 45, 18, 0.24);
}

.header-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-mark {
    font-size: 32px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.24));
}

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

.main-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 24px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 48%, #e11d48 100%);
}

.hero:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--site-bg));
}

.hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(16px);
    opacity: 0.38;
    background: rgba(255, 255, 255, 0.35);
}

.hero-glow-one {
    top: -100px;
    left: 5%;
}

.hero-glow-two {
    right: -80px;
    bottom: 50px;
    background: rgba(255, 228, 181, 0.45);
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    align-items: center;
    gap: 56px;
    padding: 74px 0 118px;
}

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

.hero-copy p {
    max-width: 720px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.75;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--site-primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #fff7ed;
}

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

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

.btn-primary {
    color: #ea580c;
    background: #ffffff;
    box-shadow: 0 18px 30px rgba(154, 52, 18, 0.22);
}

.btn-ghost {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.btn-primary:hover,
.btn-ghost:hover,
.spotlight-card a:hover,
.category-more:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-quick {
    margin-top: 28px;
}

.hero-quick a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.hero-carousel {
    position: relative;
}

.hero-stage {
    position: relative;
    height: 560px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.18);
    border-radius: 36px;
    background: rgba(0, 0, 0, 0.18);
    box-shadow: 0 35px 90px rgba(124, 45, 18, 0.42);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

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

.hero-slide:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.84));
}

.hero-slide-copy {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

.hero-slide-copy h2 {
    margin: 12px 0;
    font-size: 32px;
    line-height: 1.15;
}

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

.hero-slide-copy a {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: #f97316;
    font-weight: 900;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 900;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(249, 115, 22, 0.88);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.hero-dots button {
    width: 26px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
}

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

.section,
.search-section {
    padding: 74px 0;
}

.section-white {
    background: #ffffff;
}

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

.section-head h2,
.search-box h2,
.page-hero h1,
.detail-article h1 {
    margin: 0;
    color: #1f2937;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-head a {
    color: var(--site-primary);
    font-weight: 900;
}

.search-box {
    margin-top: -48px;
    position: relative;
    z-index: 4;
    padding: 28px;
    border: 1px solid var(--site-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(18px);
}

.search-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
    margin-top: 20px;
}

.search-controls input,
.search-controls select {
    width: 100%;
    min-height: 50px;
    border: 1px solid #fdba74;
    border-radius: 16px;
    padding: 0 16px;
    color: #7c2d12;
    background: #fff7ed;
    outline: none;
}

.search-controls input:focus,
.search-controls select:focus {
    border-color: var(--site-primary);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-results {
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.search-results.is-open {
    display: grid;
}

.search-result-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: #fff7ed;
    transition: transform 0.25s ease, background 0.25s ease;
}

.search-result-card:hover {
    transform: translateY(-2px);
    background: #ffedd5;
}

.search-result-card img {
    width: 72px;
    height: 94px;
    border-radius: 12px;
    object-fit: cover;
}

.search-result-card strong {
    display: block;
    color: #1f2937;
    line-height: 1.3;
}

.search-result-card span {
    display: block;
    margin-top: 8px;
    color: var(--site-muted);
    font-size: 13px;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    color: inherit;
    background: var(--site-card);
    box-shadow: 0 14px 34px rgba(154, 52, 18, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(154, 52, 18, 0.2);
}

.movie-poster {
    position: relative;
    height: 270px;
    margin: 0;
    overflow: hidden;
    background: #fed7aa;
}

.featured-grid .movie-poster {
    height: 360px;
}

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

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

.movie-poster:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
}

.poster-badge,
.poster-year {
    position: absolute;
    z-index: 2;
    top: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.poster-badge {
    left: 14px;
    background: #f97316;
}

.poster-year {
    right: 14px;
    background: rgba(17, 24, 39, 0.76);
}

.movie-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.movie-info h2,
.movie-info h3 {
    min-height: 52px;
    margin: 8px 0 10px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 900;
}

.movie-info p {
    color: var(--site-muted);
    line-height: 1.72;
}

.movie-meta {
    color: var(--site-primary) !important;
    font-size: 13px;
    font-weight: 900;
}

.movie-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #ffedd5;
    color: var(--site-muted);
    font-size: 14px;
}

.movie-foot strong {
    color: var(--site-primary);
}

.rank-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 32px;
    align-items: start;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 48px 84px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
    background: #fff7ed;
    transition: transform 0.25s ease, background 0.25s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    background: #ffedd5;
}

.rank-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #e11d48);
    font-weight: 900;
}

.rank-item img {
    width: 84px;
    height: 104px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-item strong {
    display: block;
    font-size: 18px;
}

.rank-item p {
    margin: 6px 0 0;
    color: var(--site-muted);
    line-height: 1.6;
}

.spotlight-card {
    overflow: hidden;
    border-radius: 32px;
    color: #ffffff;
    background: #111827;
    box-shadow: var(--site-shadow);
}

.spotlight-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.spotlight-card div {
    padding: 28px;
    background: linear-gradient(135deg, #111827, #7c2d12);
}

.spotlight-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.spotlight-card h2 {
    margin: 10px 0;
    font-size: 32px;
}

.spotlight-card a {
    margin-top: 14px;
    color: #9a3412;
    background: #ffffff;
}

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

.category-card {
    padding: 24px;
    border: 1px solid #fed7aa;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(154, 52, 18, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: #ffedd5;
    font-size: 28px;
}

.category-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p {
    margin: 0 0 16px;
    color: var(--site-muted);
    line-height: 1.75;
}

.category-samples {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.category-samples a {
    overflow: hidden;
    color: var(--site-primary);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-more {
    min-height: 40px;
    padding: 0 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #f59e0b, #e11d48);
}

.page-hero h1,
.page-hero p,
.page-hero .section-kicker {
    color: #ffffff;
}

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

.channel-nav-section {
    position: sticky;
    top: 68px;
    z-index: 40;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #ffedd5;
}

.channel-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 0;
}

.channel-nav a {
    flex: 0 0 auto;
    padding: 10px 15px;
    border-radius: 999px;
    color: #9a3412;
    background: #fff7ed;
    font-weight: 900;
}

.channel-nav a.active,
.channel-nav a:hover {
    color: #ffffff;
    background: #f97316;
}

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

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

.ranking-card {
    display: grid;
    grid-template-columns: 72px 128px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(154, 52, 18, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.ranking-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #e11d48);
    font-size: 22px;
}

.ranking-card img {
    width: 128px;
    height: 164px;
    border-radius: 18px;
    object-fit: cover;
}

.ranking-card h2 {
    margin: 8px 0;
    font-size: 25px;
}

.ranking-card p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.detail-top {
    padding: 34px 0 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--site-muted);
    font-weight: 800;
}

.breadcrumb a {
    color: var(--site-primary);
}

.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    align-items: start;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.25);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.54));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    padding-left: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #e11d48);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    font-size: 38px;
}

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

.detail-article {
    margin-top: 24px;
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--site-shadow);
}

.detail-line {
    margin: 18px 0 18px;
    color: #7c2d12;
    font-size: 19px;
    line-height: 1.8;
    font-weight: 800;
}

.detail-article h2 {
    margin: 28px 0 12px;
    font-size: 26px;
}

.detail-article p {
    color: var(--site-muted);
    line-height: 1.9;
}

.detail-side {
    display: grid;
    gap: 18px;
}

.detail-cover {
    width: 100%;
    border-radius: 26px;
    box-shadow: var(--site-shadow);
}

.movie-facts {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(154, 52, 18, 0.1);
}

.movie-facts div {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #ffedd5;
}

.movie-facts div:last-child {
    border-bottom: 0;
}

.movie-facts dt {
    color: #9a3412;
    font-weight: 900;
}

.movie-facts dd {
    margin: 0;
    color: var(--site-muted);
}

.side-list {
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(154, 52, 18, 0.1);
}

.side-list h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.small-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #ffedd5;
}

.small-card img {
    width: 62px;
    height: 78px;
    border-radius: 12px;
    object-fit: cover;
}

.small-card strong {
    display: block;
    overflow: hidden;
    color: #1f2937;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.small-card span {
    display: block;
    margin-top: 6px;
    color: var(--site-muted);
    font-size: 13px;
}

.site-footer {
    color: #ffedd5;
    background: linear-gradient(180deg, #7c2d12, #451a03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 56px 0 36px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 16px;
    color: #ffffff;
}

.site-footer p,
.site-footer a {
    color: #fed7aa;
    line-height: 1.8;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 237, 213, 0.14);
    text-align: center;
    color: #fed7aa;
}

@media (max-width: 1100px) {
    .hero-layout,
    .rank-layout,
    .watch-layout {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        max-width: 620px;
    }

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

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

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

    .brand {
        font-size: 22px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        position: absolute;
        left: 12px;
        right: 12px;
        top: 70px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: rgba(154, 52, 18, 0.98);
        box-shadow: 0 18px 45px rgba(69, 26, 3, 0.28);
    }

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

    .main-nav a {
        text-align: center;
    }

    .hero-layout {
        min-height: auto;
        padding: 54px 0 92px;
        gap: 30px;
    }

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

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

    .hero-stage {
        height: 420px;
        border-width: 6px;
        border-radius: 28px;
    }

    .hero-slide-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .hero-slide-copy h2 {
        font-size: 25px;
    }

    .search-box {
        margin-top: -34px;
        padding: 20px;
    }

    .search-controls,
    .movie-grid,
    .featured-grid,
    .category-grid,
    .search-results {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 42px 72px minmax(0, 1fr);
    }

    .rank-item img {
        width: 72px;
        height: 92px;
    }

    .ranking-card {
        grid-template-columns: 48px 92px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .ranking-number {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .ranking-card img {
        width: 92px;
        height: 124px;
        border-radius: 14px;
    }

    .ranking-card h2 {
        font-size: 18px;
    }

    .movie-poster,
    .featured-grid .movie-poster {
        height: 330px;
    }

    .section,
    .search-section {
        padding: 48px 0;
    }

    .section-head {
        display: block;
    }

    .section-head a {
        display: inline-block;
        margin-top: 12px;
    }

    .detail-article {
        padding: 22px;
    }

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