.dope-counter-capsule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 34px);
  padding: 24px 38px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.dope-counter-item {
  display: flex;
  align-items: center;
  flex: 1 1 240px;
  gap: 14px;
  min-width: 0;
}

.dope-counter-item--link {
  text-decoration: none;
  color: inherit;
}

.dope-counter-item--link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 12px;
}

.dope-counter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #1759c5;
  color: #fff;
  flex-shrink: 0;
}

.dope-counter-icon i {
  font-size: 24px;
  line-height: 1;
}

.dope-counter-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.dope-counter-content {
  min-width: 0;
}

.dope-counter-headline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0;
  font-size: clamp(16px, 1.8vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  color: #1f2937;
}

.dope-counter-prefix,
.dope-counter-number,
.dope-counter-suffix,
.dope-counter-title {
  white-space: nowrap;
}

.dope-counter-title {
  font-weight: 600;
  white-space: normal;
}

.dope-counter-subtitle {
  margin-top: 4px;
  font-size: clamp(16px, 1.25vw, 32px);
  line-height: 1.2;
  font-weight: 600;
  color: #1f2937;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .dope-counter-capsule {
    border-radius: 44px;
  }
}

@media (max-width: 767px) {
  .dope-counter-capsule {
    padding: 18px 20px;
    border-radius: 28px;
  }

  .dope-counter-item {
    flex: 1 1 100%;
  }
}
