/* ============================================================
   STEMWise Landing — Social Proof / Community Section
   ============================================================ */

.stmw-social {
  background-color: var(--stmw-dark);
  padding: 90px 0;
  position: relative;
}

/* ============================================================
   Forum Mockup
   ============================================================ */

.stmw-social__forum {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--stmw-radius-lg);
  overflow: hidden;
}

.stmw-social__forum-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(99, 55, 254, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-family: var(--stmw-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--stmw-white);
}

.stmw-social__forum-header i {
  font-size: 20px;
  color: var(--stmw-secondary);
}

/* ── Topic Rows ── */
.stmw-social__forum-topic {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: background var(--stmw-duration) var(--stmw-ease);
}

.stmw-social__forum-topic:last-child {
  border-bottom: none;
}

.stmw-social__forum-topic:hover {
  background: rgba(255, 255, 255, .03);
}

/* ── Avatars (CSS gradient circles) ── */
.stmw-social__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
}

.stmw-social__avatar--1 {
  background: linear-gradient(135deg, #6337fe, #a78bfa);
}

.stmw-social__avatar--2 {
  background: linear-gradient(135deg, #28c76f, #6ee7b7);
}

.stmw-social__avatar--3 {
  background: linear-gradient(135deg, #ec4899, #f9a8d4);
}

.stmw-social__avatar--4 {
  background: linear-gradient(135deg, #ffab00, #fde68a);
}

/* ── Topic Content ── */
.stmw-social__topic-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.stmw-social__topic-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--stmw-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stmw-social__topic-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

/* ============================================================
   Benefits List
   ============================================================ */

.stmw-social__benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.stmw-social__benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.stmw-social__benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(99, 55, 254, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--stmw-secondary);
}

.stmw-social__benefit strong {
  display: block;
  font-family: var(--stmw-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--stmw-white);
  margin-bottom: 4px;
}

.stmw-social__benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .55);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .stmw-social {
    padding: 64px 0;
  }

  .stmw-social__forum {
    margin-bottom: 20px;
  }
}
