.social{
  margin: 14px 12px 0;
  padding: 16px 18px 18px;
}
.social .section-label{ margin-bottom: 12px; }

.social-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
  gap: 8px;
}
.social-btn{
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px 6px 12px;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.social-btn:hover, .social-btn:active{
  background: var(--gold-soft);
  border-color: var(--gold-line);
  transform: translateY(-1px);
}
.social-btn--static{ cursor: default; }
.social-btn--static:hover{ transform: none; }
.social-icon{
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.social-icon svg{ width: 20px; height: 20px; }
.social-label{
  font-family: var(--f-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.02em; text-align: center;
}
.social-value{
  font-size: 9.5px; color: var(--text-faint); text-align: center; line-height: 1.2;
}
