:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.95);
    --line: rgba(148, 163, 184, 0.18);
    --text: #e5e7eb;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --violet: #8b5cf6;
    --gold: #facc15;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(2, 6, 23, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 34rem),
        radial-gradient(circle at top right, rgba(139, 92, 246, 0.16), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

img {
    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: 50;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.38);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.28);
}

.brand-text strong,
.brand-text em {
    display: block;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.nav-link,
.mobile-link {
    color: #dbeafe;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-link {
    font-size: 15px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--cyan);
}

.header-search,
.mobile-search,
.wide-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
}

.header-search input,
.mobile-search input,
.wide-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
}

.header-search input {
    width: 220px;
    padding: 11px 14px;
}

.header-search button,
.mobile-search button,
.wide-search button {
    border: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.header-search button {
    padding: 11px 15px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
}

.mobile-panel {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid var(--line);
}

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

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.mobile-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.64);
}

.mobile-search input {
    width: 100%;
    padding: 12px 14px;
}

.mobile-search button {
    padding: 12px 16px;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.85s ease, transform 1.4s ease;
}

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

.hero-bg,
.page-hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.46;
    filter: saturate(1.08);
}

.hero-overlay,
.page-hero-mask,
.detail-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.73) 42%, rgba(2, 6, 23, 0.22) 100%),
        linear-gradient(0deg, #020617 0%, transparent 48%);
}

.hero-content {
    position: relative;
    min-height: 72vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 46px;
    padding: 70px 0;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 13px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 999px;
    color: #67e8f9;
    background: rgba(34, 211, 238, 0.12);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 900px;
    color: #fff;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    text-shadow: 0 18px 60px rgba(2, 6, 23, 0.56);
}

.hero p {
    max-width: 760px;
    margin: 24px 0 0;
    color: #dbeafe;
    font-size: clamp(18px, 2vw, 24px);
}

.hero-tags,
.tag-row,
.genre-row,
.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

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

.hero-tags span,
.tag-row span,
.genre-row span,
.info-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 11px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.66);
    font-size: 13px;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 38px rgba(34, 211, 238, 0.28);
}

.ghost-btn {
    border: 1px solid rgba(226, 232, 240, 0.28);
    color: #fff;
    background: rgba(15, 23, 42, 0.58);
}

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

.hero-poster {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

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

.hero-poster span,
.card-play,
.big-play {
    display: grid;
    place-items: center;
}

.hero-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.88);
    transform: translate(-50%, -50%);
    box-shadow: 0 16px 38px rgba(34, 211, 238, 0.34);
}

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

.hero-dot {
    width: 32px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.hero-dot.active {
    width: 54px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.section {
    padding: 74px 0;
}

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

.section-head h2,
.search-panel h2,
.story-card h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head h2,
.search-panel h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.section-head a {
    color: #67e8f9;
    font-weight: 800;
}

.search-spotlight {
    padding-top: 58px;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    gap: 28px;
    align-items: center;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.62));
    box-shadow: var(--shadow);
}

.search-panel p,
.page-hero p,
.card-body em,
.story-card p,
.site-footer p,
.board-text em,
.category-tile em,
.detail-copy .one-line {
    color: var(--muted);
}

.wide-search {
    min-height: 58px;
    background: rgba(2, 6, 23, 0.58);
}

.wide-search input {
    flex: 1;
    padding: 0 20px;
}

.wide-search button {
    align-self: stretch;
    padding: 0 24px;
    font-weight: 800;
}

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

.category-tile,
.category-board {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.22);
}

.category-tile {
    min-height: 190px;
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile span {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 2;
}

.category-tile strong,
.board-text strong {
    display: block;
    color: #fff;
    font-size: 20px;
}

.category-tile em,
.board-text em {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 13px;
}

.category-tile:hover img {
    opacity: 0.52;
    transform: scale(1.06);
}

.movie-grid,
.rank-grid {
    display: grid;
    gap: 18px;
}

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

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

.movie-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 12px 34px rgba(2, 6, 23, 0.24);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.52);
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.32);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #111827;
}

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

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

.poster-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(2, 6, 23, 0.88));
}

.card-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    box-shadow: 0 12px 28px rgba(34, 211, 238, 0.28);
}

.rank-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 4;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border-radius: 999px;
    color: #020617;
    background: linear-gradient(135deg, #fde68a, #facc15);
    font-size: 14px;
}

.card-body {
    display: flex;
    min-height: 154px;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
}

.card-meta {
    color: #67e8f9;
    font-size: 12px;
}

.card-body strong {
    display: -webkit-box;
    min-height: 45px;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-body em {
    display: -webkit-box;
    overflow: hidden;
    font-style: normal;
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tag-row {
    margin-top: auto;
}

.tag-row span {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 12px;
}

.dark-band {
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.invert a,
.invert .section-kicker {
    color: #a5f3fc;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: #020617;
}

.page-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
}

.small-hero {
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 28rem),
        linear-gradient(135deg, #020617, #172554 50%, #111827);
}

.page-hero .container {
    position: relative;
    z-index: 2;
    padding: 70px 0;
}

.page-hero h1 {
    max-width: 820px;
    font-size: clamp(42px, 6vw, 70px);
}

.page-hero p {
    max-width: 720px;
    margin-top: 18px;
    font-size: 18px;
}

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

.category-board {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    min-height: 180px;
}

.board-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    padding: 10px;
}

.board-images img {
    width: 100%;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
}

.board-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
}

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.78);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-pill {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(2, 6, 23, 0.35);
    cursor: pointer;
}

.filter-pill.active,
.filter-pill:hover {
    color: #fff;
    border-color: rgba(34, 211, 238, 0.5);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.52), rgba(59, 130, 246, 0.5));
}

.live-search {
    width: min(100%, 300px);
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: none;
    padding: 0 14px;
    color: #fff;
    background: rgba(2, 6, 23, 0.45);
}

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

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 28px;
    color: #cbd5e1;
    font-size: 14px;
}

.breadcrumb a {
    color: #67e8f9;
}

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.detail-copy h1 {
    font-size: clamp(40px, 6vw, 72px);
}

.detail-copy .one-line {
    max-width: 850px;
    margin: 18px 0 22px;
    font-size: 20px;
}

.info-pills {
    margin-bottom: 18px;
}

.detail-tags {
    margin-bottom: 30px;
}

.watch-section {
    padding-top: 0;
}

.watch-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 28px;
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.watch-shell video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.84));
    cursor: pointer;
}

.player-cover.hidden {
    opacity: 0;
    pointer-events: none;
}

.big-play {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 20px 50px rgba(34, 211, 238, 0.36);
    font-size: 30px;
}

.player-cover strong {
    max-width: 80%;
    font-size: clamp(20px, 4vw, 34px);
    text-align: center;
}

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

.story-card,
.side-card,
.search-result-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.76);
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.2);
}

.story-card {
    padding: 34px;
}

.story-card h2 {
    margin-bottom: 18px;
    font-size: 34px;
}

.story-card h3 {
    margin: 28px 0 12px;
    color: #fff;
    font-size: 24px;
}

.story-card p {
    margin: 0 0 14px;
    font-size: 17px;
}

.genre-row {
    margin-top: 22px;
}

.side-card {
    align-self: start;
    padding: 26px;
}

.side-card h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 24px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px 16px;
    margin: 0;
}

.side-card dt {
    color: var(--muted);
}

.side-card dd {
    margin: 0;
    color: #fff;
}

.side-card a {
    color: #67e8f9;
}

.search-results {
    display: grid;
    gap: 16px;
}

.search-result-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
}

.search-result-card img {
    width: 110px;
    height: 154px;
    object-fit: cover;
    border-radius: 16px;
}

.search-result-card h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 22px;
}

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

.search-result-card span {
    color: #67e8f9;
    font-size: 14px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.96));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 54px 0;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 16px;
    color: #fff;
}

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

.site-footer a {
    color: var(--muted);
}

.site-footer a:hover {
    color: var(--cyan);
}

.footer-bottom {
    padding: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

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

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

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

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

    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .hero-content,
    .search-panel,
    .detail-layout,
    .detail-content-grid,
    .footer-grid,
    .category-board-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 28px;
        padding: 58px 0 96px;
    }

    .hero-poster {
        width: min(260px, 72vw);
        margin: 0 auto;
    }

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

    .filter-panel,
    .section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .live-search {
        width: 100%;
    }

    .detail-layout {
        align-items: start;
    }

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

    .watch-shell {
        border-radius: 18px;
    }
}

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

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

    .brand-text em {
        display: none;
    }

    .hero,
    .hero-content {
        min-height: 76vh;
    }

    .hero h1,
    .page-hero h1,
    .detail-copy h1 {
        letter-spacing: -0.04em;
    }

    .section {
        padding: 52px 0;
    }

    .category-grid,
    .rank-grid,
    .movie-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .card-body {
        padding: 11px;
    }

    .card-body strong {
        font-size: 14px;
    }

    .card-body em,
    .tag-row {
        display: none;
    }

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

    .board-images {
        grid-template-columns: repeat(4, 1fr);
    }

    .board-images img {
        height: 92px;
    }

    .story-card,
    .side-card {
        padding: 22px;
    }

    .search-result-card {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .search-result-card img {
        width: 86px;
        height: 122px;
    }
}
