.cat-strip {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
}

.cat-strip-inner {
    max-width: var(--w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cat-tag {
    padding: 5px 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text2);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cat-tag:hover {
    background: rgba(245, 200, 66, 0.1);
    border-color: rgba(245, 200, 66, 0.3);
    color: var(--gold);
}

.cat-tag-all {
    background: rgba(245, 200, 66, 0.08);
    border-color: rgba(245, 200, 66, 0.3);
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-tag-all:hover {
    background: rgba(245, 200, 66, 0.18);
    border-color: var(--gold);
}

.content-wrap {
    max-width: var(--w);
    margin: 0 auto;
    padding: 36px 24px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

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

.sec-title .accent {
    width: 3px;
    height: 18px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.sec-title h2 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
}

.sec-more {
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.sec-more:hover {
    opacity: 0.7;
}

.main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.sec-gap {
    margin-top: 32px;
}

.card {
    background: var(--bg3);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s, border-color 0.2s;
    display: block;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 200, 66, 0.3);
}

.card .thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #222;
    position: relative;
}

.card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .thumb img {
    transform: scale(1.06);
}

.card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.card:hover .overlay {
    opacity: 1;
}

.overlay svg {
    width: 36px;
    height: 36px;
    fill: #fff;
    filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.9));
}

.card .info {
    padding: 10px 12px;
}

.card .info .name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.card .info .tag {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
}

.sidebar-sec {
    margin-bottom: 28px;
}

.sidebar-sec .sec-head {
    margin-bottom: 14px;
}

.side-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-card {
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--bg3);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.2s;
    text-decoration: none;
}

.side-card:hover {
    border-color: rgba(245, 200, 66, 0.25);
}

.side-card .s-thumb {
    width: 72px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #222;
}

.side-card .s-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-card .s-info {
    flex: 1;
    min-width: 0;
}

.side-card .s-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.side-card .s-cat {
    font-size: 11px;
    color: var(--muted);
}

@media screen and (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
    }

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

@media screen and (max-width: 769px) {
    .content-wrap {
        padding: 24px 16px;
    }

    .cat-strip {
        padding: 14px 16px;
    }

    .main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
