﻿@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}
/* ===== CATEGORY PAGE ===== */
.cat-mast {
    padding: 16px 0 14px;
    border-bottom: 1px solid var(--line)
}

.crumb {
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px
}

    .crumb a:hover {
        color: var(--ink)
    }

    .crumb svg {
        width: 12px;
        height: 12px;
        opacity: .6
    }

.cat-head-row {
    display: flex;
    align-items: center;
    gap: 16px
}

.cat-ic {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224,83,58,.12);
    color: var(--ember)
}

    .cat-ic svg {
        width: 28px;
        height: 28px
    }

.cat-mast h1 {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(1.5rem,3.2vw,2.1rem);
    letter-spacing: -.6px;
    line-height: 1
}

.cat-desc {
    color: var(--muted);
    font-size: .92rem;
    margin-top: 5px;
    max-width: 58em;
    line-height: 1.45
}

.cat-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 34px;
    align-items: start
}

.cat-main {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.load-more {
    align-self: center;
    margin-top: 8px;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 13px 28px;
    font-family: var(--f-body);
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    transition: background .2s,color .2s
}

    .load-more:hover {
        background: var(--amber);
        color: var(--ink)
    }

.cat-side {
    position: sticky;
    top: 84px;
    display: flex;
    flex-direction: column;
    gap: 22px
}

.side-panel {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 18px 20px
}

    .side-panel h3 {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: 1rem;
        letter-spacing: -.3px;
        display: flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 8px
    }

        .side-panel h3 .tk {
            width: 7px;
            height: 22px;
            background: var(--ember)
        }

.prow {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    padding: 11px 0;
    border-bottom: 1px solid var(--line)
}

    .prow:last-child {
        border-bottom: none;
        padding-bottom: 2px
    }

    .prow .n {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: 1.15rem;
        color: var(--ember);
        line-height: 1.2
    }

    .prow h4 {
        font-size: .92rem;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: -.2px;
        transition: color .2s
    }

    .prow:hover h4 {
        color: var(--ember)
    }

.side-ad .ad {
    width: 100%;
    height: 600px
}

@media(max-width:980px) {
    .cat-layout {
        grid-template-columns: 1fr
    }

    .cat-side {
        position: static;
        flex-direction: row;
        flex-wrap: wrap
    }

    .side-panel {
        flex: 1 1 280px
    }

    .side-ad {
        flex: 1 1 280px
    }

        .side-ad .ad {
            height: 250px
        }
}

@media(max-width:680px) {
    .cat-side {
        flex-direction: column
    }
}
/* ===== QUIZ ===== */
.quiz {
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    margin-top: 6px
}

.quiz-cover, .res-cover {
    position: relative;
    aspect-ratio: 16/8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px
}

    .quiz-cover img, .res-cover img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.quiz-cover-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(15,24,21,.9),rgba(15,24,21,.3) 60%,rgba(15,24,21,.15))
}

.quiz-badge {
    position: relative;
    align-self: flex-start;
    background: var(--orange);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 6px 12px;
    margin-bottom: 12px
}

.quiz-h1, .res-name {
    position: relative;
    font-family: var(--f-display);
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.5rem,3.6vw,2.4rem);
    letter-spacing: -.7px;
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
    text-wrap: balance
}

.res-kicker {
    position: relative;
    align-self: flex-start;
    color: var(--amber);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.quiz-intro-b {
    padding: 24px
}

    .quiz-intro-b p {
        font-size: 1.02rem;
        color: var(--text);
        margin-bottom: 16px;
        line-height: 1.6
    }

.quiz-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: .84rem;
    color: var(--muted);
    margin-bottom: 22px
}

    .quiz-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px
    }

    .quiz-meta svg {
        width: 15px;
        height: 15px
    }

.quiz-start {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange);
    color: #fff;
    border: none;
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 1.02rem;
    padding: 14px 26px;
    cursor: pointer;
    transition: transform .18s,background .2s
}

    .quiz-start:hover {
        transform: translateY(-2px);
        background: var(--orange-d)
    }

    .quiz-start svg {
        width: 17px;
        height: 17px
    }
/* play */
.q-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px 0
}

.q-progress {
    flex: 1;
    height: 7px;
    background: var(--line);
    overflow: hidden
}

    .q-progress i {
        display: block;
        height: 100%;
        width: 20%;
        background: var(--orange);
        transition: width .35s ease
    }

.q-count {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: .9rem;
    color: var(--muted)
}

.q-inner {
    padding: 18px 24px 26px
}

.q-text {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(1.3rem,2.8vw,1.7rem);
    letter-spacing: -.4px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-wrap: balance
}

.q-opts {
    display: grid;
    gap: 12px
}

.q-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    background: var(--white);
    border: 1.5px solid var(--line);
    padding: 15px 16px;
    font-family: var(--f-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: border-color .15s,background .15s,transform .12s
}

    .q-opt:hover {
        border-color: var(--orange);
        background: #FFF7EE;
        transform: translateX(3px)
    }

    .q-opt .ix {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(242,103,12,.12);
        color: var(--orange-d);
        font-family: var(--f-display);
        font-weight: 800;
        font-size: .9rem
    }
/* image-choice options */
.q-opts.imgs {
    grid-template-columns: repeat(2,1fr);
    gap: 14px
}

.q-opt-img {
    position: relative;
    border: 2px solid var(--line);
    background: var(--white);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    transition: border-color .15s,transform .14s,box-shadow .15s
}

    .q-opt-img:hover {
        border-color: var(--orange);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg)
    }

    .q-opt-img img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        display: block;
        transition: transform .4s
    }

    .q-opt-img:hover img {
        transform: scale(1.05)
    }

    .q-opt-img .cap {
        display: block;
        padding: 11px 13px;
        font-family: var(--f-body);
        font-weight: 600;
        font-size: .92rem;
        color: var(--text);
        line-height: 1.3
    }

@media(max-width:560px) {
    .q-opt-img .cap {
        font-size: .84rem;
        padding: 9px 11px
    }
}
/* stacked questions */
.quiz-q {
    padding: 22px 24px;
    border-top: 1px solid var(--line)
}

.quiz-qh {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.12rem;
    letter-spacing: -.3px;
    line-height: 1.25;
    margin-bottom: 16px;
    margin-top: 16px;
    display: flex;
    gap: 9px;
    align-items: baseline
}

    .quiz-qh .qn {
        color: var(--orange-d);
        flex-shrink: 0
    }

.quiz-q.unanswered {
    background: #FCEEEA
}

.q-opt.sel {
    border-color: var(--orange);
    background: #FFF7EE
}

    .q-opt.sel .ix {
        background: var(--orange);
        color: #fff
    }

.q-opt-img.sel {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242,103,12,.2)
}

    .q-opt-img.sel .cap {
        color: var(--orange-d)
    }

.quiz-submit {
    padding: 24px;
    border-top: 1px solid var(--line);
    text-align: center
}

.quiz-note {
    color: var(--ember);
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 12px
}

@media(max-width:560px) {
    .quiz-q {
        padding: 18px 16px
    }

    .quiz-submit {
        padding: 20px 16px
    }
}
/* result */
.res-b {
    padding: 24px
}

    .res-b p {
        font-size: 1.05rem;
        line-height: 1.65;
        color: var(--text);
        margin-bottom: 22px
    }

.res-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.res-share, .res-retry {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: none;
    font-family: var(--f-body);
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 22px;
    cursor: pointer;
    transition: transform .18s,background .2s,color .2s
}

.res-share {
    background: var(--orange);
    color: #fff
}

    .res-share:hover {
        transform: translateY(-2px);
        background: var(--orange-d)
    }

.res-retry {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--line)
}

    .res-retry:hover {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink)
    }

    .res-share svg, .res-retry svg {
        width: 17px;
        height: 17px
    }
/* category slider bar */
.cat-slider {
    background: var(--white);
    border-bottom: 1px solid var(--line)
}

.cat-slider-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px
}

.cat-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    scroll-snap-type: x proximity
}

    .cat-track::-webkit-scrollbar {
        display: none
    }

.cat-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 9px 16px;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    color: var(--text);
    transition: border-color .18s,background .18s,color .18s;
    scroll-snap-align: start
}

    .cat-pill .d {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        flex-shrink: 0
    }

    .cat-pill:hover {
        border-color: var(--ink)
    }

    .cat-pill.active {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink)
    }

        .cat-pill.active .d {
            box-shadow: 0 0 0 2px rgba(255,255,255,.35)
        }

.csa {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s,color .18s,border-color .18s
}

    .csa:hover {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink)
    }

    .csa svg {
        width: 18px;
        height: 18px
    }

@media(max-width:680px) {
    .csa {
        display: none
    }

    .cat-slider-wrap {
        padding: 10px 16px
    }
}
/* image-choice options */
.q-opt .th {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border: 1px solid var(--line);
    flex-shrink: 0
}

.quiz-qimg {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border: 1px solid var(--line);
    margin-bottom: 16px
}

.q-opts.imgs {
    grid-template-columns: repeat(2,1fr);
    gap: 14px
}

    .q-opts.imgs.g3 {
        grid-template-columns: repeat(3,1fr)
    }

    .q-opts.imgs.g4 {
        grid-template-columns: repeat(4,1fr)
    }

@media(max-width:560px) {
    .q-opts.imgs.g3, .q-opts.imgs.g4 {
        grid-template-columns: repeat(2,1fr)
    }
}

.q-opt-img {
    position: relative;
    border: 2px solid var(--line);
    background: var(--white);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    transition: border-color .15s,transform .14s,box-shadow .15s
}

    .q-opt-img:hover {
        border-color: var(--orange);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg)
    }

    .q-opt-img img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        display: block;
        transition: transform .4s
    }

    .q-opt-img:hover img {
        transform: scale(1.05)
    }

    .q-opt-img .cap {
        display: block;
        padding: 11px 13px;
        font-family: var(--f-body);
        font-weight: 600;
        font-size: .92rem;
        color: var(--text);
        line-height: 1.3
    }

@media(max-width:560px) {
    .q-opt-img .cap {
        font-size: .84rem;
        padding: 9px 11px
    }
}
/* stacked questions */
.quiz-q {
    padding: 22px 24px;
    border-top: 1px solid var(--line)
}

.quiz-qh {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.12rem;
    letter-spacing: -.3px;
    line-height: 1.25;
    margin-bottom: 16px;
    display: flex;
    gap: 9px;
    align-items: baseline
}

    .quiz-qh .qn {
        color: var(--orange-d);
        flex-shrink: 0
    }

.quiz-q.unanswered {
    background: #FCEEEA
}

.q-opt.sel {
    border-color: var(--orange);
    background: #FFF7EE
}

    .q-opt.sel .ix {
        background: var(--orange);
        color: #fff
    }

.q-opt-img.sel {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242,103,12,.2)
}

    .q-opt-img.sel .cap {
        color: var(--orange-d)
    }

.quiz-submit {
    padding: 24px;
    border-top: 1px solid var(--line);
    text-align: center
}

.quiz-note {
    color: var(--ember);
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 12px
}

@media(max-width:560px) {
    .quiz-q {
        padding: 18px 16px
    }

    .quiz-submit {
        padding: 20px 16px
    }
}
/* result */
.res-b {
    padding: 24px
}

    .res-b p {
        font-size: 1.05rem;
        line-height: 1.65;
        color: var(--text);
        margin-bottom: 22px
    }

.res-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.res-share, .res-retry {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: none;
    font-family: var(--f-body);
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 22px;
    cursor: pointer;
    transition: transform .18s,background .2s,color .2s
}

.res-share {
    background: var(--orange);
    color: #fff
}

    .res-share:hover {
        transform: translateY(-2px);
        background: var(--orange-d)
    }

.res-retry {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--line)
}

    .res-retry:hover {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink)
    }

    .res-share svg, .res-retry svg {
        width: 17px;
        height: 17px
    }
/* category slider bar */
.cat-slider {
    background: var(--white);
    border-bottom: 1px solid var(--line)
}

.cat-slider-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px
}

.cat-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    scroll-snap-type: x proximity
}

    .cat-track::-webkit-scrollbar {
        display: none
    }

.cat-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 9px 16px;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    color: var(--text);
    transition: border-color .18s,background .18s,color .18s;
    scroll-snap-align: start
}

    .cat-pill .d {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        flex-shrink: 0
    }

    .cat-pill:hover {
        border-color: var(--ink)
    }

    .cat-pill.active {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink)
    }

        .cat-pill.active .d {
            box-shadow: 0 0 0 2px rgba(255,255,255,.35)
        }

.csa {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s,color .18s,border-color .18s
}

    .csa:hover {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink)
    }

    .csa svg {
        width: 18px;
        height: 18px
    }

@media(max-width:680px) {
    .csa {
        display: none
    }

    .cat-slider-wrap {
        padding: 10px 16px
    }
}
/* related as rail */
.rail .rel {
    flex: 0 0 300px;
    scroll-snap-align: start
}
/* comments */
.comments {
    margin: 36px 0 8px
}

.cmt-title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -.4px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

    .cmt-title .tick {
        width: 8px;
        height: 26px;
        border-radius: 0;
        background: var(--ember);
        display: inline-block
    }

.cmt-count {
    font-family: var(--f-body);
    font-weight: 700;
    color: var(--muted);
    font-size: 1rem
}

.c-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .95rem
}

.cmt-form {
    display: flex;
    gap: 12px;
    margin-bottom: 8px
}

.cmt-field {
    flex: 1;
    min-width: 0
}

    .cmt-field textarea {
        width: 100%;
        border: 1px solid var(--line);
        background: var(--white);
        padding: 12px 14px;
        font-family: var(--f-body);
        font-size: .95rem;
        line-height: 1.5;
        color: var(--text);
        resize: vertical;
        min-height: 76px
    }

        .cmt-field textarea:focus {
            outline: none;
            border-color: var(--ink)
        }

.cmt-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 9px
}

    .cmt-row button {
        background: var(--ink);
        color: #fff;
        border: none;
        padding: 10px 22px;
        font-family: var(--f-body);
        font-weight: 700;
        font-size: .9rem;
        cursor: pointer;
        transition: background .2s,color .2s
    }

        .cmt-row button:hover {
            background: var(--amber);
            color: var(--ink)
        }

.cmt-list {
    margin-top: 14px
}

.cmt {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--line)
}

.cmt-body {
    flex: 1;
    min-width: 0
}

.cmt-head {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 5px
}

    .cmt-head b {
        font-size: .92rem;
        font-weight: 700
    }

    .cmt-head span {
        font-size: .76rem;
        color: var(--muted)
    }

.cmt-body p {
    font-size: .93rem;
    line-height: 1.6
}

.cmt-actions {
    display: flex;
    gap: 16px;
    margin-top: 9px
}

    .cmt-actions button {
        background: none;
        border: none;
        color: var(--muted);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: var(--f-body);
        font-size: .8rem;
        font-weight: 600;
        transition: color .18s
    }

        .cmt-actions button:hover {
            color: var(--ember)
        }

    .cmt-actions svg {
        width: 15px;
        height: 15px
    }

.cmt.reply {
    margin-left: 54px;
    border-top: 1px dashed var(--line)
}

@media(max-width:560px) {
    .cmt.reply {
        margin-left: 24px
    }
}
/* ===== CATEGORY PAGE ===== */
.cat-mast {
    padding: 16px 0 14px;
    border-bottom: 1px solid var(--line)
}

.crumb {
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px
}

    .crumb a:hover {
        color: var(--ink)
    }

    .crumb svg {
        width: 12px;
        height: 12px;
        opacity: .6
    }

.cat-head-row {
    display: flex;
    align-items: center;
    gap: 16px
}

.cat-ic {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224,83,58,.12);
    color: var(--ember)
}

    .cat-ic svg {
        width: 28px;
        height: 28px
    }

.cat-mast h1 {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(1.5rem,3.2vw,2.1rem);
    letter-spacing: -.6px;
    line-height: 1
}

.cat-desc {
    color: var(--muted);
    font-size: .92rem;
    margin-top: 5px;
    max-width: 58em;
    line-height: 1.45
}

.cat-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 34px;
    align-items: start
}

.cat-main {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.load-more {
    align-self: center;
    margin-top: 8px;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 13px 28px;
    font-family: var(--f-body);
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    transition: background .2s,color .2s
}

    .load-more:hover {
        background: var(--amber);
        color: var(--ink)
    }

.cat-side {
    position: relative;
    top: 84px;
    display: flex;
    flex-direction: column;
    gap: 22px
}

.side-panel {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 18px 20px
}

    .side-panel h3 {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: 1rem;
        letter-spacing: -.3px;
        display: flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 8px
    }

        .side-panel h3 .tk {
            width: 7px;
            height: 22px;
            background: var(--ember)
        }

.prow {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    padding: 11px 0;
    border-bottom: 1px solid var(--line)
}

    .prow:last-child {
        border-bottom: none;
        padding-bottom: 2px
    }

    .prow .n {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: 1.15rem;
        color: var(--ember);
        line-height: 1.2
    }

    .prow h4 {
        font-size: .92rem;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: -.2px;
        transition: color .2s
    }

    .prow:hover h4 {
        color: var(--ember)
    }

.side-ad .ad {
    width: 100%;
    height: 600px
}

@media(max-width:980px) {
    .cat-layout {
        grid-template-columns: 1fr
    }

    .cat-side {
        position: static;
        flex-direction: row;
        flex-wrap: wrap
    }

    .side-panel {
        flex: 1 1 280px
    }

    .side-ad {
        flex: 1 1 280px
    }

        .side-ad .ad {
            height: 250px
        }
}

@media(max-width:680px) {
    .cat-side {
        flex-direction: column
    }
}