:root {
    --bg: #fffaf2;
    --card: #ffffff;
    --text: #21180f;
    --muted: #756554;
    --line: #f1dfc7;
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --accent: #ea580c;
    --soft: #fff1d6;
    --shadow: 0 22px 55px rgba(146, 64, 14, 0.13);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 32px rgba(146, 64, 14, 0.08);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 10px 22px rgba(234, 88, 12, 0.26);
}

.logo-text,
.footer-logo {
    font-size: 26px;
    background: linear-gradient(135deg, #b45309, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.main-nav a,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    color: #5f4b32;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown > button:hover {
    color: var(--accent);
}

.nav-dropdown {
    position: relative;
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: -18px;
    min-width: 188px;
    display: grid;
    gap: 2px;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu a {
    padding: 8px 10px;
    border-radius: 10px;
}

.nav-menu a:hover {
    background: var(--soft);
}

.site-search {
    width: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #f3d7ac;
    border-radius: 999px;
    background: #ffffff;
}

.site-search input,
.large-search input,
.filter-panel input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.site-search input {
    padding: 11px 16px;
}

.site-search button,
.large-search button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    font-weight: 800;
    cursor: pointer;
}

.site-search button {
    align-self: stretch;
    padding: 0 18px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--soft);
}

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

.hero-carousel {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: linear-gradient(120deg, #fff7e8, #ffe1bd 50%, #ffd6c2);
}

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

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    filter: blur(6px);
    transform: scale(1.05);
}

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

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.68), rgba(255, 250, 242, 0.22));
}

.hero-content {
    position: relative;
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    gap: 54px;
    align-items: center;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 12px 0 12px;
    font-size: clamp(38px, 5.8vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.08em;
}

.hero-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3vw, 44px);
    color: #b45309;
}

.hero-copy p {
    max-width: 650px;
    margin: 0 0 22px;
    font-size: 19px;
    color: #5c4a38;
}

.eyebrow {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: #a24707;
    background: rgba(255, 255, 255, 0.7);
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.22);
}

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

.hero-tags span,
.tag-row span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffedd5;
    color: #b45309;
    font-weight: 800;
}

.hero-tags span {
    padding: 8px 13px;
}

.tag-row span,
.tag-cloud span {
    padding: 4px 8px;
    font-size: 12px;
}

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

.primary-btn,
.secondary-btn,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.22s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 14px 28px rgba(234, 88, 12, 0.27);
}

.secondary-btn,
.section-link {
    color: #c2410c;
    background: #ffffff;
    border: 1px solid #fed7aa;
}

.primary-btn:hover,
.secondary-btn:hover,
.section-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(234, 88, 12, 0.17);
}

.hero-poster {
    position: relative;
    display: block;
    height: 500px;
    border: 12px solid rgba(255, 255, 255, 0.72);
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #f97316);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

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

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(180, 83, 9, 0.28);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 36px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.content-section,
.warm-section,
.accent-panel {
    padding: 70px 0;
}

.warm-section {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

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

.section-heading h2,
.page-hero h1,
.detail-title-block h1 {
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.section-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.section-heading p,
.page-hero p {
    margin: 8px 0 0;
    color: var(--muted);
}

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

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

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

.related-grid,
.top-ranking-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 14px 34px rgba(146, 64, 14, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.14);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-frame {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 20%, #fff7ed, #fed7aa 42%, #fb923c);
}

.poster-frame img,
.category-overview img,
.rank-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.25s ease;
}

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

.poster-frame em,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-style: normal;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.poster-frame em {
    right: 14px;
    bottom: 14px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.5);
}

.rank-badge {
    left: 14px;
    top: 14px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.movie-card-body {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.movie-card-body strong {
    font-size: 19px;
    line-height: 1.32;
}

.movie-card:hover strong,
.rank-row:hover strong,
.category-tile:hover strong,
.category-overview:hover strong {
    color: var(--accent);
}

.movie-card-body small,
.rank-info small {
    color: #8b735b;
    font-weight: 700;
}

.card-summary {
    color: var(--muted);
    font-size: 14px;
}

.compact-card .poster-frame {
    height: 178px;
}

.compact-card .movie-card-body {
    padding: 14px;
}

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

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

.rank-row {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(146, 64, 14, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.14);
}

.rank-poster {
    position: relative;
    height: 116px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #f97316);
}

.rank-poster b {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, #f97316);
}

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

.rank-info strong,
.rank-info span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.rank-info strong {
    -webkit-line-clamp: 1;
    font-size: 18px;
}

.rank-info span {
    -webkit-line-clamp: 2;
    color: var(--muted);
    font-size: 14px;
}

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

.category-tile {
    display: grid;
    gap: 10px;
    min-height: 178px;
    padding: 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.15);
    box-shadow: 0 12px 30px rgba(146, 64, 14, 0.07);
    transition: 0.24s ease;
}

.category-tile:hover,
.category-overview:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-tile span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.category-tile small,
.category-overview small {
    color: var(--muted);
}

.accent-panel {
    background: linear-gradient(135deg, #d97706, #ea580c);
    color: #ffffff;
}

.accent-inner {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 28px;
    align-items: center;
}

.accent-inner h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 50px);
    letter-spacing: -0.06em;
}

.accent-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.mini-poster-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.page-hero {
    padding: 64px 0 54px;
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
}

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

.breadcrumb a::after {
    content: "/";
    margin-left: 9px;
    color: rgba(138, 90, 40, 0.48);
}

.breadcrumb.light {
    color: rgba(255, 255, 255, 0.86);
}

.breadcrumb.light a::after {
    color: rgba(255, 255, 255, 0.4);
}

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

.category-overview {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(146, 64, 14, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.14);
    transition: 0.24s ease;
}

.overview-posters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    height: 112px;
}

.overview-posters img {
    min-width: 0;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #fed7aa, #f97316);
}

.category-overview strong {
    font-size: 24px;
}

.filter-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(146, 64, 14, 0.07);
}

.filter-panel input {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

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

.chip-row button {
    border: 0;
    padding: 8px 14px;
    border-radius: 999px;
    color: #a24707;
    background: #ffedd5;
    font-weight: 900;
    cursor: pointer;
}

.chip-row button.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.empty-state {
    margin: 38px 0;
    text-align: center;
    color: var(--muted);
    font-size: 18px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 70px;
    background: #1f1308;
    color: #ffffff;
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.26;
    filter: blur(10px);
    transform: scale(1.08);
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31, 19, 8, 0.96), rgba(31, 19, 8, 0.74), rgba(31, 19, 8, 0.35));
}

.detail-hero .container {
    position: relative;
    z-index: 1;
}

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

.detail-poster {
    height: 390px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #fed7aa, #f97316);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

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

.detail-title-block h1 {
    margin: 14px 0 16px;
    font-size: clamp(34px, 5vw, 64px);
}

.detail-title-block p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.detail-title-block .primary-btn {
    margin-top: 24px;
}

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

.player-card,
.story-card,
.info-card {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(245, 158, 11, 0.14);
}

.player-card {
    overflow: hidden;
    margin-bottom: 28px;
}

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

.video-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
    cursor: pointer;
}

.video-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 999px;
    font-size: 34px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.32);
}

.video-overlay.is-hidden {
    display: none;
}

.story-card,
.info-card {
    padding: 28px;
}

.story-card h2,
.info-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.story-card p {
    margin: 0 0 18px;
    color: #4f4235;
    font-size: 17px;
}

.lead-text {
    font-weight: 800;
    color: #332314 !important;
}

.detail-sidebar {
    min-width: 0;
}

.info-card {
    position: sticky;
    top: 96px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 12px;
}

.info-card li {
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.info-card li span {
    color: #9a7751;
    font-size: 13px;
    font-weight: 900;
}

.info-card li strong {
    color: #281a0c;
}

.related-section {
    padding-top: 0;
}

.large-search {
    max-width: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    margin-top: 26px;
    overflow: hidden;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(146, 64, 14, 0.1);
}

.large-search input {
    padding: 18px 24px;
}

.large-search button {
    border-radius: 0;
}

.search-title {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 900;
}

.site-footer {
    color: #ffedd5;
    background: linear-gradient(135deg, #78350f, #431407);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr;
    gap: 34px;
    padding: 50px 0;
}

.site-footer p {
    color: #fed7aa;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
    color: #ffffff;
}

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

.footer-links a {
    color: #fed7aa;
}

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

.footer-bottom {
    padding: 18px;
    text-align: center;
    color: #fed7aa;
    border-top: 1px solid rgba(254, 215, 170, 0.16);
}

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

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

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

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

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

    .info-card {
        position: static;
    }

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

@media (max-width: 820px) {
    .header-inner {
        flex-wrap: wrap;
        min-height: 68px;
        padding: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        order: 3;
        width: 100%;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 6px;
        padding-top: 12px;
        border-top: 1px solid var(--line);
    }

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

    .nav-dropdown {
        display: none;
    }

    .hero-carousel,
    .hero-content {
        min-height: auto;
    }

    .hero-slide {
        position: relative;
        display: none;
    }

    .hero-slide.is-active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 54px 0 80px;
    }

    .hero-poster {
        height: 380px;
        transform: none;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .home-grid,
    .catalog-grid,
    .related-grid,
    .top-ranking-grid,
    .category-grid,
    .category-overview-grid,
    .mini-poster-row,
    .rank-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .logo-text {
        font-size: 22px;
    }

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

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

    .home-grid,
    .catalog-grid,
    .related-grid,
    .top-ranking-grid,
    .category-grid,
    .category-overview-grid,
    .mini-poster-row,
    .rank-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .poster-frame {
        height: 310px;
    }

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

    .rank-poster {
        height: 96px;
    }

    .large-search {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .large-search button {
        min-height: 52px;
    }

    .content-section,
    .warm-section,
    .accent-panel {
        padding: 48px 0;
    }
}
