/* fixed type scale (your values) */
:root {
  --font-size-headline-small: clamp(1.18rem, 0.6506rem + 1.4118vw, 1.78rem)!important;
  --font-size-subline-small: clamp(0.95rem, 0.6588rem + 0.7765vw, 1.28rem)!important;
  --font-weight-regular: 400;
  --font-weight-black: 900;
}

/* wrapper */
.full-circle-badge {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: var(--fcb-size);
  height: var(--fcb-size);
}

/* put this once in your CSS */
.footer-cta-anchor .full-circle-badge {
  --fcb-size: clamp(150px, calc(8.5vw + 118px), 240px)!important;
}

/* SVG circle */
.full-circle-badge .fcb-svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

/* text stack: slightly above center by default */
.full-circle-badge .fcb-text {
  position: absolute;
  inset: 6%;   /* was 10% — less inset for small circles */
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  line-height: 1.2;
  transform: translateY(var(--fcb-vshift, -6%));
}

/* two lines (head + sub) using your fixed sizes */
.full-circle-badge .fcb-head {
  display: block;
  color: #fff;
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-headline-small);
  font-family: "Lato", sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 0.35em 0;               /* visual gap to subline */
}

.full-circle-badge .fcb-sub {
  display: block;
  color: #fff;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-subline-small);
  font-family: "Lato", sans-serif;
  letter-spacing: 0.01em;
  opacity: 1;
}

/* if it's a link, no underline */
.full-circle-badge .fcb-link {
  text-decoration: none; color: inherit;
}

/* handy helpers for layering when you place behind other content */
.full-circle-badge.is-behind {
  z-index: -1;
  pointer-events: none;     /* make clicks pass through */
}
.full-circle-badge.is-front {
  z-index: 2;
}