/* BOC 2026-07-27 — /de/ deltas vs the merged ROOT theme modules.
   Merged /cc/ pages render with the root modules, so rules that existed only in the pre-merge
   /de/ module are lost. Loaded on /de/ pages only by ig-includes/ig-boc-locale-css-overrides.php.
   NOTE: this file is a <link> at wp_head:100, but the page also emits an inline <style> block
   LATER in the document, so at equal specificity that inline block wins — rules here have to
   out-specify their root counterpart, not merely follow it. */

/* redesign/_paym-icon.css: the merged ROOT module carries the generic 160x60 paylogo Apple Pay
   (correct for root/UK, and what OLD /ro/ used too), but this locale`s pre-merge module used the
   small 86x26 new-images variant. Restore it, plus the @2x visa art. */
._paym-icon.apple-pay { background-image: url(/style/new-images/apple-pay@2x.png); width: 86px; height: 26px; }
._paym-icon.visa { background-image: url(/style/new-images/visa@2x.png); }

/* BOC 2026-08-12 — /de/blog/ landing page.
   Pre-merge the intro came from the DE install's `intro` option, echoed raw by index.php, so it
   was a bare text node inside <article> and inherited its 18px line-height and no box. It now
   lives in the page's post_content, where wpautop wraps it in a <p> that picks up the generic
   paragraph metrics from `article p` (26px line-height, 15px bottom padding). Keeping the <p> —
   that is what lets editors still work on the page in wp-admin — and restoring the pre-merge box
   here. Class is set in the page content. */
.blog-intro { line-height: 18px; padding: 0; }

/* The DE post list re-uses the sub-install's `.excerpt` markup. `article > p:first-of-type`
   (0,0,1,2) in the root module gives its paragraph `margin: 5px 0 1px`; the pre-merge module had
   no bottom margin. 0,0,2,1 here beats it on class count. */
.excerpt > p:first-of-type { margin-bottom: 0; }
