:root {
    --page-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #111827;
    --text-soft: #4b5563;
    --text-muted: #6b7280;
    --line: #e5e7eb;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #06b6d4;
    --teal: #14b8a6;
    --red: #ef4444;
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.14);
    --radius: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: var(--page-bg);
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.93);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    box-shadow: 0 12px 22px rgba(37, 99, 235, 0.24);
}

.brand-text {
    font-size: 21px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    position: relative;
    color: #374151;
    font-weight: 650;
    padding: 22px 0;
    border: 0;
    background: transparent;
}

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

.nav-link.is-active::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 99px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(2, minmax(96px, 1fr));
    gap: 8px;
    width: 240px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-panel a {
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--text-soft);
}

.dropdown-panel a:hover {
    color: var(--blue);
    background: #eff6ff;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

.header-search input {
    width: 190px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 8px 8px 8px 14px;
    color: var(--text-main);
}

.header-search button,
.primary-button,
.secondary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 0;
    font-weight: 750;
    transition: 0.2s ease;
}

.header-search button,
.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.header-search button {
    padding: 8px 16px;
}

.primary-button,
.secondary-button {
    min-height: 46px;
    padding: 0 22px;
}

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

.primary-button:hover,
.header-search button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: #eff6ff;
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;
    background: var(--blue);
    border-radius: 99px;
}

.mobile-panel {
    display: none;
    padding: 12px 24px 22px;
    background: #ffffff;
    border-top: 1px solid var(--line);
}

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

.mobile-panel.is-open {
    display: block;
}

.hero-section,
.page-hero,
.detail-hero,
.wide-cta {
    position: relative;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 55%, #14b8a6 100%);
    overflow: hidden;
}

.hero-section {
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 72px 0 56px;
}

.hero-section::before,
.page-hero::before,
.detail-hero::before,
.wide-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.25), transparent 30%), rgba(0, 0, 0, 0.1);
}

.hero-orb {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.28;
    background: #ffffff;
}

.hero-orb-one {
    left: -70px;
    bottom: 60px;
}

.hero-orb-two {
    right: 10%;
    top: 40px;
}

.hero-shell {
    position: relative;
    z-index: 2;
}

.hero-carousel {
    position: relative;
    min-height: 444px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: 44px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: 0.45s ease;
}

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

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-summary {
    max-width: 720px;
    margin: 24px 0 0;
    color: #e0f2fe;
    font-size: clamp(18px, 2.2vw, 24px);
}

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

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

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

.hero-tags a,
.hero-channel-row a,
.detail-tags a,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags a,
.hero-channel-row a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-visual {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-visual img,
.poster-frame img,
.compact-cover img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.78));
}

.hero-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.82);
    transform: translate(-50%, -50%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.34);
}

.hero-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    font-size: 24px;
    font-weight: 850;
}

.hero-controls {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

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

.hero-dot {
    width: 36px;
    height: 8px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.7;
}

.hero-dot.is-active {
    width: 56px;
    background: #ffffff;
    opacity: 1;
}

.hero-channel-row {
    position: relative;
    z-index: 4;
    margin-top: 28px;
}

.main-sections {
    padding: 56px 0 72px;
}

.section-block {
    margin-top: 34px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-kicker {
    color: var(--blue);
}

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

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

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

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

.movie-card,
.category-card,
.category-overview-card > a,
.compact-card,
.detail-article,
.detail-side {
    background: var(--card-bg);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.movie-card {
    overflow: hidden;
    transition: 0.25s ease;
}

.movie-card:hover,
.category-card:hover,
.category-overview-card > a:hover,
.compact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.poster-frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.poster-frame img.is-missing,
.compact-cover img.is-missing,
.hero-visual img.is-missing,
.detail-poster img.is-missing {
    opacity: 0;
}

.movie-card:hover .poster-frame img,
.hero-visual:hover img {
    transform: scale(1.08);
}

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(15, 23, 42, 0.46);
    transition: 0.2s ease;
}

.movie-card:hover .poster-frame::after {
    opacity: 1;
}

.poster-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.play-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.86);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: 0.2s ease;
}

.movie-card:hover .play-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-card h2,
.compact-card h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
}

.movie-card h2 a:hover,
.compact-card h2 a:hover,
.side-link:hover,
.footer a:hover {
    color: var(--blue);
}

.movie-card p,
.compact-card p,
.category-card p,
.category-overview-card p {
    display: -webkit-box;
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 13px;
}

.movie-meta span {
    display: inline-flex;
    align-items: center;
}

.movie-meta span + span::before {
    content: "·";
    margin-right: 8px;
    color: #cbd5e1;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span,
.detail-tags a {
    color: var(--blue-dark);
    background: #eff6ff;
}

.ranking-preview,
.ranking-list {
    display: grid;
    gap: 14px;
}

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

.compact-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px;
    transition: 0.25s ease;
}

.compact-cover {
    width: 86px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.compact-title-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rank-num {
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 10px;
    font-weight: 900;
}

.ghost-button {
    color: var(--blue);
    background: #eff6ff;
    padding: 10px 16px;
}

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

.category-card,
.category-overview-card > a {
    display: block;
    padding: 22px;
    transition: 0.25s ease;
}

.category-card span,
.category-overview-card h2 {
    display: block;
    margin: 0;
    font-size: 20px;
    font-weight: 850;
}

.category-card strong {
    display: block;
    margin-top: 18px;
    color: var(--blue);
    font-size: 14px;
}

.category-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 14px;
    font-weight: 900;
}

.mini-links {
    display: grid;
    gap: 7px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 13px;
}

.page-hero {
    padding: 76px 0 70px;
}

.compact-page-hero {
    padding: 54px 0;
}

.page-hero .container,
.detail-hero .container,
.wide-cta .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.12;
}

.page-hero p,
.wide-cta p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #e0f2fe;
    font-size: 20px;
}

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

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.filter-bar input {
    flex: 1;
    min-width: 180px;
    border: 0;
    outline: 0;
    background: #f8fafc;
    border-radius: 999px;
    padding: 13px 18px;
}

.filter-bar span {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 650;
}

.wide-cta {
    padding: 70px 0;
}

.wide-cta-inner {
    position: relative;
    text-align: center;
}

.wide-cta h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
}

.wide-cta p {
    margin-left: auto;
    margin-right: auto;
}

.wide-cta div div {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.detail-hero {
    padding: 48px 0 56px;
}

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

.detail-poster {
    border-radius: 24px;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.34);
    aspect-ratio: 2 / 3;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #e0f2fe;
    font-size: 14px;
}

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

.detail-info h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.12;
}

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

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 820px;
    margin-top: 24px;
}

.detail-meta-grid span {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
}

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

.player-section {
    margin-top: -32px;
    position: relative;
    z-index: 4;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.35);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.5));
    transition: 0.2s ease;
}

.player-overlay span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
    font-size: 34px;
}

.video-shell.is-playing .player-overlay {
    opacity: 0;
    pointer-events: none;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    margin-top: 34px;
}

.detail-article,
.detail-side {
    padding: 28px;
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

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

.detail-article p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    white-space: pre-line;
}

.side-link {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: #374151;
}

.side-link em {
    color: var(--text-muted);
    font-style: normal;
}

.site-footer {
    margin-top: 70px;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding: 50px 0;
}

.footer-brand {
    color: #ffffff;
    font-size: 20px;
}

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

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

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

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid #1f2937;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

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

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

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

    .hero-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }

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

    .hero-visual {
        min-height: 380px;
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

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

    .hero-section {
        padding-top: 48px;
        min-height: auto;
    }

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

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

    .ranking-preview {
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        width: min(280px, 80vw);
    }
}

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

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

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

    .hero-visual {
        min-height: 300px;
    }

    .hero-actions,
    .wide-cta div div {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

    .compact-card .ghost-button {
        grid-column: 1 / -1;
    }

    .filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

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