:root {
  /* Haresign brand palette — overrides Bixoo theme variables */
  --theme:   #0D5BB8;
  --header:  #111827;
  --text:    #4B5563;
  --text-2:  #6B7280;
  --border:  #D1D5DB;
  --bg:      #F4F6F8;
  --bg-2:    #F4F6F8;
  --bg-3:    #111827;
  --haresign-primary: #0D5BB8;
  --haresign-navy:    #111827;
  --haresign-coral:   #FF5B61;
  --haresign-light:   #F4F6F8;
  --haresign-white:   #FFFFFF;
}

/* =============================================================
   haresign.css — Haresign custom overrides for Bixoo Bootstrap 5
   ============================================================= */

/* ── Global input/textarea colour fix ────────────────────── */
/* Bixoo theme sets input { color: var(--white) } globally — override for all standard inputs */
input:not([type=submit]):not([type=button]):not([type=checkbox]):not([type=radio]),
input:not([type=submit]):not([type=button]):not([type=checkbox]):not([type=radio]):focus,
textarea,
textarea:focus,
select,
select:focus {
  color: #111827;
  background-color: #fff;
}
input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

/* ── Top bar tweaks ───────────────────────────────────────── */
.header-section-2 .header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
}
.header-section-2 .contact-list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-section-2 .contact-list li a {
  font-size: 13px;
}

/* ── Context selector (working-with) ─────────────────────── */
.hs-ctx-topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hs-ctx-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(14,165,233,.25);
}
.hs-ctx-dot.active {
  animation: ctx-pulse 2s infinite;
}
@keyframes ctx-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(14,165,233,.25); }
  50%       { box-shadow: 0 0 0 5px rgba(14,165,233,.1); }
}
.hs-ctx-select-topbar {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 28px 4px 12px;
  cursor: pointer;
  outline: none;
  max-width: 220px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23cbd5e1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: background .2s, border-color .2s;
}
.hs-ctx-select-topbar:hover,
.hs-ctx-select-topbar:focus {
  background-color: rgba(255,255,255,.14);
  border-color: var(--theme);
  color: #fff;
}
.hs-ctx-select-topbar option,
.hs-ctx-select-topbar optgroup {
  background: #1e293b;
  color: #e2e8f0;
}
.hs-ctx-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 6px;
}
.hs-ctx-select-offcanvas {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.hs-ctx-select-offcanvas:focus {
  border-color: var(--theme);
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}

/* ── Logo in sticky header ────────────────────────────────── */
.header-3 .logo img {
  max-height: 44px;
  width: auto;
  transition: max-height 0.3s ease;
}
.header-3.sticky-menu .logo img {
  max-height: 38px;
}

/* ── User avatar badge ────────────────────────────────────── */
.hs-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0D5BB8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* ── Desktop mega-dropdown positioning ───────────────────── */
/* Ensure has-dropdown items are positioned containers */
.header-3 .main-menu nav ul li.has-dropdown,
.header-3 .main-menu nav ul li.hs-mega-item {
  position: relative;
}

/* ── Nav submenu: position fix + hover delay ─────────────────── */

/* Give each submenu li a positioning context so nested submenus
   anchor to the correct row (not to the top of the whole panel) */
.header-main .main-menu ul li .submenu li {
  position: relative;
}

/* Delay hiding the submenu so users can move mouse into it without
   it snapping shut. Show instantly, hide after 200ms grace period. */
.header-main .main-menu ul li .submenu {
  transition: opacity 0.3s ease 0.2s, visibility 0.3s ease 0.2s,
              transform 0.3s ease 0.2s;
}
.header-main .main-menu ul li:hover > .submenu {
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s,
              transform 0.3s ease 0s;
}

/* Nested submenu: same delay pattern, slightly faster animation */
.header-main .main-menu ul li .submenu li .submenu {
  transition: opacity 0.25s ease 0.15s, visibility 0.25s ease 0.15s,
              transform 0.25s ease 0.15s;
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  transition: opacity 0.25s ease 0s, visibility 0.25s ease 0s,
              transform 0.25s ease 0s;
}

@media (min-width: 1200px) {
  .header-main .main-menu ul li .tools-dropdown-menu,
  .header-main .main-menu ul li .tools-dropdown-menu .submenu {
    min-width: 330px;
  }
  .header-main .main-menu ul li .tools-dropdown-menu li a {
    white-space: nowrap;
  }
}

/* ── Sign-out button in Account submenu ──────────────────────── */
.hs-signout-li {
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
  padding-top: 4px;
}
.hs-signout-btn {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #c0392b;
  padding: 9px 18px;
  font-size: 14px;
  font-family: inherit;
  display: block;
  transition: background 0.15s ease;
}
.hs-signout-btn:hover {
  background: rgba(192,57,43,0.06);
}

/* ── Blog news cards — uniform height + correct overlay colour ── */
.news-box-main-area .news-box-items {
  height: 420px;
}
.news-box-main-area .news-box-items img {
  object-fit: cover;
}
/* Replace dark-green overlay gradient with brand navy */
.news-box-main-area .news-box-items::before {
  background: linear-gradient(180deg, rgba(17,24,39,0.20) 0%, rgba(17,24,39,0.88) 100%);
}

/* ── Blog detail — image sizing ──────────────────────────────── */
/* Cap the hero/featured image so it doesn't dominate the page */
.post-featured-thumb {
  height: 460px;
  overflow: hidden;
  border-radius: 8px;
}
.post-featured-thumb img {
  width: 100%;
  height: 130%; /* extra height lets parallax scroll without white edges */
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}
/* Mobile — drop the parallax extra height so the full image is visible */
@media (max-width: 767px) {
  .post-featured-thumb {
    height: 220px;
  }
  .post-featured-thumb img {
    height: 100%;
    object-position: center center;
    will-change: auto;
  }
}
/* Tablet — moderate height, less parallax overhead */
@media (min-width: 768px) and (max-width: 991px) {
  .post-featured-thumb {
    height: 300px;
  }
  .post-featured-thumb img {
    height: 115%;
  }
}
/* Constrain any images embedded inside article body content */
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 1.25rem auto;
}
/* Sidebar recent-post thumbnails — fixed small square */
.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 8px;
}
.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb img {
  width: 90px !important;
  height: 90px !important;
  max-width: 90px;
  object-fit: cover;
}

/* ── Footer ───────────────────────────────────────────────── */
.hs-footer-logo {
  max-height: 60px;
  width: auto;
}
/* Footer bottom bar: override Bixoo's dark-green with brand navy */
.footer-bottom-3 {
  background-color: #111827;
}
.hs-nl-msg { font-size: 13px; margin-bottom: 8px; }
.hs-nl-success { color: #7ecfa0; }
.hs-nl-error   { color: #e07070; }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  padding: 90px 0 60px;
  background: linear-gradient(135deg, #111827 0%, #111827 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1,
.page-hero .page-title {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero p,
.page-hero .page-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin: 0;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item.active { color: rgba(255,255,255,0.5); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* Bixoo-style breadcrumb-wrapper background fallback */
.breadcrumb-wrapper {
  background-color: #111827;
}

/* Reduce breadcrumb hero height — default is far too tall */
.breadcrumb-wrapper .page-heading {
  padding: 190px 0 80px;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 120px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

/* ── Legacy Bootstrap 4 spacing utilities (bridge) ───────── */
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }
.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }
.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 0.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-3 { padding-right: 1rem !important; }
.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 1rem !important; }

/* ── .btn-common → .theme-btn bridge ─────────────────────── */
.btn-common {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #0D5BB8;
  color: #fff !important;
  border: 2px solid #0D5BB8;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.btn-common:hover {
  background: transparent;
  color: #0D5BB8 !important;
  text-decoration: none;
}
.btn-common-border {
  background: transparent;
  color: #0D5BB8 !important;
}
.btn-common-border:hover {
  background: #0D5BB8;
  color: #fff !important;
}

/* ── Content section padding fix ─────────────────────────── */
.section-padding {
  padding: 80px 0;
}

/* ── Alert/message styling ────────────────────────────────── */
.alert { border-radius: 4px; }

/* ── Ensure form controls render properly ────────────────── */
.form-control:focus {
  border-color: #0D5BB8;
  box-shadow: 0 0 0 0.2rem rgba(13, 91, 184, 0.25);
}

/* ── Smooth scroll adjustments ───────────────────────────── */
#smooth-wrapper { overflow: hidden; position: relative; }
#smooth-content { will-change: transform; }

/* Bixoo already hides header-top-section at ≤1199px via its own CSS */
@media screen and (max-width: 1199px) {
  .documents-dropdown-menu,
  .services-dropdown-menu,
  .tools-dropdown-menu {
    left: auto; right: auto; width: auto;
    min-width: 0; max-width: none; transform: none;
  }
}

@media screen and (max-width: 767px) {
  .section-padding { padding: 50px 0; }
  .page-hero { padding: 70px 0 40px; }
}

/* ── About page: credentials card h2 on dark bg ──────────── */
.service-section-inners .service-box-items-style-2 .service-content h2 {
  color: var(--white);
}

/* ── About page: project cards without images ─────────────── */
.about-project-thumb {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-3);
}

/* ── Section titles on dark service-section-inners bg ─────── */
.service-section-inners .section-title h2,
.service-section-inners .section-title p {
  color: var(--white);
}

/* ── Team cards — fixed thumb height so all cards match ────── */
.team-section-4 .team-box-items-style-4 .thumb {
  height: 360px;
}

/* ── Tools page: light-bg tool cards ─────────────────────── */
.haresign-tool-card {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.haresign-tool-card:hover {
  box-shadow: 0 8px 32px rgba(13,91,184,.12);
  transform: translateY(-3px);
}
.haresign-tool-icon {
  width: 54px;
  height: 54px;
  background: var(--theme);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.haresign-tool-icon i {
  font-size: 22px;
  color: #fff;
}
.haresign-tool-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}
.haresign-tool-card > p {
  color: #6b7c85;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.haresign-tool-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.haresign-tool-card ul li {
  font-size: 13px;
  color: #6b7c85;
  padding: 3px 0;
}
.haresign-tool-card ul li i {
  color: var(--theme);
  font-size: 11px;
  margin-right: 8px;
}
.tools-quick-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px auto 0;
  max-width: 980px;
}
.tools-quick-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #dbe3ec;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(13,91,184,.06);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.tools-quick-nav a i {
  color: var(--theme);
  font-size: 13px;
}
.tools-quick-nav a:hover {
  background: var(--theme);
  border-color: var(--theme);
  color: #fff;
  transform: translateY(-1px);
}
.tools-quick-nav a:hover i {
  color: #fff;
}
.tools-section-anchor {
  scroll-margin-top: 120px;
}

/* ── Tools page: dark service card list items ─────────────── */
.service-box-items-style-2 .service-content ul li {
  font-size: 12px;
  display: block;
  line-height: 1.6;
  padding: 2px 0;
}

/* ── Blog article cards: style-2 flat card with always-visible Learn More ── */
.news-box-items-style-2 .thumb {
  height: 220px;
}
.news-box-items-style-2 .thumb img {
  height: 220px;
  object-fit: cover;
  object-position: center top;
}

/* Equal-height cards — stretch to tallest in each row */
#articles-grid .article-card {
  display: flex;
  flex-direction: column;
}
#articles-grid .news-box-items-style-2 {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
#articles-grid .news-box-items-style-2 .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#articles-grid .news-box-items-style-2 .content h3 {
  flex: 1;
}
#articles-grid .news-box-items-style-2 .content .link-btn {
  margin-top: auto;
  padding-top: 18px;
  display: inline-block;
}

/* ── CTA section-3 colour fixes ──────────────────────────── */
/* All text inside the contact info block should be white */
.cta-wrapper-3 .cta-first-items .content p,
.cta-wrapper-3 .cta-first-items .content p a,
.cta-wrapper-3 .cta-first-items .content .mail-text {
  color: var(--white);
}
/* "Let's Work Together" button: white bg, theme-coloured text */
.cta-wrapper-3 .theme-btn,
.cta-wrapper-3 .theme-btn .btn-title {
  background-color: var(--white);
  color: var(--theme);
}
.cta-wrapper-3 .theme-btn .btn-arrow-left,
.cta-wrapper-3 .theme-btn .btn-arrow-right {
  background-color: var(--theme);
  color: var(--white);
}
.cta-wrapper-3 .theme-btn:hover {
  background-color: var(--heading);
  color: var(--white);
}
.cta-wrapper-3 .theme-btn:hover .btn-title {
  color: var(--white);
}
.cta-wrapper-3 .theme-btn:hover .btn-arrow-left,
.cta-wrapper-3 .theme-btn:hover .btn-arrow-right {
  background-color: var(--white);
  color: var(--heading);
}

/* ── News right-column card sizing ───────────────────────── */
/* Give thumb a fixed square so it renders alongside content */
.news-right-thumb-style-3 {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-right-thumb-style-3 li {
  flex: 1;
  display: flex;
}
.news-right-thumb-style-3 li .news-thumb-items {
  flex: 1;
  align-items: stretch;
}
.news-right-thumb-style-3 li .news-thumb-items .thumb {
  flex: 0 0 180px;
  width: 180px;
  min-height: 160px;
}
.news-right-thumb-style-3 li .news-thumb-items .content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: unset;
}
.news-right-thumb-style-3 li .news-thumb-items .content .link-btn {
  margin-top: auto;
  padding-top: 12px;
}

/* ── Hero circle-box — lift above heading text on desktop ─────── */
.hero-3 .circle-box {
  top: 14%;
}
@media (max-width: 1899px) {
  .hero-3 .circle-box {
    top: 12%;
  }
}

/* ── Auth pages (login / register) ───────────────────────────── */
.auth-form-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 44px 40px;
  height: 100%;
}
.auth-info-panel {
  background: #111827;
  border-radius: 10px;
  padding: 44px 40px;
  height: 100%;
}
.auth-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.auth-info-list li {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.auth-info-list li:last-child { border-bottom: none; }
.auth-info-list li i {
  color: #0D5BB8;
  font-size: 15px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
/* Labels */
.auth-form-section .form-clt label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
  display: block;
}
/* Inputs */
.auth-form-section .form-clt input[type=text],
.auth-form-section .form-clt input[type=email],
.auth-form-section .form-clt input[type=password],
.auth-form-section .auth-option-box input[type=text] {
  border-radius: 5px;
  border: 1px solid rgba(88,109,145,0.22);
  background: #fff;
  padding: 14px 18px;
  width: 100%;
  color: #111827;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  display: block;
}
.auth-form-section .form-clt input:focus,
.auth-form-section .auth-option-box input[type=text]:focus {
  border-color: #0D5BB8;
  box-shadow: 0 0 0 3px rgba(13,91,184,0.08);
  outline: none;
}
/* Info aside strip */
.auth-info-aside {
  background: #eff6ff;
  border-left: 4px solid #0D5BB8;
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  font-size: 13px;
  color: #374151;
  line-height: 1.7;
}
/* Option boxes (newsletter / practice search) */
.auth-option-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 16px 18px;
}
.auth-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.auth-checkbox-row input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #0D5BB8;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
/* Helper text / errors */
.auth-required   { color: #e74c3c; }
.auth-field-hint { font-size: 12px; color: #9ca3af; margin: 4px 0 0; }
.auth-field-error{ font-size: 13px; color: #e74c3c; margin: 4px 0 0; }
/* Responsive */
@media (max-width: 767px) {
  .auth-form-box,
  .auth-info-panel { padding: 32px 24px; }
}

/* ── Article body — Bootstrap 5 brand colour integration ──────── */
/* Scope all overrides to .article-body so the rest of the site is unaffected */
.article-body {
  color: #374151;
  font-size: 16px;
  line-height: 1.8;
  /* Map Bootstrap's --bs-primary to the Haresign brand blue */
  --bs-primary: #0D5BB8;
  --bs-primary-rgb: 13, 91, 184;
  --bs-link-color: #0D5BB8;
  --bs-link-hover-color: #0a4a9c;
}
.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  color: #111827;
  font-weight: 700;
  line-height: 1.3;
}
/* Tame the display-6 jumbo heading used in article intros */
.article-body .display-6,
.article-body h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
/* Inline links within article prose */
.article-body a:not(.btn):not(.btn-common) {
  color: #0D5BB8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:not(.btn):not(.btn-common):hover {
  color: #0a4a9c;
}
/* Primary colour utilities */
.article-body .text-primary       { color: #0D5BB8 !important; }
.article-body .bg-primary         { background-color: #0D5BB8 !important; }
.article-body .border-primary     { border-color: #0D5BB8 !important; }
.article-body .badge.bg-primary   { background-color: #0D5BB8 !important; }
/* Alert — primary */
.article-body .alert-primary {
  background-color: #dbeafe;
  border-color: #93c5fd;
  color: #1e3a5f;
}
/* Cards — lighten borders to match site palette */
.article-body .card {
  border-color: #e5e7eb;
}
/* Section breathing room */
.article-body > section,
.article-body article > section {
  margin-bottom: 2rem;
}
/* Restore list styles stripped by the global ul { list-style: none } theme reset */
.article-body ul {
  list-style: disc;
  margin: 0 0 18px 24px;
  padding: 0;
}
.article-body ol {
  list-style: decimal;
  margin: 0 0 18px 24px;
  padding: 0;
}
.article-body ul li,
.article-body ol li {
  margin-bottom: 6px;
}
/* Nested lists */
.article-body ul ul { list-style: circle; margin-bottom: 0; }
.article-body ul ul ul { list-style: square; }

/* Responsive tables inside articles */
.article-body table {
  font-size: 14px;
  width: 100%;
}
