:root {
    --color-blue: #2563eb;
    --color-blue-dark: #1d4ed8;
    --color-blue-soft: #dbeafe;
    --color-yellow: #facc15;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-bg: #f5f7fb;
    --shadow-card: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-card-hover: 0 18px 38px rgba(15, 23, 42, 0.16);
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 6px 28px rgba(15, 23, 42, 0.08);
}

.nav-inner,
.page-container,
.footer-inner {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
}

.nav-inner {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-icon {
    width: 2.1rem;
    height: 2.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-blue), #60a5fa);
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.26);
}

.brand-copy,
.footer-brand div {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-size: 1.24rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-subtitle,
.footer-brand small {
    color: var(--color-muted);
    font-size: 0.75rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link,
.nav-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 0.9rem;
    color: #374151;
    border-radius: 0.75rem;
    font-size: 0.92rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-menu-link:hover,
.nav-link.is-active {
    color: #1d4ed8;
    background: #dbeafe;
}

.nav-menu {
    position: relative;
}

.nav-menu-button {
    border: 0;
    cursor: pointer;
    background: transparent;
}

.nav-menu-panel {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    min-width: 11rem;
    display: none;
    padding: 0.55rem;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    box-shadow: var(--shadow-card-hover);
}

.nav-menu:hover .nav-menu-panel,
.nav-menu:focus-within .nav-menu-panel {
    display: grid;
}

.mobile-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.7rem;
    border: 0;
    border-radius: 0.85rem;
    background: #f3f4f6;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: #374151;
}

.mobile-panel {
    display: none;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid var(--color-border);
}

.mobile-panel.is-open {
    display: grid;
    gap: 0.35rem;
}

.hero {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 1.1s ease;
    background-image: var(--hero-image), radial-gradient(circle at top left, rgba(37, 99, 235, 0.45), transparent 32%), linear-gradient(135deg, #111827, #0f172a 55%, #172554);
    background-size: cover;
    background-position: center;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    transform: scale(1);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.16));
}

.hero-content {
    position: relative;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    max-width: 43rem;
    color: #ffffff;
}

.hero-pill,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.48rem 0.85rem;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.9);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.hero h1,
.detail-copy h1,
.page-hero h1 {
    margin: 1rem 0;
    font-size: clamp(2.4rem, 6vw, 4.9rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 42rem;
    margin: 0 0 1.4rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.66rem;
    color: #1f2937;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-tags .tag {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.primary-button,
.secondary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.78rem 1.25rem;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: var(--color-blue);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}

.primary-button:hover {
    background: var(--color-blue-dark);
    transform: translateY(-2px);
}

.secondary-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.secondary-button.dark {
    color: #1f2937;
    background: #ffffff;
    border-color: var(--color-border);
}

.primary-button.small {
    min-height: auto;
    padding: 0.58rem 1rem;
    font-size: 0.88rem;
}

.ghost-button {
    color: #374151;
    background: #ffffff;
    border: 1px solid var(--color-border);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 999px;
    font-size: 2.1rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 1rem;
}

.hero-next {
    right: 1rem;
}

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

.hero-dot {
    width: 0.6rem;
    height: 0.6rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 2rem;
    background: #ffffff;
}

.home-sections,
.stacked-sections {
    padding: 3rem 0;
}

.stacked-sections {
    display: grid;
    gap: 2rem;
}

.content-section {
    margin-bottom: 3rem;
}

.section-heading,
.category-overview-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.section-heading h2,
.category-overview-heading h2,
.article-section h2,
.player-section h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p,
.category-overview-heading p {
    margin: 0.35rem 0 0;
    color: var(--color-muted);
}

.text-link {
    color: var(--color-blue);
    font-weight: 800;
}

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

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

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

.movie-card {
    min-width: 0;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-link {
    display: block;
    height: 100%;
}

.poster-art,
.list-poster,
.detail-poster {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(15, 23, 42, 0.95)), var(--poster-image);
    background-size: cover;
    background-position: center;
}

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

.movie-card.is-wide .poster-art {
    aspect-ratio: 16 / 9;
}

.poster-art.tall {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card-hover);
}

.poster-art img,
.list-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.movie-card:hover .poster-art img,
.review-list-item:hover .list-poster img {
    transform: scale(1.08);
}

.poster-art::after,
.list-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.76));
    pointer-events: none;
}

.rating-badge,
.rank-badge,
.list-poster span,
.category-count {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 0.55rem;
    font-size: 0.75rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.rating-badge {
    top: 0.65rem;
    right: 0.65rem;
}

.rank-badge {
    top: 0.65rem;
    left: 0.65rem;
    background: rgba(37, 99, 235, 0.9);
}

.poster-fallback-title {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 2;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.movie-card-body {
    padding: 1rem;
}

.movie-card-body h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-body p {
    margin: 0 0 0.75rem;
    color: var(--color-muted);
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--color-muted);
    font-size: 0.8rem;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 0.45rem;
}

.movie-card .tag-row {
    margin-top: 0.75rem;
}

.horizontal-section {
    overflow: hidden;
}

.with-actions {
    align-items: center;
}

.scroll-actions {
    display: flex;
    gap: 0.5rem;
}

.scroll-actions button {
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    font-size: 1.5rem;
    cursor: pointer;
}

.horizontal-row {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.horizontal-row::-webkit-scrollbar {
    display: none;
}

.horizontal-card {
    flex: 0 0 14rem;
}

.review-list {
    display: grid;
    gap: 1rem;
}

.review-list-item {
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-list-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.review-list-item a {
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.list-poster {
    width: 10rem;
    flex: 0 0 10rem;
    aspect-ratio: 16 / 9;
    border-radius: 0.8rem;
}

.list-poster span {
    top: 0.5rem;
    right: 0.5rem;
}

.list-copy {
    min-width: 0;
}

.list-title-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.list-copy h3 {
    margin: 0 0 0.45rem;
    font-size: 1.15rem;
}

.list-copy p {
    margin: 0 0 0.7rem;
    color: var(--color-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-rank {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--color-blue);
    border-radius: 0.65rem;
    font-weight: 900;
}

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

.category-tile {
    position: relative;
    min-height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.1rem;
    color: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.9)), var(--tile-image), linear-gradient(135deg, #1e3a8a, #111827);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-card);
}

.category-tile h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 0.4rem;
    font-size: 1.25rem;
}

.category-tile p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.category-count {
    top: 0.8rem;
    right: 0.8rem;
}

.page-hero {
    padding: 4.5rem 0;
    color: #ffffff;
    background: radial-gradient(circle at 15% 20%, rgba(96, 165, 250, 0.45), transparent 28%), linear-gradient(135deg, #111827, #172554);
}

.page-hero p {
    max-width: 46rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

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

.filter-panel {
    padding: 1rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.filter-panel label {
    display: grid;
    gap: 0.35rem;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 0.8rem;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-search {
    margin-bottom: 1rem;
}

.filter-selects {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: end;
}

.filter-count,
.no-results {
    margin: 1rem 0 0;
    color: var(--color-muted);
    font-weight: 700;
}

.category-overview-block {
    padding: 1.2rem;
    background: #ffffff;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
}

.detail-hero {
    padding: 3rem 0;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.42), transparent 30%), linear-gradient(135deg, #020617, #111827 62%, #172554);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(14rem, 20rem) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.detail-copy h1 {
    margin-top: 0.9rem;
    margin-bottom: 0.7rem;
}

.detail-one-line {
    max-width: 58rem;
    margin: 0 0 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
}

.detail-meta-table {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.detail-meta-table div {
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
}

.detail-meta-table strong,
.detail-meta-table span {
    display: block;
}

.detail-meta-table strong {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

.detail-meta-table span {
    margin-top: 0.25rem;
    font-weight: 800;
}

.detail-tags .tag {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.player-section,
.article-section {
    padding: 1.2rem;
    background: #ffffff;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background-image: linear-gradient(135deg, rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.9)), var(--player-image), linear-gradient(135deg, #111827, #172554);
    background-size: cover;
    background-position: center;
}

.movie-player {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #ffffff;
    border: 0;
    background: rgba(0, 0, 0, 0.42);
    cursor: pointer;
    font-weight: 900;
    font-size: 1.1rem;
}

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

.play-circle {
    width: 4.5rem;
    height: 4.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.2rem;
    color: #ffffff;
    background: var(--color-blue);
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.35);
}

.article-section p {
    margin: 0;
    color: #374151;
    font-size: 1.02rem;
}

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

.footer-inner {
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand strong {
    color: #ffffff;
}

.footer-grid p {
    margin: 0;
    color: #9ca3af;
}

.footer-grid h2 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.4rem;
}

.footer-links a {
    color: #9ca3af;
}

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

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    text-align: center;
    font-size: 0.9rem;
}

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

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

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

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: 62vh;
    }

    .hero-content {
        padding: 0 2.5rem;
    }

    .hero-control {
        width: 2.4rem;
        height: 2.4rem;
    }

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

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

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

    .detail-poster {
        max-width: 18rem;
    }

    .detail-meta-table,
    .filter-selects,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .review-list-item a {
        align-items: flex-start;
    }

    .list-poster {
        width: 8rem;
        flex-basis: 8rem;
    }
}

@media (max-width: 560px) {
    .nav-inner,
    .page-container,
    .footer-inner {
        width: min(100% - 1.2rem, 1280px);
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-subtitle {
        display: none;
    }

    .hero {
        min-height: 68vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-control {
        display: none;
    }

    .hero p {
        -webkit-line-clamp: 4;
    }

    .home-sections,
    .stacked-sections {
        padding: 2rem 0;
    }

    .movie-grid,
    .wide-grid,
    .compact-grid,
    .category-grid {
        gap: 0.8rem;
    }

    .movie-card-body {
        padding: 0.78rem;
    }

    .movie-card-body h3 {
        font-size: 0.98rem;
    }

    .movie-card-body p {
        font-size: 0.84rem;
    }

    .review-list-item a {
        flex-direction: column;
    }

    .list-poster {
        width: 100%;
        flex-basis: auto;
    }

    .detail-meta-table {
        gap: 0.55rem;
    }
}
