@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600&display=swap');

:root {
    --brand: #c9a227;       /* Acumen gold */
    --brand-dark: #a3811c;
    --brand-tint: #f7f0da;
    --navy: #2c3446;        /* Acumen footer navy */
    --bs-body-font-family: 'Inter', -apple-system, sans-serif;
}
body { background: #f5f6f8; }

p,a{
    font-size: 15px;
}
.navbar-brand { font-weight: 700; letter-spacing: .01em; }

/* Bootstrap's precompiled utility colors (bg-primary-subtle, text-primary, etc.)
   don't follow a simple --bs-primary override, so we override the specific
   classes this template actually uses, explicitly, per brand. */
.navbar.bg-primary { background-color: var(--navy) !important; }

.btn-primary {
    background-color: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #2b2b2b !important;
}
.btn-primary:hover { background-color: var(--brand-dark) !important; border-color: var(--brand-dark) !important; }

.badge.bg-primary-subtle {
    background-color: var(--brand-tint) !important;
    color: var(--brand-dark) !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #2b2b2b !important;
}
.pagination .page-link { color: var(--brand-dark); }

/* ---- Admin: register-style table ---- */
.stamp {
    display: inline-block;
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
}
.stamp-published { color: #1e7e42; background: #eaf7ee; }
.stamp-draft { color: var(--brand-dark); background: var(--brand-tint); }

.col-no { width: 46px; color: #8a93a2; font-variant-numeric: tabular-nums; }

.stat-card .display-num { font-size: 1.9rem; font-weight: 700; line-height: 1; }
.stat-card .label { font-size: .8rem; color: #6c757d; }

/* ---- Public blog ---- */
.title-banner {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 700;
    color: var(--brand-dark);
}

.post-content {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.8;
}
.post-content p { 
    font-size:15px;
    margin-bottom: 1.3em; }
.post-content h2 { font-family: 'Inter', sans-serif; font-weight: 700;  margin: 1.6em 0 .6em; }
.post-content h3 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 2.15rem; margin: 1.4em 0 .5em; }
.post-content ul, .post-content ol { margin-bottom: 1.3em; }
.post-content blockquote {
    border-left: 3px solid var(--brand);
    padding-left: 1rem;
    color: #6c757d;
    font-style: italic;
    margin: 1.5em 0;
}
.post-content a { color: var(--brand-dark); }
.post-content img { max-width: 100%; height: auto; border-radius: 6px; }

.post-card img { height: 190px; object-fit: cover; }
.post-card { transition: transform .15s ease, box-shadow .15s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 .5rem 1rem rgba(0,0,0,.08); }

.blog-text .badge{
font-size: 15px !important;
}

.blog-text p{
font-size: 13px;
}
