/* Shared social icon row — Guitar Earo */
.social-icon-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-icon-row--start {
  justify-content: flex-start;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary, #C9C9CF);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-icon-link:hover {
  color: var(--accent-orange, #FF8A3D);
  border-color: rgba(255, 138, 61, 0.45);
  background: rgba(255, 138, 61, 0.08);
  transform: translateY(-2px);
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon-link--substack:hover {
  color: #ff6719;
  border-color: rgba(255, 103, 25, 0.45);
  background: rgba(255, 103, 25, 0.08);
}

.social-follow-block {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.social-follow-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #8A8A92);
  margin-bottom: 1rem;
}
