/* ============================================================================
   SIDEBAR STATS - Blog V2
   Post Stats Card - Enhanced with Cartoon Style
   Extracted from blog-v2.css
   ============================================================================ */

.post-stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2, 12px);
}

.post-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-2, 12px);
  padding: var(--sp-2, 12px);
  background: var(--c-bg-alt);
  border-radius: var(--radius-cartoon, 18px);
  border: 2px solid var(--c-border);
  transition: all var(--motion-med) var(--motion-curve);
  position: relative;
  cursor: default;
}

.post-stat::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent #042b33 transparent;
  opacity: 0;
  transition: opacity var(--motion-med) var(--motion-curve);
}

.post-stat:hover {
  border-color: var(--c-accent);
  transform: translateX(6px);
  box-shadow: 0 3px 0 var(--c-border), 0 6px 0 #042b33;
}

.post-stat:hover::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .post-stat {
    transition: none;
  }
  .post-stat:hover {
    transform: none;
  }
}

.post-stat__icon {
  color: var(--c-accent);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 0 rgba(4, 43, 51, 0.4));
}

.post-stat__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.post-stat__value {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.post-stat__label {
  font-size: 0.6875rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
