/* ── modules/circle-arc/style.css ── */
/* SVG circle arc with animated stroke and percentage display */

.sCC-circle-wrap {
  position: absolute;
  width: 364px;
}

.sCC-svg {
  display: block;
  margin: 0 auto;
  transform: rotate(-90deg);
}

.sCC-arc-bg {
  fill: none;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 9;
}

.sCC-arc-fg {
  fill: none;
  stroke: #396ef9;
  stroke-width: 9;
  stroke-linecap: butt;
  stroke-dasharray: 628.318;
  stroke-dashoffset: 628.318;
}

.sCC-pct-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 233px;
  height: 233px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.sCC-pct {
  font-family: var(--font);
  font-size: 34px;
  font-weight: 500;
  color: #f0efeb;
  line-height: 1;
  font-feature-settings: 'ss04' 1, 'ss05' 1, 'ss06' 1, 'ss07' 1, 'ss10' 1, 'ss08' 1, 'ss09' 1, 'ss11' 1;
  min-width: 2ch;
  text-align: right;
  outline: none;
}

.sCC-pct-sign {
  font-family: var(--font);
  font-size: 34px;
  font-weight: 500;
  color: #f0efeb;
  line-height: 1;
}

.sCC-label {
  position: absolute;
  top: 249px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font);
  font-size: 21px;
  font-weight: 500;
  color: #f0efeb;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  outline: none;
}
