/* ============================================================
   FACT BRIEFING — Category / Section page styles
   (loads after styles.css)
   ============================================================ */

/* ---------- Category banner ---------- */
.cat-banner {
    background: var(--bg-tint);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.cat-banner::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 16%, transparent), transparent 68%);
    pointer-events: none;
}

.cat-banner .wrap {
    padding: 40px 0 28px;
    position: relative;
}

.cat-crumb {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: .03em;
}

.cat-crumb .here {
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cat-crumb .here::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background: var(--accent);
}

.cat-crumb .sep {
    color: var(--ink-4);
}

.cat-headrow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-top: 14px;
}

.cat-title {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.cat-title h1 {
    font-family: var(--font-head);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--ink);
}

.cat-title h1 em {
    color: var(--accent);
    font-style: normal;
}

/* freshness — volume-independent vitality signal */
.fresh-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-2);
    padding: 5px 12px 5px 10px;
    border-radius: 100px;
    background: var(--surface);
    border: 1px solid var(--line);
    padding-bottom: 6px;
}

.fresh-pill .live-dot {
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background: #19a463;
    box-shadow: 0 0 0 0 rgba(25, 164, 99, .5);
    animation: pulse-g 2s infinite;
}

@keyframes pulse-g {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 164, 99, .45);
    }

    70% {
        box-shadow: 0 0 0 7px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.cat-desc {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 620px;
    text-wrap: pretty;
}

/* today's focus keywords — meaningful even with few articles */
.focus {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.focus-lab {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink-3);
    letter-spacing: .02em;
    white-space: nowrap;
}

.focus-kw {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--accent);
    transition: color .15s;
}

.focus-kw::before {
    content: "#";
    color: var(--accent);
    margin-right: 1px;
    font-weight: 800;
}

.focus-kw:hover {
    color: var(--accent);
}

/* follow / subscribe block — replaces volume counters */
.cat-follow {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    text-align: right;
}

.cf-desk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-3);
    white-space: nowrap;
}

.cf-ava {
    width: 22px;
    height: 22px;
    border-radius: 100px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
}

html[data-theme="dark"] .cf-ava {
    background: var(--accent);
}

.cf-sub {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 46px;
    padding: 0 22px;
    border-radius: 100px;
    background: var(--accent);
    color: #fff;
    font-size: 14.5px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 32%, transparent);
    transition: background .15s, transform .12s, box-shadow .15s;
}

.cf-sub svg {
    width: 18px;
    height: 18px;
}

.cf-sub:hover {
    background: var(--accent-press);
    transform: translateY(-1px);
}

.cf-sub.on {
    background: var(--surface);
    color: var(--ink);
    border: 1.5px solid var(--line-strong);
    box-shadow: none;
}

.cf-sub.on svg {
    color: var(--accent);
    fill: var(--accent);
}

.cf-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--ink-4);
    white-space: nowrap;
}

/* sub-category + sort row */
.cat-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.subnav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.subnav a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
    padding: 8px 15px;
    border-radius: 100px;
    background: var(--surface);
    border: 1px solid var(--line);
    white-space: nowrap;
    transition: all .15s;
}

.subnav a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.subnav a.on {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

html[data-theme="dark"] .subnav a.on {
    background: var(--accent);
    border-color: var(--accent);
}

.sortrow {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.sortrow a {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .15s, background .15s;
    white-space: nowrap;
}

.sortrow a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 100px;
    background: var(--ink-4);
}

.sortrow a.on {
    color: var(--accent);
    font-weight: 700;
}

.sortrow a.on::before {
    background: var(--accent);
}

.sortrow a:hover {
    color: var(--ink);
}

/* ============================================================
   FEATURED ZONE — asymmetric lead + editor picks
   ============================================================ */
.cat-main {
    padding: 36px 0 12px;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 26px;
}

.feat-lead {
    position: relative;
    border-radius: var(--radius-l);
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-md);
}

.feat-lead img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.feat-lead:hover img {
    transform: scale(1.04);
}

.feat-lead::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 11, 14, 0) 30%, rgba(10, 11, 14, .55) 62%, rgba(10, 11, 14, .93) 100%);
}

.feat-lead .fl-body {
    position: relative;
    z-index: 2;
    padding: 32px 34px 30px;
    color: var(--hero-ink);
    width: 100%;
}

.hot-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 5px 11px;
    border-radius: 100px;
    background: var(--accent);
    color: #fff;
    margin-bottom: 16px;
}

.hot-tag .pulse {
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background: #fff;
    animation: pulse 1.8s infinite;
}

.feat-lead .fl-kicker {
    font-size: 12.5px;
    font-weight: 800;
    color: #ff8e84;
    letter-spacing: .02em;
    margin-bottom: 8px;
}

.feat-lead h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -0.02em;
    text-wrap: balance;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.feat-lead p {
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(245, 244, 241, .84);
    max-width: 92%;
    text-wrap: pretty;
}

.feat-lead .fl-meta {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(245, 244, 241, .68);
    display: flex;
    align-items: center;
}

/* editor picks column */
.picks {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pick {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .18s, box-shadow .18s, border-color .18s;
}

.pick:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.pick .p-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pick .p-k {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .05em;
    color: var(--accent);
}

.pick .bm {
    color: var(--ink-4);
    transition: color .15s;
}

.pick:hover .bm {
    color: var(--accent);
}

.pick .bm svg {
    width: 17px;
    height: 17px;
}

.pick h3 {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-wrap: pretty;
}

.pick p {
    margin-top: 9px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-2);
    text-wrap: pretty;
}

.pick .p-meta {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: var(--ink-3);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* ============================================================
   TOPIC CLUSTERS
   ============================================================ */
.clusters {
    padding: 44px 0 8px;
}

.cluster-grid {
    margin-top: 4px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cluster {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 20px;
    transition: transform .18s, box-shadow .18s, border-color .18s;
}

.cluster:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.cluster .c-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cluster .c-name {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
    white-space: nowrap;
}

.cluster .c-ic {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent);
}

.cluster .c-ic svg {
    width: 16px;
    height: 16px;
}

.cluster .c-cnt {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-4);
    font-variant-numeric: tabular-nums;
}

.cluster ul {
    display: flex;
    flex-direction: column;
}

.cluster li a {
    display: block;
    padding: 8px 0;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink-2);
    border-top: 1px solid var(--line);
    transition: color .15s;
    text-wrap: pretty;
}

.cluster li:first-child a {
    border-top: none;
    padding-top: 2px;
}

.cluster li a:hover {
    color: var(--accent);
}

.cluster li a .lt {
    color: var(--ink-4);
    margin-right: 7px;
    font-size: 11px;
    font-weight: 700;
}

/* ============================================================
   ARTICLE LIST + SIDEBAR
   ============================================================ */
.cat-body {
    padding: 44px 0 64px;
}

.cat-grid {
    display: grid;
    grid-template-columns: 1fr 336px;
    gap: 48px;
}

/* list base */
.alist {
    display: flex;
    flex-direction: column;
}

/* type A: thumb + text */
.art {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 24px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    align-items: start;
}

.alist .art:first-of-type {
    border-top: none;
    padding-top: 4px;
}

.art .a-thumb {
    border-radius: var(--radius-m);
    overflow: hidden;
    aspect-ratio: 16/11;
    background: var(--surface-2);
    position: relative;
}

.art .a-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.art:hover .a-thumb img {
    transform: scale(1.05);
}

.art .a-num {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
}

.art .a-body {
    display: flex;
    flex-direction: column;
}

.art .a-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
}

.art .a-time {
    font-size: 12.5px;
    color: var(--ink-4);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    white-space: nowrap;
}

.art h3 {
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-wrap: pretty;
    transition: color .15s;
}

.art:hover h3 {
    color: var(--accent);
}

.art p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-2);
    text-wrap: pretty;
}

.art .a-foot {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.art .a-byline {
    font-size: 12.5px;
    color: var(--ink-3);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.art .bm {
    color: var(--ink-4);
    transition: color .15s;
}

.art .bm:hover {
    color: var(--accent);
}

.art .bm svg {
    width: 17px;
    height: 17px;
}

/* type B: opinion highlight (no thumb, distinct) */
.art.opinion {
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--surface-2);
    border-radius: var(--radius-m);
    padding: 26px 28px;
    border-top: none;
    margin: 8px 0;
    position: relative;
}

.art.opinion::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.art.opinion .quote {
    font-family: var(--font-head);
    font-size: 38px;
    line-height: .5;
    color: var(--accent);
    opacity: .35;
}

.art.opinion h3 {
    font-size: 22px;
    margin-top: 4px;
}

.art.opinion .op-tag {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: .03em;
}

.art.opinion .op-tag .badge {
    background: var(--accent);
    color: #fff;
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 10.5px;
}

/* type C: compact text only */
.art.compact {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 0;
}

.art.compact .a-head {
    margin-bottom: 6px;
}

.art.compact h3 {
    font-size: 17px;
}

.art.compact p {
    margin-top: 7px;
    font-size: 13.5px;
}

/* pagination */
.pager {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pager a,
.pager span {
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-2);
    border: 1px solid var(--line);
    background: var(--surface);
    font-variant-numeric: tabular-nums;
    transition: all .15s;
}

.pager a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pager .cur {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

html[data-theme="dark"] .pager .cur {
    background: var(--accent);
    border-color: var(--accent);
}

.pager .ar {
    color: var(--ink-3);
}

.loadmore {
    margin-top: 22px;
    width: 100%;
    height: 56px;
    border-radius: var(--radius-m);
    border: 1.5px solid var(--line-strong);
    background: var(--surface);
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .15s;
}

.loadmore:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}

.loadmore svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   SIDEBAR (category)
   ============================================================ */
.cat-side {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: sticky;
    top: 72px;
    align-self: start;
}

/* dark trend briefing */
.trend-brief {
    background: var(--ink);
    color: var(--hero-ink);
    border-radius: var(--radius-m);
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

html[data-theme="dark"] .trend-brief {
    background: #07080a;
    border: 1px solid var(--line);
}

.trend-brief::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 42%, transparent), transparent 70%);
}

.trend-brief .tb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.trend-brief .tb-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.trend-brief .tb-title .spark {
    color: var(--accent);
    display: grid;
    place-items: center;
}

.trend-brief .tb-title .spark svg {
    width: 16px;
    height: 16px;
}

.trend-brief .tb-badge {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .05em;
    background: var(--accent);
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
}

.trend-brief .tb-lead {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(245, 244, 241, .82);
}

.trend-brief .tb-lead em {
    color: var(--accent);
    font-style: normal;
    font-weight: 700;
}

.trend-brief ol {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
}

.trend-brief ol li {
    display: flex;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: 13.5px;
    line-height: 1.45;
    color: rgba(245, 244, 241, .92);
}

.trend-brief ol li .n {
    flex-shrink: 0;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--accent);
}

/* ranking */
.rankbox .rb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ink);
    margin-bottom: 4px;
}

.rankbox .rb-head h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.rankbox .rb-head h3 .ic {
    color: var(--accent);
    display: grid;
    place-items: center;
}

.rankbox .rb-head h3 .ic svg {
    width: 17px;
    height: 17px;
}

.rankbox .rb-head .lab {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .05em;
    color: var(--ink-4);
}

.rankbox ol {
    display: flex;
    flex-direction: column;
}

.rankbox li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.rankbox li:first-child {
    border-top: none;
}

.rankbox .rn {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink-4);
    text-align: center;
    line-height: 1.1;
}

.rankbox li:nth-child(-n+3) .rn {
    color: var(--accent);
}

.rankbox .rt {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: -0.01em;
    color: var(--ink-2);
    transition: color .15s;
}

.rankbox li:hover .rt {
    color: var(--accent);
}

.rankbox .rv {
    margin-top: 6px;
    font-size: 11.5px;
    color: var(--ink-4);
    font-variant-numeric: tabular-nums;
}

/* newsletter (soft) */
.nl-soft {
    background: var(--accent-soft);
    border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
    border-radius: var(--radius-m);
    padding: 24px;
}

html[data-theme="dark"] .nl-soft {
    background: var(--surface);
}

.nl-soft .nl-k {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--accent);
}

.nl-soft h4 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.nl-soft p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-2);
}

.nl-soft input {
    margin-top: 16px;
    width: 100%;
    height: 46px;
    border-radius: var(--radius-s);
    border: 1px solid var(--line-strong);
    background: var(--surface);
    padding: 0 14px;
    font-size: 13.5px;
    color: var(--ink);
}

.nl-soft input:focus {
    outline: none;
    border-color: var(--accent);
}

.nl-soft button {
    margin-top: 10px;
    width: 100%;
    height: 48px;
    border-radius: var(--radius-s);
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    transition: background .15s;
}

.nl-soft button:hover {
    background: var(--accent-press);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }

    .picks {
        flex-direction: row;
    }

    .cluster-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cat-side {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cat-side>* {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 720px) {
    .cat-headrow {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .cat-follow {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .picks {
        flex-direction: column;
    }

    .cluster-grid {
        grid-template-columns: 1fr;
    }

    .art {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .art .a-thumb {
        aspect-ratio: 16/9;
    }

    .cat-side {
        flex-direction: column;
    }
}