:root {
    --color-emerald: #059669;
    --color-emerald-dark: #047857;
    --color-emerald-soft: #d1fae5;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-900: #111827;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 24px 50px rgba(15, 23, 42, 0.16);
    --radius-lg: 16px;
    --radius-xl: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--color-gray-900);
    background: linear-gradient(180deg, var(--color-gray-50) 0%, #ffffff 46%, #ffffff 100%);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.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.95);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: 0 3px 18px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(14px);
}

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

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gray-900);
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-emerald), #065f46);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text strong {
    font-size: 20px;
}

.logo-text small {
    color: var(--color-gray-500);
    font-size: 12px;
    margin-top: 3px;
}

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

.nav-link {
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--color-gray-600);
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-emerald);
    background: var(--color-emerald-soft);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--color-gray-100);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-gray-900);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 520px;
    overflow: hidden;
    background: #000000;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 46%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
}

.hero-eyebrow,
.detail-label,
.page-title-block span,
.quick-copy span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color-emerald);
    font-size: 14px;
    font-weight: 700;
}

.hero-content h1,
.hero-content h2 {
    margin: 18px 0 16px;
    max-width: 720px;
    color: #ffffff;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 24px;
    color: #d1d5db;
    font-size: clamp(17px, 2vw, 22px);
}

.hero-meta,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta {
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-meta span,
.detail-meta span {
    padding: 7px 12px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

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

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

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

.btn.primary {
    color: #ffffff;
    background: var(--color-emerald);
    box-shadow: 0 14px 28px rgba(5, 150, 105, 0.26);
}

.btn.primary:hover {
    background: var(--color-emerald-dark);
}

.btn.ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-panel {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(260px, 430px);
    gap: 24px;
    margin-top: -48px;
    padding: 26px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.quick-copy h2 {
    margin: 12px 0 8px;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.03em;
}

.quick-copy p {
    margin: 0;
    color: var(--color-gray-600);
}

.quick-search {
    display: flex;
    align-self: start;
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    border-radius: 14px;
    background: #ffffff;
}

.quick-search input,
.search-panel input,
.search-panel select,
.list-toolbar input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--color-gray-900);
    background: #ffffff;
}

.quick-search input {
    flex: 1;
    padding: 0 16px;
}

.quick-search button,
.search-panel button {
    border: 0;
    color: #ffffff;
    background: var(--color-emerald);
    font-weight: 800;
}

.quick-search button {
    padding: 0 20px;
}

.category-chips {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-chips a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--color-gray-700);
    background: var(--color-gray-100);
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.category-chips a:hover {
    color: var(--color-emerald);
    background: var(--color-emerald-soft);
    transform: translateY(-1px);
}

.category-chips span {
    color: var(--color-gray-500);
    font-size: 12px;
}

.page-stack {
    padding: 64px 0;
}

.content-section {
    margin-bottom: 68px;
}

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

.section-heading h2,
.page-title-block h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.section-heading p,
.page-title-block p {
    max-width: 780px;
    margin: 8px 0 0;
    color: var(--color-gray-600);
}

.section-more {
    flex: none;
    color: var(--color-emerald);
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    color: inherit;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(5, 150, 105, 0.28);
    box-shadow: var(--shadow-strong);
}

.poster-wrap,
.wide-cover,
.horizontal-cover,
.detail-poster,
.category-preview {
    position: relative;
    overflow: hidden;
    background: var(--color-gray-200);
}

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

.poster-wrap img,
.wide-cover img,
.horizontal-cover img,
.detail-poster img,
.category-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 48%);
}

.poster-type {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--color-emerald);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.poster-meta {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: flex;
    gap: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.card-body {
    padding: 14px;
}

.card-body h3,
.horizontal-body h3 {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--color-gray-900);
    font-size: 16px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--color-emerald);
}

.card-body p,
.horizontal-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--color-gray-500);
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wide-cover {
    aspect-ratio: 16 / 9;
}

.wide-badges {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: flex;
    gap: 8px;
}

.wide-badges span {
    padding: 5px 9px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.wide-badges span:first-child {
    background: var(--color-emerald);
}

.large-card .card-body {
    padding: 18px;
}

.large-card .card-body h3 {
    font-size: 19px;
}

.movie-meta {
    margin-top: 12px;
    color: var(--color-gray-500);
    font-size: 13px;
}

.horizontal-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
    padding: 10px;
}

.horizontal-cover {
    width: 150px;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
}

.horizontal-body {
    min-width: 0;
    padding: 4px 8px 4px 0;
}

.small-meta {
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
}

.split-section .rank-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 28px;
}

.rank-list,
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rank-row,
.ranking-item {
    display: grid;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--color-gray-200);
    background: #ffffff;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding: 14px 16px;
}

.rank-row:hover,
.ranking-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.rank-row strong,
.ranking-item strong {
    color: var(--color-emerald);
    font-size: 20px;
}

.rank-row span,
.ranking-title {
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row em,
.ranking-item em {
    color: var(--color-gray-500);
    font-style: normal;
    font-size: 13px;
}

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

.category-card {
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 120px;
}

.category-info {
    padding: 18px;
}

.category-info span {
    color: var(--color-emerald);
    font-size: 13px;
    font-weight: 800;
}

.category-info h2 {
    margin: 6px 0 8px;
    font-size: 22px;
}

.category-info p {
    margin: 0;
    color: var(--color-gray-600);
    font-size: 14px;
}

.inner-page {
    padding-top: 38px;
    padding-bottom: 76px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    color: var(--color-gray-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--color-emerald);
    font-weight: 700;
}

.breadcrumb a::after {
    content: "/";
    margin-left: 9px;
    color: var(--color-gray-400);
}

.page-title-block {
    margin-bottom: 32px;
}

.page-title-block span {
    color: var(--color-emerald);
    background: var(--color-emerald-soft);
}

.page-title-block h1 {
    margin-top: 14px;
}

.list-toolbar,
.search-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.list-toolbar input,
.search-panel input,
.search-panel select {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
}

.list-toolbar input,
.search-panel input {
    flex: 1 1 280px;
}

.search-panel select {
    flex: 0 1 180px;
}

.search-panel button {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
}

.list-toolbar span,
.result-count {
    color: var(--color-gray-600);
    font-weight: 700;
}

.result-count {
    margin: 0 0 18px;
}

.ranking-item {
    grid-template-columns: 58px 56px minmax(0, 1fr) 120px 90px 90px;
    padding: 10px 14px;
}

.ranking-item img {
    width: 56px;
    height: 74px;
    border-radius: 10px;
    object-fit: cover;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    background: #020617;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: blur(14px);
    transform: scale(1.08);
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.9));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    padding: 34px 0 54px;
}

.detail-breadcrumb {
    color: #cbd5e1;
}

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

.detail-poster {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.detail-info h1 {
    margin: 18px 0 14px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 850px;
    margin: 0 0 22px;
    color: #d1d5db;
    font-size: 18px;
}

.detail-meta {
    margin-bottom: 18px;
    color: #ffffff;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.tag-list span {
    padding: 6px 10px;
    border-radius: 999px;
    color: #d1fae5;
    background: rgba(5, 150, 105, 0.18);
    font-size: 13px;
    font-weight: 700;
}

.detail-stack {
    padding-top: 52px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    background: #000000;
    box-shadow: var(--shadow-strong);
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle, rgba(5, 150, 105, 0.28), rgba(0, 0, 0, 0.7) 60%),
        rgba(0, 0, 0, 0.35);
    font-size: 18px;
    font-weight: 800;
}

.player-shell.is-playing .player-cover {
    display: none;
}

.play-symbol {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--color-emerald);
    box-shadow: 0 20px 45px rgba(5, 150, 105, 0.36);
    font-size: 30px;
    text-indent: 4px;
}

.player-message {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 20px;
    z-index: 3;
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.86);
}

.prose-section {
    padding: 28px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.prose-section h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.prose-section p {
    margin: 0 0 24px;
    color: var(--color-gray-700);
    font-size: 17px;
}

.prose-section p:last-child {
    margin-bottom: 0;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
    border-top: 1px solid #1f2937;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) 1fr 1fr;
    gap: 36px;
    padding: 46px 0;
}

.footer-logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.site-footer p {
    max-width: 520px;
    color: #9ca3af;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

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

.site-footer a:hover {
    color: #34d399;
}

.hidden-card {
    display: none !important;
}

@media (max-width: 1100px) {
    .movie-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--color-gray-200);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: var(--shadow-strong);
    }

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

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

    .hero-slider {
        height: 72vh;
        min-height: 560px;
    }

    .hero-arrow {
        display: none;
    }

    .quick-panel {
        grid-template-columns: 1fr;
        margin-top: -34px;
        padding: 20px;
    }

    .section-heading,
    .split-section .rank-layout,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .ranking-item span:not(.ranking-title),
    .ranking-item em {
        display: none;
    }
}

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

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

    .logo-text small {
        display: none;
    }

    .hero-content {
        padding-top: 24px;
    }

    .hero-meta span,
    .detail-meta span {
        font-size: 13px;
    }

    .quick-search {
        flex-direction: column;
        padding: 10px;
    }

    .quick-search input,
    .quick-search button {
        width: 100%;
        min-height: 44px;
        border-radius: 10px;
    }

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

    .card-body {
        padding: 12px;
    }

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

    .category-preview {
        height: 94px;
    }

    .horizontal-card {
        grid-template-columns: 1fr;
    }

    .horizontal-cover {
        width: 100%;
    }

    .detail-hero-inner {
        padding-bottom: 40px;
    }

    .prose-section {
        padding: 20px;
    }
}
