/* Blitz Health Revamp — Medically Supervised + How It Works as side-by-side hovering cards */
.bhr-cred{ width:100%; box-sizing:border-box; padding:var(--bh-s8) 24px; background:var(--bh-bg); color:var(--bh-text); font-family:inherit; }
.bhr-cred *{ box-sizing:border-box; }
.bhr-cred__inner{ max-width:1120px; margin:0 auto; }
.bhr-cred__grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:stretch; }
.bhr-cred__card{
	background:var(--bh-surface); border:1px solid var(--bh-border); border-radius:var(--bh-r-lg);
	padding:40px 36px; transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.bhr-cred__card:hover{ transform:translateY(-5px); border-color:var(--bh-border-2); box-shadow:var(--bh-sh-3); }

/* statement card (Medically Supervised) — centered */
.bhr-cred__card--statement{ display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.bhr-cred__icon{ width:64px; height:64px; margin:0 0 18px; border-radius:50%; background:rgba(118,192,74,.12); color:var(--bh-green-br); display:flex; align-items:center; justify-content:center; }
.bhr-cred__icon svg{ width:32px; height:32px; display:block; }
.bhr-cred__title{ margin:0 0 14px; font-size:clamp(22px,2.3vw,30px); font-weight:800; letter-spacing:-.02em; color:var(--bh-text); }
.bhr-cred__text{ margin:0; font-size:16px; line-height:1.65; color:var(--bh-text-muted); }

/* steps card (How It Works) */
.bhr-cred__card--steps .bhr-cred__title{ margin-bottom:24px; }
.bhr-cred__steps{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:22px; }
.bhr-cred__step{ display:flex; align-items:flex-start; gap:16px; }
.bhr-cred__step-icon{ position:relative; flex-shrink:0; width:48px; height:48px; border-radius:50%; background:rgba(118,192,74,.12); color:var(--bh-green-br); display:flex; align-items:center; justify-content:center; }
.bhr-cred__step-icon svg{ width:23px; height:23px; display:block; }
.bhr-cred__step-num{ position:absolute; top:-5px; right:-5px; width:22px; height:22px; border-radius:50%; background:var(--bh-green-dk); color:#fff; font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; border:2px solid var(--bh-surface); }
.bhr-cred__step-body{ min-width:0; }
.bhr-cred__step-body h3{ margin:0 0 3px; font-size:16px; font-weight:700; color:var(--bh-text); }
.bhr-cred__step-body p{ margin:0; font-size:14px; line-height:1.5; color:var(--bh-text-muted); }

@media(max-width:820px){ .bhr-cred__grid{ grid-template-columns:1fr; } }
