:root {
    --bg: #f8fafc;
    --panel: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --dark: #020617;
    --dark-soft: #0f172a;
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --blue: #2563eb;
    --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f8fafc 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: linear-gradient(90deg, #020617 0%, #0f172a 46%, #111827 100%);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.35);
}

.header-inner {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
    font-size: 15px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
}

.desktop-nav a,
.mobile-nav a {
    color: rgba(255, 255, 255, 0.78);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.2s ease;
    white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: #fff;
    background: rgba(148, 163, 184, 0.16);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
}

.mobile-nav {
    display: none;
    padding: 10px 20px 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    background: #0f172a;
}

.mobile-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.hero {
    position: relative;
    height: 72vh;
    min-height: 560px;
    overflow: hidden;
    color: #fff;
    background: #020617;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 35%, rgba(6, 182, 212, 0.34), transparent 28%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.72) 45%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.92) 0%, transparent 36%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 80px 24px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.eyebrow span,
.eyebrow em {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.eyebrow span {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-color: transparent;
    color: #fff;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 720px;
    margin: 0 0 30px;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.88);
}

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

.primary-button,
.ghost-button,
.section-link,
.panel-more,
.category-block-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 38px rgba(6, 182, 212, 0.28);
}

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

.primary-button:hover,
.ghost-button:hover,
.section-link:hover,
.panel-more:hover,
.category-block-head a:hover {
    transform: translateY(-2px);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 58px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(10px);
    font-size: 42px;
    line-height: 1;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 30px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    transition: 0.2s ease;
}

.hero-dots button.active {
    width: 56px;
    background: #fff;
}

.hero-search {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: 72px;
    width: min(720px, calc(100% - 48px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.hero-search input,
.filter-search input {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 15px;
    padding: 13px 16px;
    color: var(--text);
    background: #fff;
}

.hero-search button {
    border: 0;
    border-radius: 15px;
    padding: 0 24px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.stats-strip {
    max-width: 1180px;
    margin: -34px auto 40px;
    position: relative;
    z-index: 10;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stats-strip a {
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.stats-strip strong {
    display: block;
    color: var(--cyan-dark);
    font-size: 28px;
    line-height: 1;
}

.stats-strip span {
    color: var(--muted);
    font-weight: 700;
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
}

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

.section-heading span,
.panel-title span,
.page-hero span,
.category-block-head span {
    color: var(--cyan-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.panel-title h2,
.page-hero h1,
.category-block-head h2 {
    margin: 4px 0 6px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.section-heading p,
.page-hero p,
.category-block-head p {
    margin: 0;
    color: var(--muted);
}

.section-link,
.panel-more,
.category-block-head a {
    color: var(--cyan-dark);
    background: #ecfeff;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    border-color: rgba(6, 182, 212, 0.36);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

.movie-card-default .movie-poster,
.movie-card-rank .movie-poster {
    aspect-ratio: 3 / 4;
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent);
}

.type-pill,
.rank-number {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    border-radius: 999px;
}

.type-pill {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    min-height: 28px;
    padding: 3px 10px;
    font-size: 12px;
    background: rgba(6, 182, 212, 0.92);
    backdrop-filter: blur(6px);
}

.rank-number {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.32);
}

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

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.movie-card h3 a:hover {
    color: var(--cyan-dark);
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
}

.movie-meta span {
    padding: 2px 8px;
    border-radius: 999px;
    background: #f1f5f9;
}

.movie-card p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-row span,
.detail-tags span {
    padding: 4px 8px;
    border-radius: 999px;
    color: #0e7490;
    background: #ecfeff;
    font-size: 12px;
    font-weight: 800;
}

.movie-card-wide {
    display: grid;
    grid-template-columns: 170px 1fr;
}

.movie-card-wide .movie-poster {
    aspect-ratio: auto;
    min-height: 190px;
}

.movie-card-mini .movie-card-body {
    padding: 13px;
}

.movie-card-mini h3 {
    font-size: 16px;
}

.movie-card-mini p {
    -webkit-line-clamp: 2;
}

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

.rank-panel,
.article-card,
.filter-panel,
.category-block {
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.rank-panel {
    padding: 22px;
}

.rank-item {
    display: grid;
    grid-template-columns: 34px 58px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.rank-item:last-of-type {
    border-bottom: 0;
}

.rank-item span {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.rank-item img {
    width: 58px;
    height: 76px;
    border-radius: 12px;
    object-fit: cover;
    background: #0f172a;
}

.rank-item strong {
    line-height: 1.3;
}

.rank-item em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.panel-more {
    width: 100%;
    margin-top: 16px;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    opacity: 0.62;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
    opacity: 0.72;
}

.category-tile span,
.category-tile strong {
    position: absolute;
    left: 20px;
    z-index: 2;
}

.category-tile span {
    bottom: 48px;
    font-size: 24px;
    font-weight: 900;
}

.category-tile strong {
    bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.38), transparent 26%),
        linear-gradient(135deg, #020617, #0f172a 54%, #0e7490);
}

.page-hero > div {
    max-width: 1280px;
    margin: 0 auto;
    padding: 92px 24px;
}

.page-hero h1 {
    color: #fff;
}

.page-hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.small-hero > div {
    padding-top: 78px;
    padding-bottom: 72px;
}

.filter-panel {
    margin-bottom: 26px;
    padding: 18px;
}

.filter-search {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}

.filter-search label {
    font-size: 18px;
    font-weight: 900;
}

.filter-search input {
    border: 1px solid var(--line);
    background: #f8fafc;
}

.filter-search strong {
    color: var(--cyan-dark);
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.filter-buttons button {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 12px;
    color: #334155;
    background: #fff;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.no-result {
    display: none;
    padding: 36px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: 24px;
    background: #fff;
}

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

.category-overview {
    display: grid;
    gap: 24px;
}

.category-block {
    padding: 24px;
}

.category-block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

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

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

.detail-hero {
    padding: 34px 24px 42px;
    background:
        radial-gradient(circle at 85% 15%, rgba(6, 182, 212, 0.18), transparent 28%),
        linear-gradient(180deg, #020617 0%, #0f172a 72%, #f8fafc 72%);
}

.breadcrumb {
    max-width: 1280px;
    margin: 0 auto 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #fff;
}

.detail-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
    align-items: start;
}

.player-card,
.detail-side {
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.72));
    cursor: pointer;
}

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

.play-symbol {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 45px rgba(6, 182, 212, 0.36);
    font-size: 30px;
    padding-left: 5px;
}

.detail-title-block {
    padding: 24px;
}

.detail-title-block span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    color: #0e7490;
    background: #ecfeff;
    font-weight: 900;
    font-size: 13px;
}

.detail-title-block h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.detail-title-block p {
    margin: 0;
    color: #475569;
    font-size: 17px;
}

.detail-side {
    padding: 18px;
}

.detail-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    object-fit: cover;
    background: #0f172a;
}

.detail-meta-list {
    margin: 18px 0;
    display: grid;
    gap: 10px;
}

.detail-meta-list div {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.detail-meta-list dt {
    color: var(--muted);
    font-weight: 800;
}

.detail-meta-list dd {
    margin: 0;
    font-weight: 800;
}

.detail-meta-list a {
    color: var(--cyan-dark);
}

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

.article-card {
    padding: 30px;
}

.article-card h2 {
    margin: 0 0 14px;
    font-size: 25px;
    letter-spacing: -0.03em;
}

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

.article-card p {
    margin: 0 0 16px;
    color: #334155;
    font-size: 17px;
}

.sticky-panel {
    position: sticky;
    top: 92px;
}

.site-footer {
    margin-top: 56px;
    color: rgba(255, 255, 255, 0.74);
    background: #020617;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
}

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

.site-footer p {
    margin: 0;
}

.site-footer a {
    display: block;
    margin: 8px 0;
}

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

.copyright {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    color: rgba(255, 255, 255, 0.46);
    font-size: 14px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 30px rgba(6, 182, 212, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.is-filtered-out {
    display: none;
}

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

    .menu-button {
        display: inline-flex;
    }

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

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

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 860px) {
    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 180px;
    }

    .hero-search {
        bottom: 86px;
        grid-template-columns: 1fr;
    }

    .stats-strip,
    .category-grid,
    .mini-grid,
    .movie-list-grid,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 620px) {
    .header-inner {
        padding: 0 16px;
    }

    .site-logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

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

    .hero-control {
        display: none;
    }

    .stats-strip,
    .movie-grid,
    .movie-grid-large,
    .rank-grid,
    .category-grid,
    .mini-grid,
    .movie-list-grid,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-wide {
        grid-template-columns: 120px 1fr;
    }

    .movie-card-wide .movie-poster {
        min-height: 170px;
    }

    .section-heading,
    .category-block-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .content-section {
        padding: 34px 16px;
    }

    .page-hero > div {
        padding-left: 16px;
        padding-right: 16px;
    }

    .detail-hero {
        padding-left: 16px;
        padding-right: 16px;
    }
}
