/* GSH-361 Blog — public listing + post styling. Layout modeled on firstpagesage.com/seo-blog
   (two-column: article feed/content + categories sidebar). Pairs with fpsarticle.css, which styles
   the post body itself (the .custom-page-body wrapper). */

/* ---- Full-width hero ---- */
.blog-hero {
    background: linear-gradient(180deg, #f6f8fa 0%, #eef2f6 100%);
    border-bottom: 1px solid #e3e6ea;
    text-align: center;
    padding: 56px 20px 60px;
}
.blog-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.blog-hero h1 { margin: 0; font-size: 46px; font-weight: 800; line-height: 1.1; color: #14202b; letter-spacing: -0.01em; }
.blog-subhead { margin: 16px 0 0; color: #5a6470; font-size: 18px; line-height: 1.5; }

/* Admin-set composition banner (e.g. the FPS Intelligence Hub artwork, which already includes its
   own headline/subhead). Shown as-is — full bleed, no scrim, no overlaid text. */
.blog-hero-img {
    background: #0c1c39;                 /* matches the artwork's navy so any side gutter blends */
    border-bottom: 1px solid #e3e6ea;
    text-align: center;
    font-size: 0;                        /* kill inline-image baseline gap */
}
.blog-hero-img img {
    display: block;
    width: 100%;
    height: 300px;                       /* clean banner strip — crop tall artwork instead of running full-height */
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}
/* visually-hidden h1 kept for SEO / screen readers (the visible headline lives in the artwork) */
.blog-hero-sr {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; border: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---- Intelligence Hub hero (CMS banner image + white-fade gradient with overlaid live text) ----
   The CMS image is the element background (set inline). A left→right white-to-transparent gradient
   (::before) whites out the left so the text is readable AND hides the artwork's baked-in left text,
   while the graphic shows through on the right. */
.blog-hero-intel {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-color: #eef2f7;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    border-bottom: 1px solid #e3e6ea;
}
.blog-hero-intel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.92) 45%,
        rgba(255, 255, 255, 0.06) 78%);
}
.blog-hero-intel__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;          /* aligns the text with the feed/sidebar columns below */
    margin: 0 auto;
    padding: 44px 20px 44px 0;  /* desktop: flush to the left edge of the content band (no left pad) */
    box-sizing: border-box;
}
.blog-hero-intel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: #2b8df7;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.blog-hero-intel__eyebrow::before {
    content: "";
    width: 34px; height: 3px;
    border-radius: 999px;
    background: currentColor;
}
.blog-hero-intel__title {
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #13283f;
}
.blog-hero-intel__subline {
    margin: 16px 0 0;
    color: #123b73;
    font-size: clamp(17px, 1.8vw, 23px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
}
/* listing label (category/tag/author/search) — keep its stored sentence case */
.blog-hero-intel__subline--sentence { text-transform: none; letter-spacing: normal; }
.blog-hero-intel__desc {
    margin: 16px 0 0;
    max-width: 600px;
    color: #3c4a5d;
    font-size: clamp(15px, 1.5vw, 19px);
    line-height: 1.5;
}
.blog-hero-intel__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.blog-hero-intel__btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 0 20px;
    border-radius: 10px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.blog-hero-intel__btn:hover { transform: translateY(-1px); }
.blog-hero-intel__btn--primary { background: #123b73; color: #fff; box-shadow: 0 12px 24px rgba(18, 59, 115, .22); }
.blog-hero-intel__btn--primary:hover { background: #0f3063; }
.blog-hero-intel__btn--secondary { background: #fff; color: #123b73; border: 1px solid rgba(18, 59, 115, .18); }
.blog-hero-intel__btn--secondary:hover { background: #f3f6fb; }
@media (max-width: 760px) {
    .blog-hero-intel { min-height: 0; }
    /* Top padding clears the fixed mobile nav (~71px) so the hero title isn't hidden
       behind it; the banner background still extends up under the nav as a band. */
    .blog-hero-intel__content { padding: 92px 20px 30px; }
    .blog-hero-intel::before {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.55) 100%);
    }
}

.blog-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 66px 20px 70px;
}
.blog-main { flex: 1 1 auto; min-width: 0; }
.blog-sidebar {
    flex: 0 0 270px;
    position: sticky;
    top: 20px;
}
.blog-empty { color: #5a6470; padding: 40px 0; font-size: 21px; line-height: 1.4; }

/* ---- Post feed (2-column card grid) ---- */
.blog-feed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 36px; }
.blog-card { }
.blog-card-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-card-imgwrap { display: block; margin-bottom: 18px; border-radius: 0; overflow: hidden; }
.blog-card-img { display: block; width: 100%; height: 210px; object-fit: cover; transition: transform .25s ease; }
.blog-card-link:hover .blog-card-img { transform: scale(1.03); }
.blog-card-body { flex: 1 1 auto; min-width: 0; }
.blog-card-title { margin: 0 0 10px; font-size: 25px; font-weight: 800; line-height: 1.22; color: #14202b; letter-spacing: -0.01em; }
.blog-card-link:hover .blog-card-title { color: #0a4b8c; }
.blog-card-date { margin: 0 0 14px; font-size: 14px; color: #8a939e; }
.blog-card-summary { margin: 0; color: #4a5560; font-size: 16px; line-height: 1.55; }
/* "Read More »" — a span (the whole card is already an <a>, so it can't be a nested link).
   No underline on hover — not the FPS style; the card title color-shift signals the hover instead. */
.blog-card-more { display: inline-block; margin-top: 12px; color: #0a4b8c; font-size: 15px; font-weight: 700; }
.blog-card-link:hover .blog-card-more { color: #08407a; }

/* ---- Pagination ---- */
.blog-pager { margin-top: 50px; text-align: center; }
.blog-pager a, .blog-pager span { display: inline-block; padding: 7px 13px; margin: 0 2px; border: 1px solid #d4dae0; border-radius: 4px; text-decoration: none; color: #0a4b8c; font-size: 14px; }
.blog-pager span.current, .blog-pager .pageon { background: #0a4b8c; color: #fff; border-color: #0a4b8c; }

/* ---- Sidebar ---- */
.blog-searchform { position: relative; margin-bottom: 36px; }
.blog-search-input { width: 100%; box-sizing: border-box; padding: 11px 14px 11px 40px; border: 1px solid #c7ced6; border-radius: 22px; font-size: 14px; }
.blog-search-ic { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: #8a939e; cursor: pointer; }
.blog-search-ic:hover { color: #14202b; }
.blog-sidebar h3 { margin: 0 0 6px; font-size: 26px; font-weight: 800; color: #14202b; letter-spacing: -0.01em; }
.blog-cat-list { list-style: none; margin: 0; padding: 0; }
.blog-cat-list li { border-bottom: 1px solid #e7ebef; }
.blog-cat-list a { display: flex; justify-content: space-between; align-items: center; padding: 14px 2px; text-decoration: none; color: #0a4b8c; font-size: 17px; }
.blog-cat-list a:hover { color: #08407a; text-decoration: underline; }
.blog-cat-count { color: #aab2bc; font-size: 13px; }

/* ---- Single post (modeled on firstpagesage report pages) ---- */
.blogpost { max-width: 1180px; margin: 0 auto; padding: 44px 20px 72px; }
/* Two-column header: title + date on the left, featured image on the right. */
.blogpost-head { display: flex; gap: 44px; align-items: center; margin-bottom: 42px; }
.blogpost-head-text { flex: 1 1 0; min-width: 0; }
.blogpost-head-media { flex: 0 0 46%; max-width: 480px; }
.blogpost-head-noimg { display: block; }                         /* no image -> single-column header */
.blogpost-head-noimg .blogpost-head-text { max-width: 768px; }
.blogpost-eyebrow { display: inline-block; margin-bottom: 16px; font-size: 14px; font-weight: 700; color: var(--fps-navy, #0f3063); text-decoration: none; }
.blogpost-eyebrow:hover { color: var(--fps-maroon, #8d0212); text-decoration: none; }
.blogpost-title { margin: 0 0 14px; font-size: 38px; font-weight: 800; line-height: 1.14; color: #14202b; letter-spacing: -0.015em; }
.blogpost-dateline { font-size: 14px; color: #8a939e; margin: 0; line-height: 1.5; }
.blogpost-updated { display: inline-block; margin-top: 6px; font-style: italic; color: #8a939e; }
.blogpost-dot { margin: 0 4px; }
.blogpost-featured { display: block; width: 100%; height: auto; border-radius: 0; margin: 0; }

/* Body row: readable main column (left) + sticky sidebar (right: search, optional form, categories). */
.blogpost-body-row { display: flex; gap: 50px; align-items: flex-start; }
.blogpost-main { flex: 1 1 auto; min-width: 0; }   /* fill the column so the sidebar sits beside it (no large gutter) */
.blogpost-side { flex: 0 0 270px; position: sticky; top: 20px; }
.blogpost-side-h { margin: 28px 0 6px; font-size: 22px; font-weight: 800; color: #14202b; letter-spacing: -0.01em; }
.blogpost .custom-page-body { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }

/* Mobile-safety guards for builder-authored body content: keep any image, embed,
   table, code block, or oversized element inside the column instead of pushing the
   page wider than the viewport. Wide tables/pre scroll within their own box. */
.blogpost-main img,
.blogpost-main video,
.blogpost-main iframe,
.blogpost-main embed,
.blogpost-main object { max-width: 100%; }
.blogpost-main img { height: auto; }
.blogpost-main table { display: block; max-width: 100%; overflow-x: auto; }
.blogpost-main pre { max-width: 100%; overflow-x: auto; }
.blogpost-main .custom-page-body { overflow-x: auto; }

/* ---- Sidebar lead form — modern restyle with FLOATING LABELS (matches Order/attendee fields) ----
   The legacy Form.ascx renders a table (label row above input row). blogform.js restructures each
   field into a .fl-field wrapper (input + overlaid .fieldlabel) and toggles data-val / data-focus,
   reusing the float behavior from order.scss. */
.blogpost-side-form { margin-bottom: 28px; }
.blogpost-side-form .form { width: 100% !important; max-width: none !important; margin: 0 !important; padding: 22px 22px 24px; background: #fff; border: 0; border-radius: 0; box-sizing: border-box; }
.blogpost-side-form .formcontainer { width: 100% !important; table-layout: fixed; border-collapse: collapse; }
.blogpost-side-form .formcontainer td { padding: 0 !important; }
.blogpost-side-form .formcontainer .title { padding-bottom: 14px !important; }
/* The legacy main-site rule (.secondary .form .formcontainer tr td.title div) gives the title div a
   near-white bg + bottom border + shadow. Strip it and match the Categories subhead font. */
.blog .blogpost-side-form .form .formcontainer .title div {
    margin: 0; padding: 0; background: none; border: 0; box-shadow: none;
    font-size: 20px; font-weight: 800; line-height: 1.25; letter-spacing: -0.01em;
    color: var(--fps-navy, #0f3063);
}

/* Floating-label field: input fills the wrapper; the label sits inside as a gray placeholder and
   floats above the field on focus or when filled. */
.blogpost-side-form .fl-field { position: relative; margin-top: 24px; }
.blogpost-side-form .fl-field input.text,
.blogpost-side-form .fl-field textarea {
    width: 100% !important; box-sizing: border-box; margin: 0;
    padding: 13px 12px 11px; border: 1px solid #c7ced6; border-radius: 0;
    font-size: 14px; color: #333; background: #fff; line-height: 1.3;
    transition: border-color .15s, box-shadow .15s;
}
.blogpost-side-form .fl-field textarea { min-height: 92px; resize: vertical; }
.blogpost-side-form .fl-field .fieldlabel {
    position: absolute; left: 9px; top: 12px; margin: 0 !important; padding: 0 4px !important;
    font-size: 14px; font-weight: 400; color: #8a939e; background: transparent; pointer-events: none;
    text-align: left !important; z-index: 1; transition: all .15s ease;
}
.blogpost-side-form .fl-field[data-val="true"] .fieldlabel,
.blogpost-side-form .fl-field[data-focus="true"] .fieldlabel {
    /* split bg: gray (card) over the top half, white (input) over the bottom half, so the label
       blends with both and only the border line under it is "blanked out". */
    top: -8px; font-size: 11px; font-weight: 600; line-height: 16px; color: #6b747f;
    background: linear-gradient(to bottom, #f3f5f9 50%, #fff 50%); padding: 0 6px !important; z-index: 2;
}
.blogpost-side-form .fl-field[data-focus="true"] input.text,
.blogpost-side-form .fl-field[data-focus="true"] textarea {
    /* focus matches the remodal default fields: gray border + soft layered shadow (no colored ring) */
    outline: 0; border-color: #aaa;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 6px, rgba(0, 0, 0, 0.05) 0px 1px 4px !important;
}
.blogpost-side-form .required { position: static; color: #c0392b; padding-left: 2px; }

/* Space above the submit button. Must out-specify ".formcontainer td { padding:0 !important }"
   above — .btnfooter is a <td> inside .formcontainer, so qualify with td.btnfooter. */
.blogpost-side-form .formcontainer td.btnfooter { padding-top: 15px !important; }
.blogpost-side-form .btnfooter .btn {
    display: block; width: 100%; box-sizing: border-box;
    padding: 12px 16px; border: 0; border-radius: 0;
    background: #0a4b8c; background-image: none; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .02em;
    cursor: pointer; transition: background .15s;
}
.blogpost-side-form .btnfooter .btn:hover { background: #08407a; }
.blogpost-side-form .errormsgsm { color: #c0392b; font-size: 12px; line-height: 1.3; padding-top: 8px; }

/* ---- Post-submit thank-you / download confirmation ----
   Form.ascx renders two things after submit: a centered remodal popup
   ([data-remodal-id=formthankyou-modal], moved to body level by remodal) and the
   inline #FormThankYou card that replaces the sidebar form. fpsblog.css only loads on
   blog pages, so these global selectors stay scoped to the blog. Restyle both to the
   flat form-card look: white card, #e3e6ea border, navy #0a4b8c square button. */
/* Match specificity of the legacy ".remodal[data-remodal-id].default ..." rules (0,3,0/0,4,0)
   by including .default; fpsblog.css loads last so equal-specificity ties resolve to us. */
.remodal.default[data-remodal-id="formthankyou-modal"] {
    max-width: 480px; padding: 30px 32px 32px;
    background: #fff !important; border: 1px solid #e3e6ea; border-radius: 12px; text-align: center;
}
.remodal.default[data-remodal-id="formthankyou-modal"] .title {
    margin: 0 !important; padding: 0 !important; border: 0 !important; box-shadow: none; background: none;
    font-size: 24px !important; font-weight: 800 !important; line-height: 1.2 !important;
    letter-spacing: -0.01em; color: #0f3063; text-align: center !important;
}
.remodal.default[data-remodal-id="formthankyou-modal"] .container {
    padding: 14px 0 0 !important; font-size: 15px; line-height: 1.55; color: #4a5560;
}
.remodal.default[data-remodal-id="formthankyou-modal"] .container > div { font-size: 15px !important; line-height: 1.55; color: #4a5560; }
.remodal.default[data-remodal-id="formthankyou-modal"] .download { margin: 22px 0 0; padding: 0; text-align: center; }

/* The download button — match the form's submit button (flat, square, navy). The legacy
   rule gives .download .btn a 1px radius + border + #0f3063; override to #0a4b8c square. */
.remodal.default[data-remodal-id="formthankyou-modal"] .download .btn,
.blogpost-side-form #FormThankYou .download .btn,
.blogpost-side-form #FormThankYou .download a {
    display: inline-block; width: auto; box-sizing: border-box;
    padding: 12px 28px !important; border: 0 !important; border-radius: 0 !important;
    background: #0a4b8c !important; background-image: none !important;
    color: #fff !important; font-size: 14px !important; font-weight: 700; letter-spacing: .02em;
    text-decoration: none; cursor: pointer; transition: background .15s;
}
.remodal.default[data-remodal-id="formthankyou-modal"] .download .btn:hover,
.blogpost-side-form #FormThankYou .download .btn:hover,
.blogpost-side-form #FormThankYou .download a:hover { background: #08407a !important; }

/* Inline sidebar confirmation card (#FormThankYou inherits .blogpost-side-form .form card). */
.blogpost-side-form #FormThankYou { background: #fff !important; }
.blogpost-side-form #FormThankYou .thankyou { text-align: left; }
.blogpost-side-form #FormThankYou .thankyou .title {
    margin: 0 0 10px; padding: 0; border: 0; box-shadow: none; background: none;
    font-size: 20px; font-weight: 800; line-height: 1.25; letter-spacing: -0.01em; color: #0f3063;
}
.blogpost-side-form #FormThankYou .thankyou > div { font-size: 14px; line-height: 1.55; color: #4a5560; }
.blogpost-side-form #FormThankYou .download { margin-top: 16px; }

/* ---- Author card (bottom of post) ---- */
.blogpost-author { display: flex; gap: 22px; align-items: flex-start; margin-top: 52px; padding: 26px 28px; background: #f6f8fa; border: 0; border-radius: 0; }
.blogpost-author-photo { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
/* Generic avatar when the author has no photo. */
.blogpost-author-photo--ph { display: flex; align-items: center; justify-content: center; background: #e3e8ee; color: #9aa7b5; }
.blogpost-author-photo--ph svg { width: 56%; height: 56%; display: block; }
.blogpost-author-info { min-width: 0; }
.blogpost-author-name { font-size: 19px; font-weight: 800; color: #14202b; letter-spacing: -0.01em; }
.blogpost-author-role { font-size: 13px; color: #8a939e; margin-top: 3px; }
.blogpost-author-bio { margin: 10px 0 0; font-size: 15px; line-height: 1.65; color: #4a5560; }

/* ---- Related (bottom of post) — 3-up cards, modeled on firstpagesage "Related Content" ---- */
.blog-related { margin-top: 72px; border-top: 1px solid #e3e6ea; padding-top: 44px; }
.blog-related h3 { margin: 0 0 20px; font-size: 30px; font-weight: 800; color: #14202b; letter-spacing: -0.01em; }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Borderless cards: rounded image thumbnail + text beneath, no card border/box. */
.blog-related-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.blog-related-imgwrap { display: block; border-radius: 0; overflow: hidden; background: #eef1f4; }
.blog-related-card img { display: block; width: 100%; height: 150px; object-fit: cover; transition: transform .25s ease; }
.blog-related-card:hover img { transform: scale(1.03); }
.blog-related-body { display: block; padding: 12px 0 0; }
.blog-related-title { display: block; font-size: 16px; font-weight: 700; line-height: 1.3; color: #0a4b8c; }
.blog-related-card:hover .blog-related-title { color: #BB133E; }
.blog-related-date { display: block; margin: 6px 0 8px; font-size: 12px; color: #8a939e; }
.blog-related-excerpt { display: block; font-size: 13.5px; line-height: 1.5; color: #5a6470;
    overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
    .blog-feed { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 860px) {
    .blog-hero { padding: 40px 20px 44px; }
    .blog-hero h1 { font-size: 34px; }
    .blog-hero-img img { height: 180px; }
    .blog-container { flex-direction: column; gap: 36px; padding-top: 36px; align-items: stretch; }
    .blog-main { width: 100%; }
    .blog-sidebar { flex-basis: auto; width: 100%; position: static; order: 2; }
    .blog-card-img { height: 200px; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .blogpost { padding: 30px 18px 52px; }
    /* The global ".container" rule pins the post's top padding at 65px to clear the
       fixed top nav, but the mobile nav is ~71px tall — so the eyebrow/title clip
       under it. Add breathing room on the inner article (no competing global rule). */
    .blogpost-article { padding-top: 26px; }
    .blogpost-head { flex-direction: column; align-items: stretch; gap: 22px; margin-bottom: 30px; }
    .blogpost-head-media { flex-basis: auto; max-width: none; }
    .blogpost-title { font-size: 30px; }
    .blogpost-author { flex-direction: column; gap: 12px; }
    .blogpost-body-row { flex-direction: column; gap: 30px; }
    .blogpost-main { max-width: none; width: 100%; }
    .blogpost-side { flex-basis: auto; width: 100%; position: static; }
}

/* ============================================================================
   Intelligence Hub BRAND PASS — homepage feed cards + sidebar.
   Palette pulled from the hero artwork (deep navy + bright blue).
   Self-contained: delete this entire block to revert to the prior look.
   ============================================================================ */
.blog {
    --fps-navy: #0f3063;        /* standard FPS dark navy ($blue-dark) */
    --fps-navy-hi: #16447f;     /* lighten-on-hover, like the standard .btn */
    --fps-maroon: #8d0212;      /* standard FPS maroon ($maroon) — hover accent */
    --fps-tint: #f3f5f9;        /* subtle neutral panel surface */
    --fps-line: #e1e6ee;
}

/* Feed cards — navy titles, maroon hover, gentle lift */
.blog .blog-card-title { color: var(--fps-navy); }
.blog .blog-card-link:hover .blog-card-title { color: var(--fps-maroon); }
.blog .blog-card-imgwrap {
    box-shadow: 0 1px 2px rgba(15, 48, 99, .08);
    transition: box-shadow .25s ease, transform .25s ease;
}
.blog .blog-card-link:hover .blog-card-imgwrap {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 48, 99, .16);
}

/* Pagination */
.blog .blog-pager a { color: var(--fps-navy); border-color: var(--fps-line); }
.blog .blog-pager a:hover { color: var(--fps-maroon); border-color: var(--fps-maroon); background: #faf2f3; }
.blog .blog-pager span.current,
.blog .blog-pager .pageon { background: var(--fps-navy); border-color: var(--fps-navy); color: #fff; }

/* Sidebar: bare search on top, then each section (form, categories) in its own card. */
.blog .blog-sidebar { background: none; border: 0; border-radius: 0; padding: 0; }
.blog .blog-searchform { margin-bottom: 24px; }
/* Each sidebar section is its own light-gray card (matches the lead-form card); search stays bare. */
.blog .blog-sidebar-card {
    background: #f3f5f9;
    border: 0;
    border-radius: 0;
    padding: 20px 20px 8px;
    margin-bottom: 24px;
}
.blog .blog-sidebar-card:last-child { margin-bottom: 0; }
.blog .blog-cat-card .blog-cat-list li:last-child { border-bottom: 0; }
.blog .blogpost-side-form .form { background: #f3f5f9; }   /* gray card, matches the category card */
.blog .blog-sidebar h3 { color: var(--fps-navy); }
.blog .blog-cat-card h3 { color: var(--fps-navy); font-size: 20px; margin: 0 0 20px; }
.blog .blog-cat-list li { border-bottom-color: var(--fps-line); }
.blog .blog-cat-list a { color: var(--fps-navy); }
.blog .blog-cat-list a:hover { color: var(--fps-maroon); text-decoration: none; }
.blog .blog-cat-count { color: #9aa3b0; }

/* Search box: navy focus ring + navy icon hover */
.blog .blog-search-input { border: 1px solid #c7ced6; border-radius: 2px; }
.blog .blog-search-input:focus {
    /* same focus as the form fields / remodal default: gray border + soft layered shadow */
    outline: 0;
    border-color: #aaa;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 6px, rgba(0, 0, 0, 0.05) 0px 1px 4px;
}
.blog .blog-search-ic:hover { color: var(--fps-navy); }
