/* ================= CATEGORY PAGE ONLY ================= */
/* ================= Breadcrumbs ================= */

.breadcrumb-nav {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    padding: 0 1.25rem;
    font-size: 0.875rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    color: #6b7280; /* neutral gray */
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s ease;
}

.breadcrumb-link:hover {
    color: #111827;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #111827;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #9ca3af;
    margin: 0 0.25rem;
}

.category-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.category-page .content-narrow {
    max-width: 1100px;
}

/* ===== Header ===== */
.category-page .category-header {
    padding: 3rem 0 2rem;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.category-page .category-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
}

.category-page .category-excerpt {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #4b5563;
    
}

/* ===== Trust strip ===== */
.category-page .trust-strip {
    font-size: 0.85rem;
    color: #6b7280;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.category-page .trust-strip-inner {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ===== Main content ===== */
.category-page .category-content {
    padding: 3rem 0;
}

.category-page .article-content h2 {
    margin-top: 2.5rem;
    font-size: 1.4rem;
}

.category-page .article-content p,
.category-page .article-content ul {
    margin-top: 1rem;
    line-height: 1.7;
}

/* ===== Section headings ===== */
.category-page .section-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-page .section-heading-sm {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* ===== Pillars ===== */
.category-page .category-pillars {
    padding: 3rem 0;
    background: #f9fafb;
}

.category-page .pillar-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.category-page .pillar-card {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.15s ease;
}

.category-page .pillar-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.category-page .pillar-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.category-page .pillar-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* ===== Articles ===== */
.category-page .category-articles {
    padding: 3rem 0;
}

.category-page .article-list li {
    margin-bottom: 0.5rem;
}

/* ===== Final trust ===== */
.category-page .category-trust-final {
    padding: 3rem 0 4rem;
    border-top: 1px solid #e5e7eb;
    color: #4b5563;
}

.category-page .trust-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
}
