:root {
    --bg: #0f172a;
    --bg-soft: #111827;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: rgba(17, 24, 39, 0.94);
    --line: rgba(255, 255, 255, 0.12);
    --text: #f8fafc;
    --muted: #a5b4fc;
    --subtle: #cbd5e1;
    --brand: #ef4444;
    --brand-2: #f97316;
    --accent: #8b5cf6;
    --radius: 20px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 10%, rgba(239, 68, 68, 0.22), transparent 32rem),
        radial-gradient(circle at 82% 8%, rgba(139, 92, 246, 0.24), transparent 34rem),
        linear-gradient(180deg, #0f172a 0%, #111827 46%, #1e293b 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
    z-index: -1;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--accent));
    box-shadow: 0 16px 35px rgba(239, 68, 68, 0.35);
}

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

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

.main-nav a,
.mobile-nav a,
.mobile-search,
.search-open {
    padding: 10px 14px;
    border-radius: 999px;
    color: #dbeafe;
    transition: 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active,
.search-open:hover {
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-open,
.mobile-search,
.menu-toggle {
    color: white;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    border-radius: 14px;
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto 16px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.9);
}

.mobile-nav.open {
    display: grid;
    gap: 6px;
}

.hero-carousel {
    position: relative;
    min-height: clamp(560px, 78vh, 780px);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.05);
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.84) 42%, rgba(15, 23, 42, 0.36) 78%, rgba(15, 23, 42, 0.86) 100%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.32), rgba(15, 23, 42, 0.96));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    margin-left: max(20px, calc((100vw - 1280px) / 2));
    padding-top: 40px;
}

.hero-kicker,
.panel-kicker,
.detail-kicker,
.page-hero span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: #fecaca;
    background: rgba(239, 68, 68, 0.13);
    font-size: 14px;
    font-weight: 700;
}

.hero-content h1 {
    margin: 22px 0 16px;
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero-content p {
    max-width: 720px;
    margin: 0;
    color: #e2e8f0;
    font-size: clamp(16px, 2.2vw, 21px);
    line-height: 1.8;
}

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

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.tag-row span,
.detail-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    color: #e0e7ff;
    background: rgba(99, 102, 241, 0.16);
    border: 1px solid rgba(165, 180, 252, 0.18);
    font-size: 12px;
}

.hero-actions,
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.22s ease;
}

.btn.primary {
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 20px 42px rgba(239, 68, 68, 0.30);
}

.btn.ghost {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero-poster {
    position: absolute;
    z-index: 2;
    right: max(20px, calc((100vw - 1280px) / 2));
    top: 50%;
    width: min(31vw, 390px);
    aspect-ratio: 2 / 3;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.hero-control-row {
    position: absolute;
    left: 50%;
    bottom: 36px;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.hero-arrow,
.hero-dot {
    cursor: pointer;
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.hero-arrow {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    padding: 0;
}

.hero-dot.active {
    width: 28px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.content-section,
.page-main {
    padding: 58px 0;
}

.section-heading,
.category-overview-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-heading h2,
.category-overview-head h2,
.page-hero h1,
.detail-info h1,
.detail-article h2,
.detail-side-list h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.section-heading h2,
.category-overview-head h2 {
    font-size: clamp(26px, 3.4vw, 42px);
}

.section-heading p,
.category-overview-head p,
.page-hero p,
.spotlight-panel p,
.detail-info p,
.detail-article p {
    color: var(--subtle);
    line-height: 1.8;
}

.section-heading p,
.category-overview-head p {
    margin: 8px 0 0;
}

.section-link {
    color: #fed7aa;
    font-weight: 800;
}

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

.featured-grid,
.archive-grid,
.category-page-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.70);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(30, 41, 59, 0.84);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.poster-link img,
.rank-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .poster-link img,
.rank-item:hover .rank-cover img {
    transform: scale(1.08);
}

.poster-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.96), transparent);
}

.card-score,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-weight: 900;
}

.card-score {
    right: 10px;
    top: 10px;
    padding: 5px 9px;
    color: #111827;
    background: #fde68a;
    font-size: 12px;
}

.rank-badge {
    left: 10px;
    top: 10px;
    min-width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.card-content {
    padding: 16px;
}

.card-title {
    display: block;
    color: white;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
}

.card-meta,
.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    color: #93c5fd;
    font-size: 13px;
}

.card-content p {
    margin: 10px 0 14px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

.movie-card.compact .card-content p {
    font-size: 13px;
}

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

.category-tile,
.spotlight-panel,
.page-hero,
.category-overview-block,
.detail-card,
.detail-article,
.detail-side-list,
.filter-bar {
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.category-tile {
    display: grid;
    gap: 12px;
    min-height: 220px;
    padding: 18px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.22s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 146, 60, 0.5);
}

.category-tile span {
    color: white;
    font-size: 22px;
    font-weight: 900;
}

.category-tile strong {
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.65;
}

.category-covers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: auto;
}

.category-covers img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 10px;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.rank-mini-list,
.full-rank-list {
    display: grid;
    gap: 12px;
}

.rank-item {
    display: grid;
    grid-template-columns: 54px 82px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.64);
    transition: 0.22s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    border-color: rgba(248, 113, 113, 0.42);
}

.rank-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: white;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.12);
}

.rank-cover {
    aspect-ratio: 2 / 3;
    border-radius: 14px;
    overflow: hidden;
}

.rank-title {
    font-size: 18px;
    font-weight: 900;
}

.rank-info p {
    margin: 6px 0 0;
    color: #cbd5e1;
    line-height: 1.6;
}

.spotlight-panel {
    position: sticky;
    top: 94px;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 0%, rgba(239, 68, 68, 0.26), transparent 16rem),
        rgba(15, 23, 42, 0.72);
}

.spotlight-panel h2 {
    margin: 18px 0 12px;
    font-size: 36px;
}

.page-hero {
    padding: clamp(30px, 6vw, 64px);
    border-radius: 32px;
    margin-bottom: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(239, 68, 68, 0.25), transparent 22rem),
        radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.24), transparent 22rem),
        rgba(15, 23, 42, 0.70);
}

.page-hero h1 {
    margin-top: 18px;
    font-size: clamp(36px, 6vw, 70px);
    line-height: 1;
}

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: 18px;
}

.category-overview-block {
    padding: 24px;
    border-radius: 28px;
    margin-bottom: 24px;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px 180px;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
    margin-bottom: 24px;
}

.filter-bar input,
.filter-bar select,
.global-search-input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: white;
    background: rgba(2, 6, 23, 0.54);
    outline: none;
}

.filter-bar input,
.filter-bar select {
    min-height: 48px;
    padding: 0 14px;
}

.filter-bar input:focus,
.filter-bar select:focus,
.global-search-input:focus {
    border-color: rgba(248, 113, 113, 0.75);
}

.filter-empty {
    display: none;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.24);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #bfdbfe;
    margin-bottom: 20px;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.video-frame {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: #020617;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: contain;
    background: #020617;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: white;
    background:
        radial-gradient(circle, rgba(239, 68, 68, 0.16), transparent 18rem),
        rgba(2, 6, 23, 0.36);
    transition: 0.22s ease;
}

.play-overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 24px 55px rgba(239, 68, 68, 0.38);
    font-size: 34px;
}

.video-frame.is-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.detail-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border-radius: 30px;
}

.detail-cover {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 22px;
}

.detail-info h1 {
    margin: 16px 0 12px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
}

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

.meta-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-list dt {
    color: #94a3b8;
}

.meta-list dd {
    margin: 0;
    color: white;
    font-weight: 800;
    text-align: right;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
    gap: 24px;
    margin-top: 30px;
}

.detail-article,
.detail-side-list {
    padding: 26px;
    border-radius: 28px;
}

.detail-article h2 + p {
    margin-top: 10px;
}

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

.detail-side-list {
    display: grid;
    gap: 12px;
    align-content: start;
}

.detail-side-list a {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.detail-side-list span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.32);
}

.detail-side-list strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.detail-side-list em {
    color: #93c5fd;
    font-style: normal;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    place-items: start center;
    padding: 88px 20px 20px;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(18px);
}

.search-modal.open {
    display: grid;
}

.search-panel {
    width: min(760px, 100%);
    max-height: min(780px, calc(100vh - 120px));
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    padding: 24px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
}

.search-close {
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    color: white;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    font-size: 26px;
}

.search-headline {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
}

.search-headline span {
    color: #fecaca;
    font-size: 14px;
    font-weight: 800;
}

.search-headline strong {
    font-size: 30px;
}

.global-search-input {
    min-height: 54px;
    padding: 0 16px;
    font-size: 18px;
}

.global-search-results {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.search-result {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.search-result img {
    width: 64px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 12px;
}

.search-result strong {
    display: block;
    margin-bottom: 5px;
}

.search-result span {
    color: #cbd5e1;
    font-size: 13px;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 6, 23, 0.44);
}

.footer-inner {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-links {
    display: flex;
    gap: 14px;
    color: #bfdbfe;
}

.footer-inner p {
    width: 100%;
    margin: 0;
    color: #94a3b8;
}

@media (max-width: 1180px) {
    .featured-grid,
    .archive-grid,
    .category-page-grid,
    .category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hero-poster {
        opacity: 0.42;
        right: 20px;
    }
}

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

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .hero-content {
        margin-left: 20px;
        max-width: calc(100% - 40px);
    }

    .hero-poster {
        display: none;
    }

    .movie-grid,
    .featured-grid,
    .archive-grid,
    .category-page-grid,
    .category-grid,
    .mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .two-column-section,
    .detail-hero,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-panel {
        position: static;
    }

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

@media (max-width: 640px) {
    .container,
    .nav-wrap,
    .footer-inner,
    .mobile-nav {
        width: min(100% - 28px, 1280px);
    }

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

    .hero-carousel {
        min-height: 620px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

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

    .card-content {
        padding: 12px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-content p {
        display: none;
    }

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

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

    .rank-info p {
        display: none;
    }

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

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

    .video-frame,
    .movie-player {
        min-height: 260px;
    }

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