/* =========================
   COMPONENT: SUGGESTIONS
========================= */

#suggestionsContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.suggestion-card {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 12px;
  padding: 12px;

  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
}

.suggestion-avatar {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #7CB8AD;
  color: #ffffff;

  font-weight: 700;
}

.suggestion-info {
  flex: 1;

  display: flex;
  flex-direction: column;
}

.suggestion-info strong {
  font-size: 14px;
}

.suggestion-info span {
  color: #777777;
  font-size: 13px;
}

.follow-btn {
  padding: 8px 14px;

  border: none;
  border-radius: 999px;

  background: #7CB8AD;
  color: #ffffff;

  cursor: pointer;
}

.follow-btn.following {
  background: #f3f3f3;
  color: #555555;
}

.explore-btn {
  width: fit-content;
  padding: 8px 16px;
  border: none;
  border-radius: 999px;
  background: #79B4A9;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}
