.aiv-cc-wrap {
  display: flex;
  justify-content: center;
}

.aiv-cc {
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  width: 260px;
  height: 260px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  background: transparent;
}

.aiv-cc__value {
  line-height: 1;
}

.aiv-cc__prefix, .aiv-cc__suffix {
  font-weight: inherit;
}

.aiv-cc__num {
  font-weight: inherit;
}

.aiv-cc__line {
  width: 40px;
  height: 2px;
  margin: 12px 0 10px;
  background: #1a1a1a;
}

.aiv-cc__label {
  line-height: 1.4;
}

.aiv-cc{
  aspect-ratio: 1 / 1;
  height: auto !important;
  width: 100%;
  max-width: 260px; 
  border-radius: 50%;
  box-sizing: border-box;
}

.aiv-cc__value{
  display: inline-flex;
  gap: .15em;
  align-items: baseline;
  white-space: nowrap;
}
.aiv-cc__value,
.aiv-cc__num,
.aiv-cc__prefix,
.aiv-cc__suffix {
  font-size: clamp(28px, 8vw, 56px);
  line-height: 1.1;
}

.aiv-cc__label {
  font-size: clamp(12px, 3.2vw, 16px);
}
.aiv-cc__line {
  width: clamp(28px, 12vw, 48px);
}

/* Tablet-only override */
@media (min-width: 768px) and (max-width: 1024px) {
  .aiv-cc__value,
  .aiv-cc__num,
  .aiv-cc__prefix,
  .aiv-cc__suffix {
    font-size: 32px !important;
  }
  .aiv-cc__label {
    font-size: 13px !important;
  }
  .aiv-cc__line {
    width: 32px !important;
  }
}
