/* social-pages.css — Shared styles for /following and /friends page shells.
   Owns: page header, empty state component.
   Does NOT own: sidebar layout (sidebar.css), dark theme globals (sidebar.css). */

/* ── Page container ─────────────────────────────────────────────────── */
.social-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Page header ────────────────────────────────────────────────────── */
.social-page-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.social-page-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,77,109,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-page-header-icon svg {
  width: 22px;
  height: 22px;
}

.social-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: 'Montserrat', -apple-system, sans-serif;
  letter-spacing: -0.02em;
}

/* ── Empty state ────────────────────────────────────────────────────── */
.social-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 45vh;
  padding: 40px 20px;
}

.social-empty-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.social-empty-icon svg {
  width: 44px;
  height: 44px;
  stroke: #FF4D6D;
}

.social-empty-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  font-family: 'Inter', -apple-system, sans-serif;
}

.social-empty-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A0A0A0;
  margin: 0;
  max-width: 360px;
}

/* ── CTA button (optional — used on /following) ──────────────────── */
.social-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 28px;
  background: #FF4D6D;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  font-family: 'Inter', -apple-system, sans-serif;
}

.social-empty-cta:hover {
  background: #E8435F;
  transform: translateY(-1px);
}

.social-empty-cta:active {
  transform: translateY(0);
}

/* ── Following page card wrapper ────────────────────────────────── */
.following-empty-card {
  background: #1A1A1A;
  border-radius: 16px;
  padding: 16px;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .social-page {
    padding: 20px 16px;
  }

  .social-page-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
  }

  .social-page-title {
    font-size: 1.25rem;
  }

  .social-empty-state {
    min-height: 40vh;
    padding: 32px 16px;
  }

  .social-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .social-empty-icon svg {
    width: 36px;
    height: 36px;
  }

  .social-empty-heading {
    font-size: 1.15rem;
  }
}
