/* Category pages (Noviteti, Testovi, Lifestyle, Zanimljivosti) */
.cat-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

.cat-header {
    margin-bottom: 28px;
}

.cat-header h1 {
    font-size: 28px;
    font-weight: 900;
    color: #101828;
}

.cat-header p {
    font-size: 15px;
    color: #6A7282;
    margin-top: 4px;
}

.wip-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    gap: 16px;
}

.wip-icon {
    font-size: 56px;
    line-height: 1;
}

.wip-title {
    font-size: 28px;
    font-weight: 800;
    color: #1E2939;
}

.wip-text {
    font-size: 16px;
    color: #6A7282;
    max-width: 400px;
    line-height: 1.6;
}

.wip-btn {
    margin-top: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    background: #6A142C;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.wip-btn:hover {
    background: #800020;
}

/* ── Novosti filter bar ── */
.novosti-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 28px;
}

.novosti-filter-btn {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1.5px solid #E5E7EB;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}

.novosti-filter-btn:hover {
    border-color: #6A142C;
    color: #6A142C;
    background: #fdf2f4;
}

.novosti-filter-btn--active {
    background: #6A142C;
    color: #fff;
    border-color: #6A142C;
}

.novosti-filter-btn--active:hover {
    background: #800020;
    border-color: #800020;
    color: #fff;
}

@media (max-width: 600px) {
    .novosti-filter-bar {
        gap: 6px;
    }
    .novosti-filter-btn {
        font-size: 13px;
        padding: 6px 13px;
    }
}
