:root {
    --amber: #d97706;
    --amber-dark: #92400e;
    --amber-soft: #fef3c7;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --paper: #ffffff;
    --wash: #f8fafc;
    --night: #0f172a;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #f5f6f8;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    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(229, 231, 235, 0.9);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.24);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
}

.brand-text strong {
    font-size: 19px;
    letter-spacing: -0.02em;
}

.brand-text em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 auto;
}

.nav-link {
    color: #374151;
    font-weight: 650;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--amber-dark);
}

.top-search {
    display: flex;
    align-items: center;
    width: 270px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.top-search input,
.mobile-search input,
.hero-search input,
.local-keyword {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.top-search input {
    width: 100%;
    padding: 10px 14px;
}

.top-search button {
    border: 0;
    padding: 10px 16px;
    color: #fff;
    background: var(--amber);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #111827;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    color: #374151;
    font-weight: 650;
}

.mobile-search {
    display: flex;
    margin-top: 12px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    overflow: hidden;
}

.mobile-search input {
    flex: 1;
    padding: 11px 14px;
}

.mobile-search button {
    border: 0;
    color: #fff;
    background: var(--amber);
    padding: 0 16px;
}

body.menu-open .mobile-nav {
    display: block;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--night);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 48px;
    padding: 70px max(32px, calc((100vw - 1180px) / 2)) 82px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.8s ease;
}

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

.hero-content {
    max-width: 680px;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 13px;
    color: #fff;
    background: rgba(217, 119, 6, 0.92);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0.02em;
}

.hero h1,
.page-hero h1,
.detail-copy h1,
.simple-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.simple-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

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

.hero-meta {
    margin-top: 22px;
}

.hero-meta span,
.detail-meta span {
    padding: 6px 11px;
    color: #f9fafb;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 13px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 780;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.28);
}

.btn.ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
    transform: rotate(2deg);
}

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

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.search-band {
    margin-top: -44px;
    position: relative;
    z-index: 3;
}

.search-card {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    gap: 24px;
    align-items: center;
    padding: 26px;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.search-card h2 {
    margin: 0 0 6px;
    font-size: 24px;
}

.search-card p {
    margin: 0;
    color: var(--muted);
}

.hero-search {
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.hero-search input {
    flex: 1;
    padding: 15px 18px;
}

.hero-search button {
    border: 0;
    padding: 0 22px;
    color: #fff;
    background: var(--amber);
    cursor: pointer;
}

section.container,
.rank-feature {
    margin-top: 58px;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(24px, 4vw, 34px);
    letter-spacing: -0.03em;
}

.more-link {
    display: inline-flex;
    align-items: center;
    color: var(--amber-dark);
    font-weight: 750;
}

.more-link span {
    font-size: 26px;
    line-height: 1;
}

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

.category-tile,
.overview-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile {
    display: block;
    padding: 16px;
}

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

.tile-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.tile-images img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.category-tile strong {
    display: block;
    font-size: 19px;
}

.category-tile span {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7, #f3f4f6);
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
}

.play-dot {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(217, 119, 6, 0.94);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    min-width: 42px;
    padding: 5px 9px;
    color: #fff;
    background: rgba(15, 23, 42, 0.82);
    border-radius: 999px;
    text-align: center;
}

.card-body {
    padding: 16px;
}

.card-title {
    display: block;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.card-title:hover {
    color: var(--amber-dark);
}

.card-desc {
    min-height: 48px;
    margin: 8px 0 13px;
    color: #4b5563;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
}

.card-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #d1d5db;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag-row span,
.detail-tags a {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    color: var(--amber-dark);
    background: var(--amber-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.movie-card.is-compact {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    border-radius: 18px;
}

.movie-card.is-compact .poster {
    height: 100%;
    min-height: 132px;
}

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

.movie-card.is-compact .card-title {
    font-size: 16px;
}

.movie-card.is-compact .card-desc {
    min-height: 42px;
    font-size: 13px;
}

.rank-feature {
    padding: 58px 0;
    background: #fff;
}

.rank-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
}

.rank-panel,
.fresh-panel,
.ranking-side,
.watch-panel,
.detail-article,
.related-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--soft-shadow);
}

.rank-panel,
.fresh-panel {
    padding: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px 74px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.rank-row:hover {
    background: #f9fafb;
}

.rank-num {
    color: var(--amber-dark);
    font-size: 20px;
    font-weight: 850;
}

.rank-row img {
    width: 74px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f4f6;
}

.rank-copy {
    min-width: 0;
    display: grid;
}

.rank-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-play {
    color: var(--amber-dark);
    font-weight: 750;
}

.page-hero,
.detail-hero {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--night);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.simple-hero {
    background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 26%), linear-gradient(135deg, #111827, #1f2937 55%, #92400e);
}

.page-hero .container,
.simple-hero .container {
    padding: 70px 0;
}

.small-actions {
    margin-top: 24px;
}

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

.overview-card {
    padding: 24px;
}

.overview-main span {
    color: var(--amber-dark);
    font-weight: 800;
}

.overview-main h2 {
    margin: 8px 0;
    font-size: 26px;
}

.overview-main p {
    margin: 0 0 18px;
    color: var(--muted);
}

.overview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.overview-links a {
    padding: 7px 11px;
    color: #374151;
    background: #f9fafb;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
}

.list-section {
    margin-bottom: 70px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
}

.local-keyword,
.year-filter,
.type-filter {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
}

.local-keyword {
    flex: 1 1 260px;
}

.year-filter,
.type-filter {
    flex: 0 0 150px;
}

.empty-state {
    display: none;
    padding: 50px 20px;
    color: var(--muted);
    text-align: center;
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 22px;
}

.empty-state.is-visible {
    display: block;
}

.ranking-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.ranking-side {
    position: sticky;
    top: 94px;
    padding: 20px;
}

.ranking-side h2 {
    margin: 0 0 16px;
}

.rank-list.tight .rank-row {
    grid-template-columns: 34px 58px minmax(0, 1fr);
}

.rank-list.tight .rank-play {
    display: none;
}

.detail-hero {
    min-height: 560px;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: saturate(1.05);
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.2));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 44px 0 62px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

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

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

.detail-poster {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #111827;
}

.detail-copy {
    max-width: 780px;
}

.detail-copy h1 {
    color: #fff;
}

.detail-one-line {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 28px;
}

.detail-main {
    margin-top: 42px;
    margin-bottom: 70px;
}

.watch-panel {
    overflow: hidden;
    margin-bottom: 28px;
}

.player-box {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
}

.movie-player,
.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-player {
    background: #000;
}

.player-cover {
    border: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

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

.player-cover-bg,
.player-cover-mask {
    position: absolute;
    inset: 0;
}

.player-cover-bg {
    background-position: center;
    background-size: cover;
    filter: blur(1px) saturate(1.05);
    transform: scale(1.02);
}

.player-cover-mask {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.26));
}

.play-button {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: auto;
    color: #fff;
    background: rgba(217, 119, 6, 0.94);
    border-radius: 999px;
    font-size: 34px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.watch-copy {
    padding: 22px 24px;
}

.watch-copy h2,
.detail-article h2,
.related-panel h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.watch-copy p {
    margin: 0;
    color: #4b5563;
}

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

.detail-article,
.related-panel {
    padding: 24px;
}

.detail-article p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 16px;
}

.related-panel {
    position: sticky;
    top: 94px;
}

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

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding: 48px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 850;
}

.footer-brand span {
    color: #f59e0b;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 17px;
}

.site-footer p {
    margin: 0 0 12px;
    color: #9ca3af;
}

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

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

.copyright {
    font-size: 13px;
}

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

    .top-search {
        margin-left: auto;
    }

    .menu-toggle {
        display: block;
    }

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 270px;
    }

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

    .ranking-page,
    .content-layout,
    .rank-layout {
        grid-template-columns: 1fr;
    }

    .ranking-side,
    .related-panel {
        position: static;
    }
}

@media (max-width: 820px) {
    .header-inner {
        min-height: 64px;
    }

    .brand-text em,
    .top-search {
        display: none;
    }

    .hero {
        height: 620px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: end;
        padding: 54px 20px 76px;
    }

    .hero-poster {
        display: none;
    }

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

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

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

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

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

@media (max-width: 560px) {
    .container,
    .header-inner,
    .footer-inner,
    .mobile-nav {
        width: min(100% - 24px, 1180px);
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .hero h1,
    .page-hero h1,
    .detail-copy h1,
    .simple-hero h1 {
        font-size: 34px;
    }

    .hero p,
    .page-hero p,
    .simple-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .search-card {
        padding: 20px;
    }

    .hero-search,
    .filter-bar {
        display: grid;
        border-radius: 18px;
    }

    .hero-search button {
        min-height: 44px;
    }

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

    .movie-card.is-compact {
        grid-template-columns: 92px minmax(0, 1fr);
    }

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

    .rank-play {
        display: none;
    }

    .detail-hero {
        min-height: auto;
    }

    .detail-hero-inner {
        padding-top: 30px;
    }

    .play-button {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

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