/* Onkelkrass Freunde: visual reactions + card stats */
.ok-friend-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  align-items:center;
  margin:1rem 0;
}
.ok-friend-action{
  min-height:44px;
  border:1px solid #e5e7eb;
  background:#fff;
  color:#374151;
  border-radius:999px;
  padding:.7rem 1rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  font-weight:800;
  font-size:.9rem;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
  transition:transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.ok-friend-action:hover{
  transform:translateY(-1px);
  border-color:#bbf7d0;
  background:#f0fdf4;
  color:#166534;
  box-shadow:0 12px 28px rgba(15,23,42,.07);
}
.ok-friend-action:disabled{
  opacity:.55;
  cursor:wait;
  transform:none;
}
.ok-friend-action i{
  font-size:1rem;
  line-height:1;
}
.ok-friend-action strong{
  min-width:1.45rem;
  height:1.45rem;
  border-radius:999px;
  background:#f3f4f6;
  color:#374151;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.72rem;
  padding:0 .35rem;
}
.ok-friend-action.is-active{
  border-color:#86efac;
  background:#dcfce7;
  color:#166534;
}
.ok-friend-action.is-active strong{
  background:#16a34a;
  color:#fff;
}
.ok-friend-actions--entry{
  justify-content:center;
  margin:1.25rem 0 1.5rem;
}
.ok-friend-actions--compact .ok-friend-action{
  width:44px;
  height:44px;
  padding:0;
}
.ok-friend-actions--compact .ok-friend-action span{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}
.ok-friend-actions--compact .ok-friend-action strong{
  position:absolute;
  transform:translate(15px,-15px);
  min-width:18px;
  height:18px;
  font-size:.62rem;
}
.ok-card-social-stats{
  display:flex;
  align-items:center;
  gap:.85rem;
  margin-top:auto;
  padding-top:1rem;
  font-size:.88rem;
  color:#6b7280;
}
.ok-card-social-stats span{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  line-height:1;
  font-weight:800;
}
.ok-card-social-stats i{
  color:#9ca3af;
  font-size:.95rem;
}
.ok-card-social-stats strong{
  color:#4b5563;
  font-size:.85rem;
}
.ok-card-social-stats--pill{
  background:#f9fafb;
  border:1px solid #eef2f7;
  border-radius:999px;
  padding:.55rem .75rem;
  margin-top:1rem;
  width:max-content;
}
@media (max-width:640px){
  .ok-friend-actions{
    width:100%;
  }
  .ok-friend-action{
    flex:1 1 calc(50% - .4rem);
  }
  .ok-friend-actions--compact .ok-friend-action{
    flex:0 0 44px;
  }
}
