/* SEO Blog & Resources — fully scoped to .bh1 */
.bh1 {
  --bh1-bg: #f2fdf9;             /* soft green-tinted background */
  --bh1-ink: #0f172a;
  --bh1-muted: #5b6778;
  --bh1-c1: #12616E;             /* unified main brand color */
  --bh1-pill: #e1f4f1;           /* subtle mint tone for pill */
  --bh1-pill-text: #12616E;      /* brand color for pill text */

  max-width: 100%;
  background: var(--bh1-bg);
  padding: 56px 16px 64px;
  font-family: inherit;

  position: relative;
  isolation: isolate;
  border: 0;
  box-shadow: none;
  overflow: hidden;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}

.bh1.bh1-in {
  opacity: 1;
  transform: none;
}

.bh1 .bh1-wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Pill */
.bh1 .bh1-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bh1-pill);
  color: var(--bh1-pill-text);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  margin-bottom: 16px;
  border: 0;
  box-shadow: none;
}

.bh1 .bh1-ico {
  width: 18px;
  height: 18px;
  opacity: .9;
}

/* Title */
.bh1 .bh1-title {
  margin: 0 0 10px;
  color: var(--bh1-ink);
  font-weight: 800;
  line-height: 1.2;
  font-size: clamp(28px, 6vw, 56px);
}

/* Brand accent text — now solid color, not gradient */
.bh1 .bh1-highlight {
  color: var(--bh1-c1);
}

/* Subtitle */
.bh1 .bh1-sub {
  margin: 0 auto;
  max-width: 820px;
  color: var(--bh1-muted);
  font-size: clamp(14px, 2.4vw, 18px);
  line-height: 1.7;
}

/* Ensure next sections stack properly */
.rbx-head-zone,
.rbx-svc,
.rbx-stats-zone,
.rbx-fw-light,
.pp2,
.qp3 {
  position: relative;
  z-index: 1;
}
