.msc12rid-vc {
  --msc12rid-vc-navy: #004B87;
  --msc12rid-vc-blue: #0C79BB;
  --msc12rid-vc-link: #21759B;
  --msc12rid-vc-soft: #E8F3FA;
  --msc12rid-vc-line: #B7D4E8;
  --msc12rid-vc-muted: #5A7A92;

  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1rem 1.25rem;
  background: var(--msc12rid-vc-soft);
  border: 1px solid var(--msc12rid-vc-line);
  border-radius: 10px;
  font-family: inherit;
  line-height: 1.4;
}

.msc12rid-vc--align-left {
  text-align: left;
}

.msc12rid-vc--align-center {
  text-align: center;
}

.msc12rid-vc--align-right {
  text-align: right;
}

.msc12rid-vc__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--msc12rid-vc-navy);
}

.msc12rid-vc__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.msc12rid-vc--align-center .msc12rid-vc__items {
  justify-content: center;
}

.msc12rid-vc--align-right .msc12rid-vc__items {
  justify-content: flex-end;
}

.msc12rid-vc--vertical .msc12rid-vc__items,
.msc12rid-vc--stacked .msc12rid-vc__items {
  flex-direction: column;
  align-items: stretch;
}

.msc12rid-vc__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.msc12rid-vc--stacked .msc12rid-vc__item {
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border: 1px solid var(--msc12rid-vc-line);
  border-radius: 8px;
}

.msc12rid-vc__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: msc12rid-vc-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.msc12rid-vc__label {
  font-size: 0.9rem;
  color: var(--msc12rid-vc-muted);
}

.msc12rid-vc__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--msc12rid-vc-blue);
  font-variant-numeric: tabular-nums;
  min-width: 1.5ch;
}

@keyframes msc12rid-vc-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .msc12rid-vc__dot {
    animation: none;
  }
}
