.post-view-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  margin: 0.75rem 0 1.35rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.78);
  background: rgba(15, 23, 42, 0.22);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.86rem;
  line-height: 1;
}

.post-view-counter-icon {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 0.66rem;
  border: 1.7px solid currentColor;
  border-radius: 999px 999px 760px 760px;
  opacity: 0.78;
}

.post-view-counter-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.post-view-counter-label,
.post-view-counter-unit {
  opacity: 0.78;
}

.post-view-counter-number {
  min-width: 1.6em;
  color: #e0f2fe;
  font-weight: 700;
  text-align: center;
}

.post-view-counter[data-state="loading"] .post-view-counter-number {
  opacity: 0.58;
}

.post-view-counter[data-state="error"] {
  color: rgba(248, 113, 113, 0.82);
}

@media (max-width: 640px) {
  .post-view-counter {
    margin-top: 0.55rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
  }
}
