/* wsc_hero block styles */
/* ---------- Stat pills ---------- */
.wsc-stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 48px); }
.wsc-stat__value {
  font-family: var(--wsc-font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.02em;
  line-height: 1;
}
.wsc-stat__label { font-size: 13px; color: var(--wsc-ink-3); margin-top: 6px; }

/* ---------- Hero ---------- */
.wsc-hero { position: relative; background: var(--wsc-surface); border-bottom: 1px solid var(--wsc-line); overflow: hidden; }
.wsc-hero__inner { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 88px); }
.wsc-hero__text { flex: 1 1 440px; min-width: 300px; }
.wsc-hero__media { flex: 1 1 380px; min-width: 290px; position: relative; }
.wsc-hero__badge {
  position: absolute; z-index: 2; bottom: 22px; left: 22px;
  background: var(--wsc-ink); color: #fff; border-radius: var(--wsc-radius);
  padding: 16px 18px; box-shadow: 0 14px 34px rgba(20, 22, 27, .3); max-width: 220px;
}
.wsc-hero__badge b { font-family: var(--wsc-font-head); font-weight: 800; font-size: 30px; line-height: 1; display: block; }
.wsc-hero__badge span { font-size: 12.5px; color: var(--wsc-footer-ink); margin-top: 5px; display: block; }

/* Decorative orange squares block */
.wsc-marks { position: relative; width: 64px; height: 64px; }
.wsc-marks span { position: absolute; background: var(--wsc-accent); }
.wsc-marks span:nth-child(1) { top: 0; left: 0; width: 26px; height: 26px; }
.wsc-marks span:nth-child(2) { top: 28px; left: 28px; width: 20px; height: 20px; opacity: .45; }
.wsc-marks span:nth-child(3) { top: 28px; left: 0; width: 20px; height: 20px; }

/* Configurable brand-mark (replaces the old decorative squares) */
.wsc-hero__mark { position: relative; width: 56px; height: 56px; margin-bottom: 4px; }
.wsc-hero__mark .wsc-mark { width: 56px; height: 56px; }


